You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add `TokenCacheParameters` to `OAuth2Options` to configurate token cache duration, expiration delta and cache size.
8
+
9
+
### 📈 Improvements
10
+
11
+
- Relax OAuth2 token cache duration to 1hr to avoid unnecessary token refreshes.
12
+
- Disable refresh tokens when obtaining user tokens from IAS.
13
+
This acts as a workaround for a limitation of IAS, where obtaining a refresh token invalidates the original token.
14
+
15
+
### 🐛 Fixed Issues
16
+
17
+
- OData v2 and OData v4: Fix eager HTTP response evaluation for _Create_, _Update_, and _Delete_ request builders in convenience APIs.
18
+
Previous change of `5.20.0` may have resulted in the HTTP connection being left open after the request was executed.
19
+
- Generic OData Client: Revert behavior change introduced in `5.20.0` that let to HTTP responses not being consumed by default.
20
+
If you want to use `disableBufferingHttpResponse()` on `ODataRequestRead` or `ODataRequestReadByKey` please switch to `withoutResponseBuffering()` instead.
0 commit comments