diff --git a/CHANGELOG.md b/CHANGELOG.md index a9e7da9..e3351f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.0-dev.5 + +- Added `RedirectPolicy`, that will make it possible to partially emulate how + redirects are returned on `io` platforms. +- Added `streamRequests` option to `FetchClient`. This allows you to use Fetch + request body streaming utilizing half-duplex connection. +- Fixed dev dependencies versions to allow running on Dart 2.19. + ## 1.0.0-dev.4 - Bumped `fetch_api` dependency to `^1.0.0-dev.4`. diff --git a/pubspec.yaml b/pubspec.yaml index 3620005..1de73e5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: fetch_client description: Client for http package based on Fetch API, enables streamed requests on web and more. -version: 1.0.0-dev.4 +version: 1.0.0-dev.5 homepage: https://github.com/Zekfad/fetch_client repository: https://github.com/Zekfad/fetch_client issue_tracker: https://github.com/Zekfad/fetch_client/issues @@ -13,7 +13,7 @@ environment: sdk: '>=2.19.0-0 <4.0.0' dependencies: - fetch_api: ^1.0.0-dev.4 + fetch_api: ^1.0.0-dev.5 http: ^0.13.5 dependency_overrides: @@ -21,12 +21,12 @@ dependency_overrides: # git: https://github.com/Zekfad/fetch_api dev_dependencies: - build_runner: ^2.4.0 - build_web_compilers: ^4.0.0 + build_runner: '>=2.3.3' + build_web_compilers: '>=3.2.7' http_client_conformance_tests: git: url: https://github.com/dart-lang/http ref: master path: pkgs/http_client_conformance_tests - test: ^1.22.2 + test: ^1.23.0 zekfad_lints: ^1.2.0