Dispatch v0.13.0
The maintainers of and contributors to Dispatch are pleased to announce the release of Dispatch v0.13.0. This release is a stable release for the v0.13.x series. The change log for this release can be viewed on GitHub.
The following changes have been made since the v0.12.x series:
- Breaking: Async HTTP Client version is upgraded to 2.0.32. @fbascheper did a heroic amount of work to make this change. This is technically a breaking change since AHC 2.x reorganized all their packages so you'll probably have to adjust imports in your application when you move up to this version.
- Breaking: The implicit
dispatch. implyReq, which was depreciated in 0.11.0, has been removed. Please useRequestBuilder.underlyingwhere needed instead. - Deprecation:
Http.defaultreplaces direct use of theHttpsingleton as an executor. See the v0.13.0-M2 release notes for more details. - Deprecation: The use of
configureis now deprecated. It was easy to accidentally use it to cause resource leaks without realizing it. Please useHttp.withConfigurationorcloseAndConfigureon an executor instance to avoid resource leaks. See the v0.13.0-M2 release notes for more details.