|
| 1 | +## 2.3.1 |
| 2 | + |
| 3 | +- Require Dart 3.2 |
| 4 | +- Add topics to `pubspec.yaml` |
| 5 | +- Move to `dart-lang/http` monorepo. |
| 6 | + |
| 7 | +## 2.3.0 |
| 8 | + |
| 9 | +- Only send updates on frames and pings being received when there are listeners, as to not fill up memory. |
| 10 | + |
| 11 | +## 2.2.0 |
| 12 | + |
| 13 | +- Transform headers to lowercase. |
| 14 | +- Expose pings to connection to enable the KEEPALIVE feature for gRPC. |
| 15 | + |
| 16 | +## 2.1.0 |
| 17 | + |
| 18 | +- Require Dart `3.0.0` |
| 19 | +- Require Dart `2.17.0`. |
| 20 | +- Send `WINDOW_UPDATE` frames for the connection to account for data being sent on closed streams until the `RST_STREAM` has been processed. |
| 21 | + |
| 22 | +## 2.0.1 |
| 23 | + |
| 24 | +- Simplify the implementation of `MultiProtocolHttpServer.close`. |
| 25 | +- Require Dart `2.15.0`. |
| 26 | + |
| 27 | +## 2.0.0 |
| 28 | + |
| 29 | +* Migrate to null safety. |
| 30 | + |
| 31 | +## 1.0.1 |
| 32 | + |
| 33 | +* Add `TransportConnection.onInitialPeerSettingsReceived` which fires when |
| 34 | + initial SETTINGS frame is received from the peer. |
| 35 | + |
| 36 | +## 1.0.0 |
| 37 | + |
| 38 | +* Graduate package to 1.0. |
| 39 | +* `package:http2/http2.dart` now reexports `package:http2/transport.dart`. |
| 40 | + |
| 41 | +## 0.1.9 |
| 42 | + |
| 43 | +* Discard messages incoming after stream cancellation. |
| 44 | + |
| 45 | +## 0.1.8+2 |
| 46 | + |
| 47 | +* On connection termination, try to dispatch existing messages, thereby avoiding |
| 48 | + terminating existing streams. |
| 49 | + |
| 50 | +* Fix `ClientTransportConnection.isOpen` to return `false` if we have exhausted |
| 51 | + the number of max-concurrent-streams. |
| 52 | + |
| 53 | +## 0.1.8+1 |
| 54 | + |
| 55 | +* Switch all uppercase constants from `dart:convert` to lowercase. |
| 56 | + |
| 57 | +## 0.1.8 |
| 58 | + |
| 59 | +* More changes required for making tests pass under Dart 2.0 runtime. |
| 60 | +* Modify sdk constraint to require '>=2.0.0-dev.40.0'. |
| 61 | + |
| 62 | +## 0.1.7 |
| 63 | + |
| 64 | +* Fixes for Dart 2.0. |
| 65 | + |
| 66 | +## 0.1.6 |
| 67 | + |
| 68 | +* Strong mode fixes and other cleanup. |
| 69 | + |
| 70 | +## 0.1.5 |
| 71 | + |
| 72 | +* Removed use of new `Function` syntax, since it isn't fully supported in Dart |
| 73 | + 1.24. |
| 74 | + |
| 75 | +## 0.1.4 |
| 76 | + |
| 77 | +* Added an `onActiveStateChanged` callback to `Connection`, which is invoked when |
| 78 | + the connection changes state from idle to active or from active to idle. This |
| 79 | + can be used to implement an idle connection timeout. |
| 80 | + |
| 81 | +## 0.1.3 |
| 82 | + |
| 83 | +* Fixed a bug where a closed window would not open correctly due to an increase |
| 84 | + in initial window size. |
| 85 | + |
| 86 | +## 0.1.2 |
| 87 | + |
| 88 | +* The endStream bit is now set on the requested frame, instead of on an empty |
| 89 | + data frame following it. |
| 90 | +* Added an `onTerminated` hook that is called when a TransportStream receives |
| 91 | + a RST_STREAM frame. |
| 92 | + |
| 93 | +## 0.1.1+2 |
| 94 | + |
| 95 | +* Add errorCode to exception toString message. |
| 96 | + |
| 97 | +## 0.1.1+1 |
| 98 | + |
| 99 | +* Fixing a performance issue in case the underlying socket is not writeable |
| 100 | +* Allow clients of MultiProtocolHttpServer to supply [http.ServerSettings] |
| 101 | +* Allow the draft version 'h2-14' in the ALPN protocol negogiation. |
| 102 | + |
| 103 | +## 0.1.1 |
| 104 | + |
| 105 | +* Adding support for MultiProtocolHttpServer in the |
| 106 | + `package:http2/multiprotocol_server.dart` library |
| 107 | + |
| 108 | +## 0.1.0 |
| 109 | + |
| 110 | +* First version of a HTTP/2 transport implementation in the |
| 111 | + `package:http2/transport.dart` library |
| 112 | + |
| 113 | +## 0.0.1 |
| 114 | + |
| 115 | +- Initial version |
0 commit comments