centrifuge 0.9.0
centrifuge: ^0.9.0 copied to clipboard
Dart client to communicate with Centrifuge and Centrifugo from Flutter and VM over dart:io WebSocket
0.9.0 #
Breaking changes
This release adopts a new iteration of Centrifugal protocol and a new iteration of API. Client now behaves according to the client SDK API specification. The work has been done according to Centrifugo v4 roadmap.
Check out Centrifugo v4 release post that covers the reasoning behind changes.
All the current core features of Centrifugal client protocol are now supported here.
New release only works with Centrifugo >= v4.0.0 and Centrifuge >= 0.25.0. See Centrifugo v4 migration guide for details about the changes in the ecosystem.
Note, that Centrifugo v4 supports clients working over the previous protocol iteration, so you can update Centrifugo to v4 without any changes on the client side (but you need to turn on use_client_protocol_v1_by_default option in the configuration of Centrifugo, see Centrifugo v4 migration guide for details).
0.8.0 #
Version 0.8.0 is the next iteration of centrifuge-dart development. It pushes client closer to other clients in the ecosystem. It also contains several backwards incompatible changes.
- Return Futures from
Client.connect,Client.disconnect,Subscription.subscribe,Subscription.unsubscribemethods - addresses #31. - On initial connect fire
DisconnectEventon connection error - this makes behavior ofcentrifuge-dartsimilar to all other our clients - addresses #56. - Add client error stream to consume
ErrorEvent- each transport failure will emit error to this stream - addresses #56. - Refactor subscription statuses - add
subscribinganderrorstatuses. This change is mostly internal should not affect working with Subscriptions. - Do not call
UnsubscribeEventif subscription is not successfully subscribed (i.e. insubscribedstate). This makes behavior ofcentrifuge-dartsimilar to all other our clients. - Update disconnect reasons due to failed connection and calling
Client.Disconnectmethod - make it more similar to all other connector libraries in ecosystem. - Add default transport timeout (10 sec) – on connect and subscribe timeouts client will auto reconnect, calls like publish, history, rpc can now throw
TimeoutException. Also - properly pass timeout to the transport (was not before!). Again – this makes client behave similarly to all other connectors. - Add
presenceandpresenceStatsmethods for Subscription and on client top level (for server-side subscriptions). - Support
streamPositioninSubscribeSuccessEvent. - Support
streamPositioninServerSubscribeEvent. - Support
datainServerSubscribeEvent. - Implement
sendmethod to send async messages to a server. - Fix deletion during iteration over map when working with server-side subscriptions.
- Better event String representations.
- Improvements and fixes in examples.
0.7.1 #
- Add support for
datainSubscribeSuccessEvent. This is a custom data which can be sent by a server towards client connection in subscribe result. Note that due to the bug in Centrifugo server this feature only works in Centrifugo >= v3.0.3.
0.7.0 #
Update to work with Centrifuge >= v0.18.0 and Centrifugo v3.
Breaking change in server behavior. Client History API behavior changed in Centrifuge >= v0.18.0 and Centrifugo >= v3.0.0. When using history call it 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.
- Protocol definitions updated to the latest version
- History method now accepts optional
limit,sinceandreversearguments and returnsHistoryResult - RPC call now requires method name as first argument (you can pass empty string to mimic previous behavior)
- Publish now returns
PublishResult - When working with Centrifugo v3 or Centrifuge >= v0.18.0 it's now possible to avoid using
?format=protobufin connection URL. Client will negotiate Protobuf protocol with a server using WebSocket subprotocol mechanism (in request headers).
0.6.0 #
0.5.1 #
- Skip handling for events from server-side subscriptions resulted in null pointer dereference
0.4.0 #
- Breaking changes
connectedproperty removed
0.3.0 #
- Breaking changes Changed API to avoid returning futures where they do not make sense – in
connectandsubscribemethods. - Client now uses Websocket Ping/Pong frames to find broken connection
- Support for private channel subscription using
onPrivateSubconfiguration callback function - Fix several null pointer dereferences in edge cases, throw
ClientDisconnectedErrorwhen there is an attempt to send protocol request over non-connected client. - Fix examples where subscribe could happen before stream handlers set
0.2.0 #
- Breaking changes Replaced subscribe method with getSubscription in Client.
- Added reconnection.
- Added history method to Subscription. Thanks vanelizarov.
- Added rpc method.
0.1.0 #
- Added authorization with JWT
- Added subscription to private channel with JWT
0.0.1 #
- Initial release