Skip to content

Commit 091d382

Browse files
authored
Merge pull request #205 from appwrite/dev
feat: Command Line SDK update for version 10.2.0
2 parents f925c9e + f9b458a commit 091d382

23 files changed

+686
-38
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 10.2.0
4+
5+
* Add transaction support for Databases and TablesDB
6+
37
## 10.1.0
48

59
* Deprecate `createVerification` method in `Account` service

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
2929

3030
```sh
3131
$ appwrite -v
32-
10.1.0
32+
10.2.0
3333
```
3434

3535
### Install using prebuilt binaries
@@ -60,7 +60,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
6060
Once the installation completes, you can verify your install using
6161
```
6262
$ appwrite -v
63-
10.1.0
63+
10.2.0
6464
```
6565

6666
## Getting Started
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
appwrite databases create-operations \
2+
--transaction-id <TRANSACTION_ID>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
appwrite databases create-transaction
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
appwrite databases delete-transaction \
2+
--transaction-id <TRANSACTION_ID>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
appwrite databases get-transaction \
2+
--transaction-id <TRANSACTION_ID>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
appwrite databases list-transactions
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
appwrite databases update-transaction \
2+
--transaction-id <TRANSACTION_ID>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
appwrite migrations create-csv-migration \
22
--bucket-id <BUCKET_ID> \
33
--file-id <FILE_ID> \
4-
--resource-id [ID1:ID2]
4+
--resource-id <ID1:ID2>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
appwrite tables-db create-operations \
2+
--transaction-id <TRANSACTION_ID>

0 commit comments

Comments
 (0)