Skip to content

Releases: sendbird/sendbird-syncmanager-javascript

v1.1.30

Choose a tag to compare

@gignac-cha gignac-cha released this 18 Feb 02:49
  • Migrated deprecated API.

v1.1.29

Choose a tag to compare

@gignac-cha gignac-cha released this 16 Sep 10:20
  • Bug-fix read-only property error in AsyncDB.

v1.1.28

Choose a tag to compare

@gignac-cha gignac-cha released this 07 Sep 03:08
  • Improved stability.

v1.1.27

Choose a tag to compare

@gignac-cha gignac-cha released this 12 Aug 01:35
  • Improved stability in AsyncDB in React Native.

v1.1.26

Choose a tag to compare

@chrisallo chrisallo released this 12 May 00:55
  • Improved stability in React Native.

v1.1.25

Choose a tag to compare

@chrisallo chrisallo released this 22 Apr 08:41
  • Bug-fix in unreadChannelFilter.

v1.1.24

Choose a tag to compare

@chrisallo chrisallo released this 06 Apr 06:43
  • Bug-fix in deleted message not having channelUrl.

v1.1.23

Choose a tag to compare

@chrisallo chrisallo released this 09 Feb 06:42
  • New messages to be queued if the background sync does not reach the latest messages.
  • Bug-fix in handleSendMessageResponse() not to give the succeeded message.
  • Bug-fix in background sync operation crash due to the absence of lock.
  • Improved stability.

v1.1.22

Choose a tag to compare

@chrisallo chrisallo released this 15 Jan 08:20
  • Added messageStoreCapacity, messageStoreEjectionPriotizedLimit, messageStoreEjectionSize in SendBirdSyncManager.Options.
    • If the number of all the messages exceeds messageStoreCapacity,
      • It checks if a certain channel has more than messageStoreEjectionPriotizedLimit messages.
        • If yes, it ejects messageStoreEjectionSize oldest messages from that channel.
        • If no, it ejects messageStoreEjectionSize oldest messages regardless of channel.
      • Once the messages are ejected, active collections work as an API-only mode (no sync).
  • Improved stability.

v1.1.21

Choose a tag to compare

@chrisallo chrisallo released this 10 Dec 05:43
  • Added deleteMessageByRequestID() in MessageCollection.
  • Fixed broken interface in SendBirdSyncManager.d.ts.
  • Bug-fix in unreadChannelFilter operation.