You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Change Log
2
2
3
+
## 19.2.0
4
+
5
+
* Added `completion install` command with completion scripts for zsh, bash, and fish
6
+
* Added automatic shell-completion install step to the `install.sh` standalone installer
7
+
* Updated Homebrew install and update flow to detect the installed formula and recommend the official `appwrite/appwrite/appwrite` tap when a different one is in use
8
+
* Fixed standalone update check to point at the `appwrite/sdk-for-cli` releases feed instead of the legacy `appwrite/appwrite-cli` repo
9
+
3
10
## 19.1.0
4
11
5
12
* Added `--where`, `--sort-asc`, `--sort-desc`, `--limit`, `--offset`, `--cursor-after`, and `--cursor-before` flags on list commands across services
Homebrew pulls the formula from the [`appwrite/homebrew-appwrite`](https://github.com/appwrite/homebrew-appwrite) tap and downloads the native binary for your platform.
51
51
52
+
### Shell completion
53
+
54
+
Install completion for your current shell:
55
+
56
+
```bash
57
+
appwrite completion install
58
+
```
59
+
60
+
You can also generate or install completion scripts manually:
61
+
62
+
```bash
63
+
# zsh
64
+
appwrite completion install zsh
65
+
# bash
66
+
appwrite completion install bash
67
+
# fish
68
+
appwrite completion install fish
69
+
```
70
+
71
+
For zsh, ensure `~/.zfunc` is in your `fpath` and `compinit` is loaded from your shell config.
0 commit comments