platform/packages/websocket/CHANGELOG.md

96 lines
1.7 KiB
Markdown
Raw Normal View History

2021-07-10 04:32:42 +00:00
# Change Log
2021-09-25 06:32:32 +00:00
## 4.1.0
* Updated to use `package:belatuk_merge_map`
* Updated linter to `package:lints`
2021-07-10 04:32:42 +00:00
## 4.0.1
* Updated README
2021-07-15 09:44:23 +00:00
* Fixed authentication unit test
2021-07-10 04:32:42 +00:00
* Fixed NNBD issues
2021-07-15 09:44:23 +00:00
* All 3 unit tests passed
2021-07-10 04:32:42 +00:00
## 4.0.0
2021-05-02 04:12:43 +00:00
* Migrated to support Dart SDK 2.12.x NNBD
2021-07-10 04:32:42 +00:00
## 3.0.0
2021-05-02 04:12:43 +00:00
* Migrated to work with Dart SDK 2.12.x Non NNBD
2021-07-10 04:32:42 +00:00
## 2.0.3
2019-05-01 22:53:30 +00:00
* Remove `WebSocketController.plugin`.
2019-05-01 22:58:47 +00:00
* Remove any unawaited futures.
2019-05-01 22:53:30 +00:00
2021-07-10 04:32:42 +00:00
## 2.0.2
2019-04-18 15:43:17 +00:00
* Update `stream_channel` to `2.0.0`.
* Use `angel_framework^@2.0.0-rc.0`.
2021-07-10 04:32:42 +00:00
## 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.
2021-07-10 04:32:42 +00:00
## 2.0.0
2019-01-06 02:41:46 +00:00
* Update to work with `client@2.0.0`.
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.8
2018-12-09 16:40:09 +00:00
* Support for WebSockets over HTTP/2 (though in practice this doesn't often happen, if ever).
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.7
2018-11-15 16:43:51 +00:00
* Replace `WebSocketSynchronizer` with `StreamChannel<WebSocketEvent>`.
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.6
2018-11-08 21:53:52 +00:00
* Explicit import of `import 'package:http/io_client.dart' as http;`
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.5
2018-11-04 02:45:37 +00:00
* Update `http` dependency.
2021-07-10 04:32:42 +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.
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.3
2018-10-22 23:01:24 +00:00
* Directly import Angel HTTP.
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.2
2018-10-21 08:15:51 +00:00
* Updated for the next version of `angel_client`.
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha.1
2018-10-02 15:32:06 +00:00
* Refactorings for updated Angel 2 versions.
* Remove `package:dart2_constant`.
2021-07-10 04:32:42 +00:00
## 2.0.0-alpha
2018-08-28 14:19:45 +00:00
* Depend on Dart 2 and Angel 2.
2021-07-10 04:32:42 +00:00
## 1.1.2
2018-07-10 16:54:55 +00:00
* Dart 2 updates.
* Added `handleClient`, which is nice for external implementations
that plug into `AngelWebSocket`.
2021-07-10 04:32:42 +00:00
## 1.1.1
2017-12-21 20:15:47 +00:00
* Deprecated `unwrap`.
* Service streams now pump out `e.data`, rather than the actual event.
2021-07-10 04:32:42 +00:00
## 1.1.0+1
* Added `unwrap`.