|
| 1 | +## 4.1.1 |
| 2 | + |
| 3 | +* Move to `dart-lang/http` monorepo. |
| 4 | + |
| 5 | +## 4.1.0 |
| 6 | + |
| 7 | +* `CaseInsensitiveMap`: added constructor `fromEntries`. |
| 8 | +* Require `package:collection` `^1.19.0` |
| 9 | +* Require Dart `^3.4.0` |
| 10 | + |
| 11 | +## 4.0.2 |
| 12 | + |
| 13 | +* Remove `package:charcode` from dev_dependencies. |
| 14 | + |
| 15 | +## 4.0.1 |
| 16 | + |
| 17 | +* Remove dependency on `package:charcode`. |
| 18 | + |
| 19 | +## 4.0.0 |
| 20 | + |
| 21 | +* Stable null safety stable release. |
| 22 | + |
| 23 | +## 4.0.0-nullsafety |
| 24 | + |
| 25 | +* Migrate to null safety. |
| 26 | + |
| 27 | +## 3.1.4 |
| 28 | + |
| 29 | +* Fixed lints affecting package health score. |
| 30 | +* Added an example. |
| 31 | + |
| 32 | +## 3.1.3 |
| 33 | + |
| 34 | +* Set max SDK version to `<3.0.0`, and adjust other dependencies. |
| 35 | + |
| 36 | +## 3.1.2 |
| 37 | + |
| 38 | +* Require Dart SDK 2.0.0-dev.17.0 or greater. |
| 39 | + |
| 40 | +* A number of strong-mode fixes. |
| 41 | + |
| 42 | +## 3.1.1 |
| 43 | + |
| 44 | +* Fix a logic bug in the `chunkedCoding` codec. It had been producing invalid |
| 45 | + output and rejecting valid input. |
| 46 | + |
| 47 | +## 3.1.0 |
| 48 | + |
| 49 | +* Add `chunkedCoding`, a `Codec` that supports encoding and decoding the |
| 50 | + [chunked transfer coding][]. |
| 51 | + |
| 52 | +[chunked transfer coding]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6.1 |
| 53 | + |
| 54 | +## 3.0.2 |
| 55 | + |
| 56 | +* Support `string_scanner` 1.0.0. |
| 57 | + |
| 58 | +## 3.0.1 |
| 59 | + |
| 60 | +* Remove unnecessary dependencies. |
| 61 | + |
| 62 | +## 3.0.0 |
| 63 | + |
| 64 | +* All deprecated APIs have been removed. No new APIs have been added. Packages |
| 65 | + that would use 3.0.0 as a lower bound should use 2.2.0 instead—for example, |
| 66 | + `http_parser: ">=2.2.0 <4.0.0"`. |
| 67 | + |
| 68 | +* Fix all strong-mode warnings. |
| 69 | + |
| 70 | +## 2.2.1 |
| 71 | + |
| 72 | +* Add support for `crypto` 1.0.0. |
| 73 | + |
| 74 | +## 2.2.0 |
| 75 | + |
| 76 | +* `WebSocketChannel` has been moved to |
| 77 | + [the `web_socket_channel` package][web_socket_channel]. The implementation |
| 78 | + here is now deprecated. |
| 79 | + |
| 80 | +[web_socket_channel]: https://pub.dev/packages/web_socket_channel |
| 81 | + |
| 82 | +## 2.1.0 |
| 83 | + |
| 84 | +* Added `WebSocketChannel`, an implementation of `StreamChannel` that's backed |
| 85 | + by a `WebSocket`. |
| 86 | + |
| 87 | +* Deprecated `CompatibleWebSocket` in favor of `WebSocketChannel`. |
| 88 | + |
| 89 | +## 2.0.0 |
| 90 | + |
| 91 | +* Removed the `DataUri` class. It's redundant with the `Uri.data` getter that's |
| 92 | + coming in Dart 1.14, and the `DataUri.data` field in particular was an invalid |
| 93 | + override of that field. |
| 94 | + |
| 95 | +## 1.1.0 |
| 96 | + |
| 97 | +* The MIME spec says that media types and their parameter names are |
| 98 | + case-insensitive. Accordingly, `MediaType` now uses a case-insensitive map for |
| 99 | + its parameters and its `type` and `subtype` fields are now always lowercase. |
| 100 | + |
| 101 | +## 1.0.0 |
| 102 | + |
| 103 | +This is 1.0.0 because the API is stable—there are no breaking changes. |
| 104 | + |
| 105 | +* Added an `AuthenticationChallenge` class for parsing and representing the |
| 106 | + value of `WWW-Authenticate` and related headers. |
| 107 | + |
| 108 | +* Added a `CaseInsensitiveMap` class for representing case-insensitive HTTP |
| 109 | + values. |
| 110 | + |
| 111 | +## 0.0.2+8 |
| 112 | + |
| 113 | +* Bring in the latest `dart:io` WebSocket code. |
| 114 | + |
| 115 | +## 0.0.2+7 |
| 116 | + |
| 117 | +* Add more detail to the readme. |
| 118 | + |
| 119 | +## 0.0.2+6 |
| 120 | + |
| 121 | +* Updated homepage URL. |
| 122 | + |
| 123 | +## 0.0.2+5 |
| 124 | + |
| 125 | +* Widen the version constraint on the `collection` package. |
| 126 | + |
| 127 | +## 0.0.2+4 |
| 128 | + |
| 129 | +* Widen the `string_scanner` version constraint. |
| 130 | + |
| 131 | +## 0.0.2+3 |
| 132 | + |
| 133 | +* Fix a library name conflict. |
| 134 | + |
| 135 | +## 0.0.2+2 |
| 136 | + |
| 137 | +* Fixes for HTTP date formatting. |
| 138 | + |
| 139 | +## 0.0.2+1 |
| 140 | + |
| 141 | +* Minor code refactoring. |
| 142 | + |
| 143 | +## 0.0.2 |
| 144 | + |
| 145 | +* Added `CompatibleWebSocket`, for platform- and API-independent support for the |
| 146 | + WebSocket API. |
0 commit comments