appwrite-cli 14.0.0 → 14.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +2 -2
- package/dist/bundle-win-arm64.mjs +6484 -10205
- package/dist/cli.cjs +6543 -10264
- package/dist/index.cjs +5944 -9666
- package/dist/index.js +5939 -9661
- package/dist/lib/commands/update.d.ts.map +1 -1
- package/dist/lib/commands/utils/attributes.d.ts.map +1 -1
- package/dist/lib/constants.d.ts +1 -1
- package/install.ps1 +2 -2
- package/install.sh +1 -1
- package/lib/commands/run.ts +3 -3
- package/lib/commands/update.ts +2 -1
- package/lib/commands/utils/attributes.ts +4 -0
- package/lib/commands/utils/deployment.ts +3 -3
- package/lib/constants.ts +1 -1
- package/package.json +3 -3
- package/scoop/appwrite.config.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 14.0.1
|
|
4
|
+
|
|
5
|
+
* Fixed `push tables` not passing `encrypt` parameter for varchar, text, mediumtext, and longtext string types
|
|
6
|
+
* Fixed NVM installation path not being detected by `update` command
|
|
7
|
+
* Updated `tar` dependency to v7.4.3
|
|
8
|
+
|
|
3
9
|
## 14.0.0
|
|
4
10
|
|
|
5
11
|
* Breaking: Changed createDeployment signature; activate option now optional with default true; parameter order updated
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
|
|
|
29
29
|
|
|
30
30
|
```sh
|
|
31
31
|
$ appwrite -v
|
|
32
|
-
14.0.
|
|
32
|
+
14.0.1
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Install using prebuilt binaries
|
|
@@ -60,7 +60,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
|
|
|
60
60
|
Once the installation completes, you can verify your install using
|
|
61
61
|
```
|
|
62
62
|
$ appwrite -v
|
|
63
|
-
14.0.
|
|
63
|
+
14.0.1
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
## Getting Started
|