http_interceptor 0.4.0
http_interceptor: ^0.4.0 copied to clipboard
A lightweight, simple plugin that allows you to intercept request and response objects and modify them if desired.
Changelog #
Unreleased #
- ❗️🛠 Changed: Renamed
HttpClientWithInterceptortoInterceptedClient. - ❗️🛠 Changed: Renamed
HttpWithInterceptortoInterceptedHttp. - ✨ Added: Response Transformation (useful for background json decoding/encoding).
- ✨ Added: Support for multipart requests.
- 80% code coverage
0.4.0 #
Check out our 0.4.0 migration guide for information on how to migrate your code.
- ❗️✨ Added: String extension to allow
toUri()usage when importing the library. Sincehttpdropped support for string url usage and since Dart does not yet support function overloading, we had to implement an alternative through extensions. - ✨ Added: Flutter web support 🌐 (
badCertificateCallbackandfindProxyfeatures are not supported on Flutter Web due to browser limitations) - 🛠 Changed: Upgraded
httpto0.13.0. - 🛠 Changed: Upgraded
effective_dartto1.3.0. - 🛠 Changed: Upgraded Dart
sdkto>=2.12.0 <3.0.0. (Yay! Sound null safety! 🎉) - 🗑 Removed:
metais removed since Dart's null safety now covers all uses inside this plugin
0.3.3 #
- 🛠 Changed: Plugin no longer depends on the
flutter/foundation.dart, instead it usesmetaplugin which allows for usage on non flutter environments. - 🛠 Changed: README now features a contribution and a roadmap sections for improving visibility on the project's future.
- 🛠 Changed:
badCertificateCallbackis now available to use without the experimental tag.
0.3.2 #
- 🛠 Changed: Example now showcases exception handling.
- 🛠 Changed: README now showcases exception handling.
- 🐞 Fixed: Interceptor no longer using custom exceptions, instead it rethrows in the case that the retry policy is not set or if it has reached max attempts.
0.3.1 #
- 🐞 Fixed: Retry Policy's
shouldAttemptRetryOnResponsewas synchronous which would not allow async token updates. - 🐞 Fixed: Retry Policy would only trigger once when using
HttpClientWithInterceptor. - 🐞 Fixed: Retry Policy would use the
httpResponse class, which would force plugin users to add http plugin separately. - 🧪 Experimental:
badCertificateCallbackallows you to use self-signing certificates.
0.3.0 #
- ✨ Added: RetryPolicy. It allows to attempt retries on a request when an exception occurs or when a condition from the response is met.
- 🐞 Fixed: URI type urls not concatenating parameters.
0.2.0 #
- ✨ Added: Unit testing for a few of the files.
- 🛠 Changed: Android and iOS projects both in the plugin and the example now use Kotlin/Swift.
- 🛠 Changed: Android projects both in the plugin and the example now use AndroidX namespaces.
- 🐞 Fixed: Last ' ' character was not removed from parametized URLs.
- 🐞 Fixed: Duplicate GET parameters when using
get.
0.1.1 #
- 🐞 Fixed: HTTP Methods have misaligned parameters. Now they are called via named parameters to avoid type mismatch exceptions when being used.
0.1.0 #
- ✨ Added: Query Parameters to GET requests, it allows you to set proper parameters without having to add them to the URL beforehand.
- 🛠 Changed: Documentation for the example to include the new Query Parameters usage.
0.0.3 #
- ✨ Added: Documentation for the example.
0.0.2 #
- 🐞 Fixed: All the warnings regarding plugin publication.
0.0.1 #
- ✨ Added: Initial plugin implementation.
- ✨ Added: Example of usage for the plugin.
- ✨ Added: README.md and LICENSE files.