Skip to content

Commit 86506a4

Browse files
committed
chore: updates for rc-7
1 parent cd5915d commit 86506a4

38 files changed

+428
-596
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-cli/releases).**
9+
**This SDK is compatible with Appwrite server version 1.6.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-cli/releases).**
1010

1111
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Command Line SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
1212

@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
2929

3030
```sh
3131
$ appwrite -v
32-
6.0.0-rc.6
32+
6.0.0-rc.7
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-
6.0.0-rc.6
63+
6.0.0-rc.7
6464
```
6565

6666
## Getting Started
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
appwrite functions downloadDeployment \
1+
appwrite functions getDeploymentDownload \
22
--functionId <FUNCTION_ID> \
33
--deploymentId <DEPLOYMENT_ID>
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
appwrite functions getTemplate \
2+
--templateId <TEMPLATE_ID>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite functions listTemplates \
2+
3+
4+
5+

index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,16 @@ program
4141
.description(commandDescriptions['main'])
4242
.configureHelp({
4343
helpWidth: process.stdout.columns || 80,
44-
sortSubcommands: true
44+
sortSubcommands: true,
4545
})
46-
.version(version, "-v, --version")
46+
.helpOption('-h, --help', "Display help for command")
47+
.version(version, "-v, --version", "Output the version number")
4748
.option("-V, --verbose", "Show complete error log")
4849
.option("-j, --json", "Output in JSON format")
4950
.hook('preAction', migrate)
5051
.option("-f,--force", "Flag to confirm all warnings")
5152
.option("-a,--all", "Flag to push all resources")
52-
.option("--id [id...]", "Flag to pass list of ids for a giving action")
53+
.option("--id [id...]", "Flag to pass a list of ids for a given action")
5354
.option("--report", "Enable reporting in case of CLI errors")
5455
.on("option:json", () => {
5556
cliConfig.json = true;

install.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# You can use "View source" of this page to see the full script.
1414

1515
# REPO
16-
$GITHUB_x64_URL = "https://github.com/appwrite/sdk-for-cli/releases/download/6.0.0-rc.6/appwrite-cli-win-x64.exe"
17-
$GITHUB_arm64_URL = "https://github.com/appwrite/sdk-for-cli/releases/download/6.0.0-rc.6/appwrite-cli-win-arm64.exe"
16+
$GITHUB_x64_URL = "https://github.com/appwrite/sdk-for-cli/releases/download/6.0.0-rc.7/appwrite-cli-win-x64.exe"
17+
$GITHUB_arm64_URL = "https://github.com/appwrite/sdk-for-cli/releases/download/6.0.0-rc.7/appwrite-cli-win-arm64.exe"
1818

1919
$APPWRITE_BINARY_NAME = "appwrite.exe"
2020

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ printSuccess() {
9797
downloadBinary() {
9898
echo "[2/4] Downloading executable for $OS ($ARCH) ..."
9999

100-
GITHUB_LATEST_VERSION="6.0.0-rc.6"
100+
GITHUB_LATEST_VERSION="6.0.0-rc.7"
101101
GITHUB_FILE="appwrite-cli-${OS}-${ARCH}"
102102
GITHUB_URL="https://github.com/$GITHUB_REPOSITORY_NAME/releases/download/$GITHUB_LATEST_VERSION/$GITHUB_FILE"
103103

lib/client.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ class Client {
1616
'x-sdk-name': 'Command Line',
1717
'x-sdk-platform': 'console',
1818
'x-sdk-language': 'cli',
19-
'x-sdk-version': '6.0.0-rc.6',
20-
'user-agent' : `AppwriteCLI/6.0.0-rc.6 (${os.type()} ${os.version()}; ${os.arch()})`,
21-
'X-Appwrite-Response-Format' : '1.5.0',
19+
'x-sdk-version': '6.0.0-rc.7',
20+
'user-agent' : `AppwriteCLI/6.0.0-rc.7 (${os.type()} ${os.version()}; ${os.arch()})`,
21+
'X-Appwrite-Response-Format' : '1.6.0',
2222
};
2323
}
2424

0 commit comments

Comments
 (0)