Skip to content

Commit e430cd2

Browse files
Merge pull request #315 from appwrite/dev
feat: SDK update for version 21.0.0
2 parents 95a7a4c + a9ccd8b commit e430cd2

57 files changed

Lines changed: 830 additions & 471 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
# Change Log
22

3-
## 20.2.0-rc.1
4-
5-
* Added: Code-signed Windows release binaries (`appwrite-cli-win-x64.exe` and `appwrite-cli-win-arm64.exe`) via SignPath
3+
## 21.0.0
4+
5+
* Breaking: Renamed `project update-canonical-emails` to `update-deny-canonical-email-policy`
6+
* Breaking: Renamed `project update-disposable-emails` to `update-deny-disposable-email-policy`
7+
* Breaking: Renamed `project update-free-emails` to `update-deny-free-email-policy`
8+
* Breaking: Renamed `proxy update-rule-verification` to `update-rule-status`
9+
* Breaking: Removed `--search` option from `proxy list-rules`
10+
* Breaking: `functions create-variable` and `sites create-variable` now require `--variable-id`
11+
* Added: `databases create-big-int-attribute` and `update-big-int-attribute` commands
12+
* Added: `tablesdb create-big-int-column` and `update-big-int-column` commands
13+
* Added: `--prompt` option on `project update-o-auth-2-google`
14+
* Added: Pagination and filter flags on `vcs list-repository-branches` and `sites list-variables`
15+
* Added: `--on-duplicate` option on `migrations create-appwrite-migration`, `create-csv-import`, and `create-json-import`
16+
* Updated: Extended key-list query filters with `key`, `resourceType`, `resourceId`, and `secret`
617

718
## 20.1.0
819

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Appwrite Command Line SDK
22

33
![License](https://img.shields.io/github/license/appwrite/sdk-for-cli.svg?style=flat-square)
4-
![Version](https://img.shields.io/badge/api%20version-1.9.3-blue.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/api%20version-1.9.4-blue.svg?style=flat-square)
55
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
2929

3030
```sh
3131
$ appwrite -v
32-
20.2.0-rc.1
32+
21.0.0
3333
```
3434

3535
### Install using prebuilt binaries
@@ -83,7 +83,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
8383
Once the installation completes, you can verify your install using
8484
```
8585
$ appwrite -v
86-
20.2.0-rc.1
86+
21.0.0
8787
```
8888

8989
## Getting Started

bun.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
```bash
2+
appwrite databases create-big-int-attribute \
3+
--database-id <DATABASE_ID> \
4+
--collection-id <COLLECTION_ID> \
5+
--key '' \
6+
--required false
7+
```
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
```bash
2+
appwrite databases update-big-int-attribute \
3+
--database-id <DATABASE_ID> \
4+
--collection-id <COLLECTION_ID> \
5+
--key '' \
6+
--required false \
7+
--default null
8+
```
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
```bash
22
appwrite functions create-variable \
33
--function-id <FUNCTION_ID> \
4+
--variable-id <VARIABLE_ID> \
45
--key <KEY> \
56
--value <VALUE>
67
```
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
```bash
22
appwrite functions list-variables \
3-
--function-id <FUNCTION_ID>
3+
--function-id <FUNCTION_ID> \
4+
--limit 25
45
```
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
```bash
22
appwrite functions update-variable \
33
--function-id <FUNCTION_ID> \
4-
--variable-id <VARIABLE_ID> \
5-
--key <KEY>
4+
--variable-id <VARIABLE_ID>
65
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
```bash
22
appwrite project create-ephemeral-key \
33
--scopes one two three \
4-
--duration 1
4+
--duration 600
55
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
```bash
22
appwrite project get-o-auth-2-provider \
3-
--provider <PROVIDER>
3+
--provider-id amazon
44
```

0 commit comments

Comments
 (0)