Skip to content

Commit 0c2cf0a

Browse files
authored
Merge pull request #68 from appwrite/dev
feat: Console SDK update for version 23.0.0
2 parents dbe5081 + a8672d5 commit 0c2cf0a

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

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

3+
## 5.0.0
4+
5+
* Breaking: Channel.collection() and Channel.table() now require explicit IDs
6+
* Added DomainTransferStatusStatus enum
7+
* Added migration resource enums: AppwriteMigrationResource, FirebaseMigrationResource, NHostMigrationResource, SupabaseMigrationResource
8+
* Added ttl option to listDocuments and listRows
9+
* Added new docs/examples across domains, health, migrations, projects, sites
10+
* Updated docs and examples to reflect new resources and transfers
11+
* Updated README compatibility note to latest server version
12+
13+
## 4.0.0
14+
15+
* Breaking: Channel.collection() and Channel.table() now require explicit IDs
16+
* Added migration resource enums: AppwriteMigrationResource, FirebaseMigrationResource, NHostMigrationResource, SupabaseMigrationResource
17+
* Added DomainTransferStatusStatus enum
18+
* Added ttl option to listDocuments and listRows
19+
* Added new docs/examples across domains, health, migrations, projects, sites
20+
* Updated docs and examples to reflect new resources and transfers
21+
322
## 3.1.0
423

524
* Add support for `createPurchase` method in `Domains` service

README.md

Lines changed: 2 additions & 2 deletions
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 1.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-console/releases).**
9+
**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-console/releases).**
1010

1111
Appwrite is an open-source backend as a service server that abstracts and simplifies 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 Console 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

@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
3333
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
3434

3535
```html
36-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@4.0.0"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@23.0.0"></script>
3737
```
3838

3939

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@appwrite.io/console",
33
"homepage": "https://appwrite.io/support",
44
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
5-
"version": "4.0.0",
5+
"version": "23.0.0",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ class Client {
400400
'x-sdk-name': 'Console',
401401
'x-sdk-platform': 'console',
402402
'x-sdk-language': 'web',
403-
'x-sdk-version': '4.0.0',
403+
'x-sdk-version': '23.0.0',
404404
'X-Appwrite-Response-Format': '1.8.0',
405405
};
406406

0 commit comments

Comments
 (0)