Skip to content

Releases: centrifugal/centrifuge

v0.8.2

17 May 11:17
cb6714b
Compare
Choose a tag to compare
  • Fix Disconnect Code field unmarshalling, introduce helper method Disconnect.CloseText() to build close text sent to client in Close Frame.
  • Fix server-side Join event wrong channel when server subscribed client to several channels with JoinLeave feature on

v0.8.1

17 May 11:17
c50fecc
Compare
Choose a tag to compare
  • Fix closing connections with insufficient state after publish when history recovery feature is on and PublishOnHistoryAdd is false in Redis Engine config. #119.

v0.8.0

09 May 11:40
89e0a8b
Compare
Choose a tag to compare

This release is huge. In general, it does not change any previously defined semantics but changes API. The list of changes is big enough but fixes you need to do for this version adoption are mostly minimal. Except one thing emphasized below.

So here is that thing. Centrifuge now uses new offset uint64 protocol field for Publication position inside history stream instead of previously used seq and gen (both uint32) fields. It replaces both seq and gen. This change required to simplify working with history API in perspective. This is a breaking change for library users in case of using history recovery feature – read migration steps below.

Our client libraries centrifuge-js and centrifuge-go were updated to use offset field. So if you are using these two libraries and utilizing recovery feature then you need to update centrifuge-js to at least 2.6.0, and centrifuge-go to at least 0.5.0 to match server protocol (see the possibility to be backwards compatible on server below). All other client libraries do not support recovery at this moment so should not be affected by field changes described here.

It's important to mention that to provide backwards compatibility on client side both centrifuge-js and centrifuge-go will continue to properly work with a server which is using old seq and gen fields for recovery in its current form until v1 version of this library. It's possible to explicitly enable using old seq and gen fields on server side by calling:

centrifuge.CompatibilityFlags |= centrifuge.UseSeqGen

This allows doing migration to v0.8.0 and keeping everything compatible. Those CompatibilityFlags will be supported until v1 library release. Then we will only have one way to do things.

Other release highlights:

  • support Redis Streams - radically reduces amount of allocations during recovery in large history streams, also provides a possibility to paginate over history stream (an API for pagination over stream added to Node - see History method)
  • support Redis Cluster, client-side sharding between different Redis Clusters also works
  • use alternative library for JWT parsing and verification - HMAC-based JWT parsing is about 2 times faster now. Related issues: #109 and #107.
  • new data structure for in-memory streams (linked list + hash table) for faster insertion and recovery in large streams, also it's now possible to expire a stream meta information in case of Memory engine
  • fix server side subscriptions to private channels (were ignored before)
  • fix channels counter update frequency (commit)
  • drop Dep support - library now uses Go mod only for dependency management
  • slightly improved test coverage
  • lots of internal refactoring and style fixes

Thanks to @Skarm, @cristaloleg and @GSokol for contributions.