platform/packages/websocket/CHANGELOG.md

57 lines
1.3 KiB
Markdown
Raw Normal View History

2019-05-01 22:53:30 +00:00
# 2.0.3
* Remove `WebSocketController.plugin`.
2019-05-01 22:58:47 +00:00
* Remove any unawaited futures.
2019-05-01 22:53:30 +00:00
2019-04-18 15:43:17 +00:00
# 2.0.2
* Update `stream_channel` to `2.0.0`.
* Use `angel_framework^@2.0.0-rc.0`.
# 2.0.1
* Add `reconnectOnClose` and `reconnectinterval` parameters in top-level `WebSockets` constructors.
* Close `WebSocketExtraneousEventHandler`.
2019-02-03 19:44:53 +00:00
* Add onAuthenticated to server-side.
2019-01-06 02:41:46 +00:00
# 2.0.0
* Update to work with `client@2.0.0`.
2018-12-09 16:40:09 +00:00
# 2.0.0-alpha.8
* Support for WebSockets over HTTP/2 (though in practice this doesn't often happen, if ever).
2018-11-15 16:43:51 +00:00
# 2.0.0-alpha.7
* Replace `WebSocketSynchronizer` with `StreamChannel<WebSocketEvent>`.
2018-11-08 21:53:52 +00:00
# 2.0.0-alpha.6
* Explicit import of `import 'package:http/io_client.dart' as http;`
2018-11-04 02:45:37 +00:00
# 2.0.0-alpha.5
* Update `http` dependency.
2018-11-04 02:05:10 +00:00
# 2.0.0-alpha.4
2018-11-04 02:11:52 +00:00
* Remove `package:json_god`.
* Make `WebSocketContext` take any `StreamChannel`.
2018-11-04 02:05:10 +00:00
* Strong typing updates.
2018-10-22 23:01:24 +00:00
# 2.0.0-alpha.3
* Directly import Angel HTTP.
2018-10-21 08:15:51 +00:00
# 2.0.0-alpha.2
* Updated for the next version of `angel_client`.
2018-10-02 15:32:06 +00:00
# 2.0.0-alpha.1
* Refactorings for updated Angel 2 versions.
* Remove `package:dart2_constant`.
2018-08-28 14:19:45 +00:00
# 2.0.0-alpha
* Depend on Dart 2 and Angel 2.
2018-07-10 16:54:55 +00:00
# 1.1.2
* Dart 2 updates.
* Added `handleClient`, which is nice for external implementations
that plug into `AngelWebSocket`.
2017-12-21 20:15:47 +00:00
# 1.1.1
* Deprecated `unwrap`.
* Service streams now pump out `e.data`, rather than the actual event.
2017-12-10 05:31:34 +00:00
# 1.1.0+1
* Added `unwrap`.