Skip to content

Commit 09587bb

Browse files
authored
Merge pull request #199 from appwrite/dev
feat: Command Line SDK update for version 10.0.0
2 parents 71e8c88 + 78419ed commit 09587bb

21 files changed

+89
-556
lines changed

CHANGELOG.md

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

3+
## 10.0.0
4+
5+
* **Breaking:** Removed Avatars CLI command and all related subcommands; corresponding examples deleted
6+
* **Feat:** Geo defaults now accept coordinate arrays for Databases and Tables DB, with automatic normalization
7+
* **Feat:** Pull command skips deprecated resources by default and shows clearer totals/messages
8+
* **Feat:** Updated CLI descriptions: Databases marked legacy; added tables-db, projects, and project
9+
* Fix TypeScript type generation now quotes invalid property names to produce valid typings
10+
* Update documentation: Removed Avatars CLI examples and updated help text to reflect new geo defaults and terminology
11+
312
## 8.3.0
413

514
* **Feat:** Add support for `appwrite.config.json` file

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-
9.1.0
32+
10.0.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-
9.1.0
63+
10.0.0
6464
```
6565

6666
## Getting Started

docs/examples/avatars/get-browser.md

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

docs/examples/avatars/get-credit-card.md

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

docs/examples/avatars/get-favicon.md

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

docs/examples/avatars/get-flag.md

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

docs/examples/avatars/get-image.md

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

docs/examples/avatars/get-initials.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/examples/avatars/get-qr.md

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

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const { run } = require("./lib/commands/run");
2020
const { push, deploy } = require("./lib/commands/push");
2121
const { update } = require("./lib/commands/update");
2222
const { account } = require("./lib/commands/account");
23-
const { avatars } = require("./lib/commands/avatars");
2423
const { console } = require("./lib/commands/console");
2524
const { databases } = require("./lib/commands/databases");
2625
const { functions } = require("./lib/commands/functions");
@@ -124,7 +123,6 @@ program
124123
.addCommand(update)
125124
.addCommand(logout)
126125
.addCommand(account)
127-
.addCommand(avatars)
128126
.addCommand(console)
129127
.addCommand(databases)
130128
.addCommand(functions)

0 commit comments

Comments
 (0)