Skip to content

Commit c6be334

Browse files
authored
Merge pull request #335 from appwrite/dev
feat: Command Line SDK update for version 22.4.0
2 parents 3b8166a + 3e324d9 commit c6be334

38 files changed

Lines changed: 119 additions & 377 deletions

CHANGELOG.md

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

3+
## 22.4.0
4+
5+
* Updated: Removed pre-release activity log commands `list-logs`, `list-collection-logs`, `list-document-logs`, `list-table-logs`, `list-row-logs`, `list-message-logs`, `list-provider-logs`, `list-subscriber-logs`, and `list-topic-logs`
6+
* Updated: Removed `oauth2 approve` command, meant for the console consent screen only
7+
* Updated: `--scope` on `oauth2 authorize` is now optional and supports the `phone` scope
8+
* Updated: CLI OAuth login now requests the `all` scope instead of `account.admin`
9+
* Updated: Skills install now uses the `appwrite/skills` repository
10+
* Updated: API key scope limits raised from 100 to 200 scopes
11+
* Fixed: Empty error messages now fall back to the response body instead of a bare `Error:`
12+
* Updated: Verbose error output is formatted with colored details and indented stack traces
13+
314
## 22.3.0
415

516
* Added: Regional cloud endpoints are now derived from your configured endpoint in `init` and `push`

README.md

Lines changed: 4 additions & 4 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-
22.3.0
32+
22.4.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-
22.3.0
86+
22.4.0
8787
```
8888

8989
## Getting Started
@@ -97,7 +97,7 @@ $ appwrite login
9797
? Enter your password ********
9898
✓ Success
9999
```
100-
This will also prompt you to enter your Appwrite endpoint ( default: http://localhost/v1 )
100+
This will also prompt you to enter your Appwrite endpoint ( default: http://localhost:9520/v1 )
101101

102102
* ### Initialising your project
103103
Once logged in, the CLI needs to be initialised before you can use it with your Appwrite project. You can do this with the `appwrite init project` command.
@@ -227,7 +227,7 @@ $ appwrite client --reset
227227
The Appwrite CLI can also work in a CI environment. The initialisation of the CLI works a bit differently in CI. In CI, you set your `endpoint`, `projectId` and `API Key` using
228228

229229
```sh
230-
appwrite client --endpoint http://localhost/v1 --projectId <PROJECT_ID> --key <API KEY>
230+
appwrite client --endpoint http://localhost:9520/v1 --projectId <PROJECT_ID> --key <API KEY>
231231
```
232232

233233

docs/examples/account/list-logs.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/examples/databases/list-collection-logs.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/examples/databases/list-document-logs.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/examples/databases/list-logs.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/examples/messaging/list-message-logs.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/examples/messaging/list-provider-logs.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/examples/messaging/list-subscriber-logs.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/examples/messaging/list-topic-logs.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)