Skip to content

Commit 7ab342f

Browse files
committed
chore: add changelog
1 parent 0fe577b commit 7ab342f

File tree

3 files changed

+58
-4
lines changed

3 files changed

+58
-4
lines changed

CHANGELOG.md

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 17.1.0
4+
5+
* Add `upsertDocument` method
6+
* Add `dart-3.8` and `flutter-3.32` runtimes
7+
* Add `gif` image format
8+
* Update bulk operation methods to reflect warning message
9+
* Fix file parameter handling in chunked upload method
10+
311
## 17.0.0
412

513
* Add `<REGION>` to doc examples due to the new multi region endpoints
@@ -10,4 +18,50 @@
1018
* Updates enum for `runtimes` with Pythonml312, Dart219, Flutter327 and Flutter329
1119
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
1220
* Add `queries` and `search` params to `listMemberships` method
13-
* Removes `search` param from `listExecutions` method
21+
* Removes `search` param from `listExecutions` method
22+
23+
## 16.0.0
24+
25+
* Fix: remove content-type from GET requests
26+
* Update (breaking): min and max params are now optional in `updateFloatAttribute` and `updateIntegerAttribute` methods (changes their positioning in method definition)
27+
28+
## 15.0.1
29+
30+
* Remove titles from all function descriptions
31+
* Fix typing for collection "attribute" key
32+
* Remove unnecessary awaits and asyncs
33+
* Ensure `AppwriteException` response is always string
34+
35+
## 15.0.0
36+
37+
* Fix: pong response & chunked upload
38+
39+
## 14.2.0
40+
41+
* Add new push message parameters
42+
43+
## 14.1.0
44+
45+
* Support updating attribute name and size
46+
47+
## 14.0.0
48+
49+
* Support for Appwrite 1.6
50+
* Add `key` attribute to `Runtime` response model.
51+
* Add `buildSize` attribute to `Deployments` response model
52+
* Add `scheduledAt` attribute to `Executions` response model
53+
* Add `scopes` attribute to `Functions` response model
54+
* Add `specifications` attribute to `Functions` response model
55+
* Add new response model for `Specifications`
56+
* Add new response model for `Builds`
57+
* Add `createJWT()` : Enables creating a JWT using the `userId`
58+
* Add `listSpecifications()`: Enables listing available runtime specifications
59+
* Add `deleteExecution()` : Enables deleting executions
60+
* Add `updateDeploymentBuild()`: Enables cancelling a deployment
61+
* Add `scheduledAt` parameter to `createExecution()`: Enables creating a delayed execution
62+
* Breaking changes
63+
> You can find the new syntax for breaking changes in the [Appwrite API references](https://appwrite.io/docs/references). Select version `1.6.x`.
64+
* Remove `otp` parameter from `deleteMFAAuthenticator`.
65+
* Add `scopes` parameter for create/update function.
66+
* Rename `templateBranch` to `templateVersion` in `createFunction()`.
67+
* Rename `downloadDeployment()` to `getDeploymentDownload()`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "node-appwrite",
33
"homepage": "https://appwrite.io/support",
44
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5-
"version": "17.0.0",
5+
"version": "17.1.0",
66
"license": "BSD-3-Clause",
77
"main": "dist/index.js",
88
"type": "commonjs",

src/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class AppwriteException extends Error {
3333
}
3434

3535
function getUserAgent() {
36-
let ua = 'AppwriteNodeJSSDK/17.0.0';
36+
let ua = 'AppwriteNodeJSSDK/17.1.0';
3737

3838
// `process` is a global in Node.js, but not fully available in all runtimes.
3939
const platform: string[] = [];
@@ -82,7 +82,7 @@ class Client {
8282
'x-sdk-name': 'Node.js',
8383
'x-sdk-platform': 'server',
8484
'x-sdk-language': 'nodejs',
85-
'x-sdk-version': '17.0.0',
85+
'x-sdk-version': '17.1.0',
8686
'user-agent' : getUserAgent(),
8787
'X-Appwrite-Response-Format': '1.7.0',
8888
};

0 commit comments

Comments
 (0)