Skip to content

Commit ca3bdd0

Browse files
committed
add changelog
1 parent 21800fe commit ca3bdd0

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1-
# Change Log
1+
# Change Log
2+
3+
## 16.1.0
4+
5+
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
6+
* Add `dart38` and `flutter332` support to runtime models
7+
* Add `gif` support to `ImageFormat` enum
8+
* Add `encrypt` support to `StringAttribute` model
9+
* Add `sequence` support to `Document` model
10+
* Add `upsertDocument` support to `Databases` service
11+
12+
## 16.0.0
13+
14+
* Add `<REGION>` to doc examples due to the new multi region endpoints
15+
* Add doc examples and methods for bulk api transactions: `createDocuments`, `deleteDocuments` etc.
16+
* Add doc examples, class and methods for new `Sites` service
17+
* Add doc examples, class and methods for new `Tokens` service
18+
* Add enums for `BuildRuntime `, `Adapter`, `Framework`, `DeploymentDownloadType` and `VCSDeploymentType`
19+
* Update enum for `runtimes` with Pythonml312, Dart219, Flutter327 and Flutter329
20+
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
21+
* Add `queries` and `search` params to `listMemberships` method
22+
* Remove `search` param from `listExecutions` method
23+
24+
## 15.0.0
25+
26+
* Fix requests failing by removing `Content-Type` header from `GET` and `HEAD` requests
27+
28+
## 14.0.0
29+
30+
* Fix pong response & chunked upload

appwrite.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |spec|
22

33
spec.name = 'appwrite'
4-
spec.version = '16.0.0'
4+
spec.version = '16.1.0'
55
spec.license = 'BSD-3-Clause'
66
spec.summary = 'Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API'
77
spec.author = 'Appwrite Team'

lib/appwrite/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def initialize
1515
'x-sdk-name'=> 'Ruby',
1616
'x-sdk-platform'=> 'server',
1717
'x-sdk-language'=> 'ruby',
18-
'x-sdk-version'=> '16.0.0',
18+
'x-sdk-version'=> '16.1.0',
1919
'X-Appwrite-Response-Format' => '1.7.0'
2020
}
2121
@endpoint = 'https://cloud.appwrite.io/v1'

0 commit comments

Comments
 (0)