Skip to content

Commit 954bf48

Browse files
committed
chore: update Command Line SDK to 19.0.0
1 parent 8567504 commit 954bf48

16 files changed

Lines changed: 298 additions & 190 deletions

CHANGELOG.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,20 @@
22

33
## 19.0.0
44

5-
* Breaking: Updated project command mappings and examples to singular `project` endpoints.
6-
* Breaking: Changed local init site path handling and template download behavior.
7-
* Added: Added explicit CLI program name registration for command output consistency.
8-
* Updated: Updated Homebrew install instructions to use the Appwrite tap formula.
9-
* Updated: Updated `X-Appwrite-Response-Format` header to `1.9.2`.
5+
* Breaking: Renamed `project update-protocol-status` to `project update-protocol`
6+
* Breaking: Renamed `project update-service-status` to `project update-service`
7+
* Breaking: Removed `projects get-sms-template`, `projects update-sms-template`, and `projects delete-sms-template` commands
8+
* Breaking: Made `--locale` optional on `projects get-email-template`, `projects update-email-template`, and `projects delete-email-template`
9+
* Breaking: Reordered `projects update-email-template` parameters — `--locale` is now optional and placed after `--message`
10+
* Added `--path` prompt during `init site` to choose the local site directory
11+
* Added support for initializing sites into existing non-empty directories without a starter template
12+
* Added structured column renderer for `runtimes` listings
13+
* Added activity-based deployment timeout tracking so healthy long builds in `push function` and `push site` no longer time out prematurely
14+
* Updated `brew install`/`brew upgrade` to use the fully-qualified `appwrite/appwrite/appwrite` formula from the `appwrite/homebrew-appwrite` tap
15+
* Updated `deploymentRetention` prompt to clarify it counts days of non-active deployments
16+
* Updated CLI help and error output to display the correct program name `appwrite`
17+
* Removed `enabled` field from site entries in `appwrite.config.json`
18+
* Fixed command help text to render links inline without markdown brackets
1019

1120
## 18.2.0
1221

bun.lock

Lines changed: 27 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
```bash
2+
appwrite project create-mock-phone \
3+
--number +12065550100 \
4+
--otp <OTP>
5+
```
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
```bash
2+
appwrite project delete-mock-phone \
3+
--number +12065550100
4+
```
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
```bash
2+
appwrite project get-mock-phone \
3+
--number +12065550100
4+
```
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```bash
2+
appwrite project list-email-templates
3+
```
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```bash
2+
appwrite project list-mock-phones
3+
```
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
```bash
2+
appwrite project update-auth-method \
3+
--method-id email-password \
4+
--enabled false
5+
```
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
```bash
2+
appwrite project update-mock-phone \
3+
--number +12065550100 \
4+
--otp <OTP>
5+
```

docs/examples/projects/update-auth-status.md

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

0 commit comments

Comments
 (0)