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
Copy file name to clipboardExpand all lines: docs-java/release-notes/release-notes-15-to-29.mdx
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,23 @@
51
51
- Fix `CVE-2025-48734` by transitive dependency update in `connectivity-ztis`.
52
52
- For OData Generic Client: Fix `disableBufferingHttpResponse()` in `ODataRequestResultGeneric`.
53
53
54
+
### 🐛 Known Issues
55
+
56
+
- For OData clients: This release changed the default HTTP response lifecycle for OData request-execution results.
57
+
58
+
Until `5.19.0` the underlying _OData Generic Client_ was "eagerly" consuming the HTTP response.
59
+
With `5.20.0` it changed to "lazily" consuming the HTTP response while buffering the content.
60
+
While this is considered a fix and acceptable change for the expert _OData Generic Client_, we unintentionally changed the behavior in the convenience classes for OData v2 and OData v4 as well.
61
+
This behavior change in convenience API will be reverted with next `5.21.0`.
62
+
63
+
Affected users may observe the following exception message due to HTTP responses not being consumed and HTTP connections not being closed automatically:
64
+
65
+
```
66
+
ConnectionPoolTimeoutException: Timeout waiting for connection from pool
67
+
```
68
+
69
+
Please use `5.19.0` until this is fixed in `5.21.0`.
0 commit comments