|
| 1 | +## 3.0.2 |
| 2 | + |
| 3 | +- Move to `dart-lang/http` monorepo. |
| 4 | + |
| 5 | +## 3.0.1 |
| 6 | + |
| 7 | +- Remove unnecessary `dependency_overrides`. |
| 8 | +- Remove obsolete documentation for `WebSocketChannel.new`. |
| 9 | +- Update package `web: '>=0.5.0 <2.0.0'`. |
| 10 | + |
| 11 | +## 3.0.0 |
| 12 | + |
| 13 | +- Provide an adapter around `package:web_socket` `WebSocket`s and make it the |
| 14 | + default implementation for `WebSocketChannel.connect`. |
| 15 | +- **BREAKING**: Remove `WebSocketChannel` constructor. |
| 16 | +- **BREAKING**: Make `WebSocketChannel` an `abstract interface`. |
| 17 | +- **BREAKING**: `IOWebSocketChannel.ready` will throw |
| 18 | + `WebSocketChannelException` instead of `WebSocketException`. |
| 19 | + |
| 20 | +## 2.4.5 |
| 21 | + |
| 22 | +- use secure random number generator for frame masking. |
| 23 | + |
| 24 | +## 2.4.4 |
| 25 | + |
| 26 | +- Require Dart `^3.3` |
| 27 | +- Require `package:web` `^0.5.0`. |
| 28 | + |
| 29 | +## 2.4.3 |
| 30 | + |
| 31 | +- `HtmlWebSocketChannel`: Relax the type of the websocket parameter to the |
| 32 | + constructor in order to mitigate a breaking change introduced in `2.4.1`. |
| 33 | + |
| 34 | +## 2.4.2 (retracted) |
| 35 | + |
| 36 | +- Allow `web: '>=0.3.0 <0.5.0'` |
| 37 | + |
| 38 | +## 2.4.1 |
| 39 | + |
| 40 | +- Update the examples to use `WebSocketChannel.ready` and clarify that |
| 41 | + `WebSocketChannel.ready` should be awaited before sending data over the |
| 42 | + `WebSocketChannel`. |
| 43 | +- Mention `ready` in the docs for `connect`. |
| 44 | +- Bump minimum Dart version to 3.2.0 |
| 45 | +- Move to `pkg:web` to support WebAssembly compilation. |
| 46 | + |
| 47 | +## 2.4.0 |
| 48 | + |
| 49 | +- Add a `customClient` parameter to the `IOWebSocketChannel.connect` factory, |
| 50 | + which allows the user to provide a custom `HttpClient` instance to use for the |
| 51 | + WebSocket connection |
| 52 | +- Bump minimum Dart version to 2.15.0 |
| 53 | + |
| 54 | +## 2.3.0 |
| 55 | + |
| 56 | +- Added a Future `ready` property to `WebSocketChannel`, which completes when |
| 57 | + the connection is established |
| 58 | +- Added a `connectTimeout` parameter to the `IOWebSocketChannel.connect` factory, |
| 59 | + which controls the timeout of the WebSocket Future. |
| 60 | +- Use platform agnostic code in README example. |
| 61 | + |
| 62 | +## 2.2.0 |
| 63 | + |
| 64 | +- Add `HtmlWebSocketChannel.innerWebSocket` getter to access features not exposed |
| 65 | + through the shared `WebSocketChannel` interface. |
| 66 | + |
| 67 | +## 2.1.0 |
| 68 | + |
| 69 | +- Add `IOWebSocketChannel.innerWebSocket` getter to access features not exposed |
| 70 | + through the shared `WebSocketChannel` interface. |
| 71 | + |
| 72 | +## 2.0.0 |
| 73 | + |
| 74 | +- Support null safety. |
| 75 | +- Require Dart 2.12. |
| 76 | + |
| 77 | +## 1.2.0 |
| 78 | + |
| 79 | +* Add `protocols` argument to `WebSocketChannel.connect`. See the docs for |
| 80 | + `WebSocket.connet`. |
| 81 | +* Allow the latest crypto release (`3.x`). |
| 82 | + |
| 83 | +## 1.1.0 |
| 84 | + |
| 85 | +* Add `WebSocketChannel.connect` factory constructor supporting platform |
| 86 | + independent creation of WebSockets providing the lowest common denominator |
| 87 | + of support on dart:io and dart:html. |
| 88 | + |
| 89 | +## 1.0.15 |
| 90 | + |
| 91 | +* bug fix don't pass protocols parameter to WebSocket. |
| 92 | + |
| 93 | +## 1.0.14 |
| 94 | + |
| 95 | +* Updates to handle `Socket implements Stream<Uint8List>` |
| 96 | + |
| 97 | +## 1.0.13 |
| 98 | + |
| 99 | +* Internal changes for consistency with the Dart SDK. |
| 100 | + |
| 101 | +## 1.0.12 |
| 102 | + |
| 103 | +* Allow `stream_channel` version 2.x |
| 104 | + |
| 105 | +## 1.0.11 |
| 106 | + |
| 107 | +* Fixed description in pubspec. |
| 108 | + |
| 109 | +* Fixed lints in README.md. |
| 110 | + |
| 111 | +## 1.0.10 |
| 112 | + |
| 113 | +* Fixed links in README.md. |
| 114 | + |
| 115 | +* Added an example. |
| 116 | + |
| 117 | +* Fixed analysis lints that affected package score. |
| 118 | + |
| 119 | +## 1.0.9 |
| 120 | + |
| 121 | +* Set max SDK version to `<3.0.0`. |
| 122 | + |
| 123 | +## 1.0.8 |
| 124 | + |
| 125 | +* Remove use of deprecated constant name. |
| 126 | + |
| 127 | +## 1.0.7 |
| 128 | + |
| 129 | +* Support the latest dev SDK. |
| 130 | + |
| 131 | +## 1.0.6 |
| 132 | + |
| 133 | +* Declare support for `async` 2.0.0. |
| 134 | + |
| 135 | +## 1.0.5 |
| 136 | + |
| 137 | +* Increase the SDK version constraint to `<2.0.0-dev.infinity`. |
| 138 | + |
| 139 | +## 1.0.4 |
| 140 | + |
| 141 | +* Support `crypto` 2.0.0. |
| 142 | + |
| 143 | +## 1.0.3 |
| 144 | + |
| 145 | +* Fix all strong-mode errors and warnings. |
| 146 | + |
| 147 | +* Fix a bug where `HtmlWebSocketChannel.close()` would crash on non-Dartium |
| 148 | + browsers if the close code and reason weren't provided explicitly. |
| 149 | + |
| 150 | +## 1.0.2 |
| 151 | + |
| 152 | +* Properly use `BASE64` from `dart:convert` rather than `crypto`. |
| 153 | + |
| 154 | +## 1.0.1 |
| 155 | + |
| 156 | +* Add support for `crypto` 1.0.0. |
| 157 | + |
| 158 | +## 1.0.0 |
| 159 | + |
| 160 | +* Initial version |
0 commit comments