- Support for History reverse option.
gorelease -base v0.8.0 -version v0.8.1
github.com/centrifugal/centrifuge-go
------------------------------------
Compatible changes:
- HistoryOptions.Reverse: added
- WithHistoryReverse: added
v0.8.1 is a valid semantic version for this release.
Update to work with Centrifuge >= v0.18.0 and Centrifugo v3.
Keep in mind that New
is deprecated now, prefer using NewJsonClient
or NewProtobufClient
when server is based on Centrifuge >= v0.18.0 or Centrifugo >= v3.0.0
Breaking change: client History API behavior changed – Centrifuge >= v0.18.0 and Centrifugo >= v3.0.0 won't return all publications in a stream by default, see Centrifuge v0.18.0 release notes or Centrifugo v3 migration guide for more information and workaround on server-side.
gorelease -base v0.7.2 -version v0.8.0
github.com/centrifugal/centrifuge-go
------------------------------------
Incompatible changes:
- (*Client).History: changed from func(string) (HistoryResult, error) to func(string, ...HistoryOption) (HistoryResult, error)
- (*Subscription).History: changed from func() (HistoryResult, error) to func(...HistoryOption) (HistoryResult, error)
- (*Subscription).Subscribe: changed from func() error to func(...SubscribeOption) error
Compatible changes:
- HistoryOption: added
- HistoryOptions: added
- NewJsonClient: added
- NewProtobufClient: added
- StreamPosition: added
- SubscribeOption: added
- SubscribeOptions: added
- WithHistoryLimit: added
- WithHistorySince: added
- WithSubscribeSince: added
v0.8.0 is a valid semantic version for this release.
- Bump protocol to v0.5.0 #56
- Fix atomic align on 32-bit #49
- Updated
github.com/centrifugal/protocol
package dependency to catch up with the latest changes in it - Introduced
Error
type which is used where we previously exposedprotocol.Error
– so there is no need to importprotocol
package in application code to investigate error code or message - Methods
Client.SetName
andClient.SetVersion
removed in favour ofName
andVersion
fields ofConfig
- Add top-level methods
Client.History
,Client.Presence
,Client.PresenceStats
– so it's possible to call corresponding client API methods when using server-side subscriptions
$ gorelease -base v0.6.5 -version v0.7.0
github.com/centrifugal/centrifuge-go
------------------------------------
Incompatible changes:
- (*Client).SetName: removed
- (*Client).SetVersion: removed
Compatible changes:
- (*Client).History: added
- (*Client).Presence: added
- (*Client).PresenceStats: added
- Config.Name: added
- Config.Version: added
- DefaultName: added
- Error: added
v0.7.0 is a valid semantic version for this release.
- One more fix for memory align on 32bit arch, see #46
- Add
Subscription.Close
method to close Subscription when it's not needed anymore. This method unsubscribes from a channel and removes Subscription from internalClient
subscription registry – thus freeing resources. Subscription is not usable afterClose
called. This method can be helpful if you work with lots of short-living subscriptions to different channels to prevent unlimited internal Subscription registry growth.
- Fix memory align on 32bit arch, see #40
- fix deadlock on a private channel resubscribe - see #38
- fix setting server-side unsubscribe handler, call server-side unsubscribe event on disconnect
- server-side subscriptions support
- get rid of Protobuf protocol struct
Publication
andClientInfo
aliases – use library scope structures instead - change return values of
RPC
,NamedRPC
,History
,Presence
,PresenceStats
,Publish
methods to be more meaningful and extensible - much faster resubscribe to many subscriptions (previously we waited for each individual subscription response before moving further, now process is asynchronous)
- improved reconnect logic
- Client and Subscription status refactoring
- fix inconsistent join/subscribe event ordering – now both processed in order coming from server