Skip to content

Releases: appwrite/sdk-for-web

21.2.1

09 Oct 11:05
1181a97

Choose a tag to compare

What's Changed

  • Add transaction support for Databases and TablesDB

Full Changelog: 21.1.0...21.2.1

21.1.0

08 Oct 07:30
0c95b17

Choose a tag to compare

What's Changed

  • Deprecate createVerification method in Account service
  • Add createEmailVerification method in Account service

Full Changelog: 21.0.0...21.1.0

21.0.0

03 Oct 04:17
2f195ce

Choose a tag to compare

What's Changed

  • feat: Web SDK update for version 21.0.0 by @ChiragAgg5k in #140, introduces support of enums in response models.

Full Changelog: 20.1.0...21.0.0

20.2.0-rc.1

25 Sep 07:40
bccadf4

Choose a tag to compare

20.2.0-rc.1 Pre-release
Pre-release

20.1.0

23 Sep 06:55
9a9d58e

Choose a tag to compare

What's Changed

Full Changelog: 20.0.0...20.1.0

20.1.0-rc.1

12 Sep 13:37
cc559f0

Choose a tag to compare

20.1.0-rc.1 Pre-release
Pre-release

Full Changelog: 20.0.0...20.1.0-rc.1

20.0.0

08 Sep 11:13
8a5d716

Choose a tag to compare

What's Changed

  • [BREAKING] Rename CreditCard enum value UnionChinaPay to UnionPay
  • Add time between queries by @abnegate in #136
  • Add spatial queries by @abnegate in #136

Full Changelog: 19.0.0...20.0.0

19.0.0

26 Aug 09:18
f4f0f16

Choose a tag to compare

What's Changed

Features

  • Introduce object parameters for all methods

Before (positional parameters):

const result = storage.getFilePreview(
    '<BUCKET_ID>',
    '<FILE_ID>',
    0, // width
    0, // height
    ImageGravity.Center, // gravity
    -1, // quality
    0, // borderWidth
    '', // borderColor
    0, // borderRadius
    0, // opacity
    -360, // rotation
    '', // background
    ImageFormat.Jpg, // output
    '<TOKEN>' // token
);
// Required passing undefined for unused optional parameters

After (object parameters):

const result = storage.getFilePreview({
    bucketId: '<BUCKET_ID>',
    fileId: '<FILE_ID>',
    output: ImageFormat.Jpg,
    token: '<TOKEN>'
});
// No more undefined values needed!
  • Introduce new TablesDB service with standardized conventions like createRow, createColumn etc. Learn More
  • Add new query options: notContains, notSearch, notBetween etc.

Improvements

  • Add parameter descriptions to doc comments
  • Add deprecated tags to position-based parameter methods
  • Add deprecated tags to legacy Database service and its methods

Note: Deprecated methods remain fully supported but may be removed in future versions.

Full Changelog: 18.2.0...19.0.0

18.2.0

24 Jul 07:34
f7316fd

Choose a tag to compare

What's Changed

  • Add incrementDocumentAttribute and decrementDocumentAttribute support to Databases service
  • Add gif support to ImageFormat enum
  • Fix undefined fileParam error in chunkedUpload method
  • Fix autocompletion not working for Document model even when generic is passed

Full Changelog: 18.1.1...18.2.0

18.1.1

21 May 14:44
8e5bcd8

Choose a tag to compare

What's Changed

Full Changelog: 18.1.0...18.1.1