Releases: stanwood/framework-network-android
Releases · stanwood/framework-network-android
1.1.0-beta11
- avoid retrying requests if token hasn't changed after forcefully retrieving
1.1.0-beta10
- Set RetryWithRefresh header manually before forwarding a failed request to
Authenticator.onAuthenticationFailed()to ensure that calling through to authenticate() from there actually results in another attempt to fetch tokens. This completes the changes from 1.1.0-beta9.
1.1.0-beta9
- Breaking: provide Route for subclasses overriding
Authenticator.onAuthenticationFailed()so that they can call through toauthenticate()if needed - synchronize complete token retrieval chain including all calls to
onAuthenticationFailed()to guard against concurrency issues while in custom (that is overridden) fallback handling
1.1.0-beta8
- Breaking: change repository name to
stanwood/framework-network-android
1.1.0-beta7
- Breaking: Major rewrite of error handling and propagation - please check the according section in the README for details
- Fix for critical error in
AuthInterceptorintroduced in the beta which prevented it from working properly at all
1.1.0-beta6
- Breaking: radically simplify authentication: no more distinction between anonymous and authenticated authentication!
1.1.0-beta5
- Breaking: Merge authenticated and anonymous methods in
AuthenticationProviderinto one consistent interface to ease separation of concerns and clean up dependency graphs when implementing the interface. Implement one subclass each for the authenticated and the unauthenticated case!
1.1.0-beta4
- return response instead of request in
OnAuthenticationFailedListener
1.1.0-beta3
- add Nullable annotations
- make
AuthenticationProvider.getAuthenticatedToken()throwIOException
1.1.0-beta2
- lower minSdkVersion to 16