chore: update more changelogs

This commit is contained in:
Chirag Aggarwal
2025-07-22 22:14:43 +05:30
parent 30b443e384
commit ac783ca299
2 changed files with 17 additions and 0 deletions
+16
View File
@@ -1,5 +1,21 @@
# Change Log
## 18.0.0
* **NEW**: Introduced `Tables` API support with improved terminology
* Added new Table-based methods:
* `createTable` (replaces `createCollection`)
* `createRow` (replaces `createDocument`)
* `updateRow` (replaces `updateDocument`)
* `deleteRow` (replaces `deleteDocument`)
* `getRow` (replaces `getDocument`)
* `listRows` (replaces `listDocuments`) and much more...
* **DEPRECATED**: Old Document-based methods are now deprecated and will not receive further updates
* Existing applications continue to work with deprecated methods
* For documentation on new terminology, see: https://appwrite.io/docs/products/databases/tables
* Add `increment` and `decrement` attribute support to both new Tables API and old Document API - https://appwrite.io/blog/post/announcing-auto-increment-support
* Fix `Document` autocompletion not working even when a generic type is provided
## 17.1.0
* Add `upsertDocument` method
+1
View File
@@ -14,6 +14,7 @@
* Existing applications continue to work with deprecated methods
* For documentation on new terminology, see: https://appwrite.io/docs/products/databases/tables
* Add `gif` support to `ImageFormat` enum
* Add `increment` and `decrement` attribute support to both new Tables API and old Document API - https://appwrite.io/blog/post/announcing-auto-increment-support
* Fix `Document` autocompletion not working even when a generic type is provided
* Fix undefined `filePath` param in `chunkedUpload` method