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: CHANGELOG.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Changelog
2
2
3
-
## 8.0.0-alpha7
3
+
## 8.0.0-beta1
4
4
5
5
### Added
6
6
@@ -28,12 +28,13 @@
28
28
- Changed `NodeSelector.get_connection()` method to `get()`
29
29
- Changed `elastic_transport.connection` logger name to `elastic_transport.node`
30
30
- Changed `Urllib3HttpNode(connections_per_host)` parameter to `connections_per_node`
31
-
- Changed return type of `BaseNode.perform_request()` to `Tuple[ApiResponseMeta, bytes]`
32
-
- Changed return type of `Transport.perform_request()` to `Tuple[ApiResponseMeta, <deserialized>]`
31
+
- Changed return type of `BaseNode.perform_request()` to `NamedTuple(meta=ApiResponseMeta, body=bytes)`
32
+
- Changed return type of `Transport.perform_request()` to `NamedTuple(meta=ApiResponseMeta, body=Any)`
33
33
- Changed name of `Deserializer` into `SerializersCollection`
34
34
- Changed `ssl_version` to denote the minimum TLS version instead of the only TLS version
35
35
- Changed the base class for `ApiError` to be `Exception` instead of `TransportError`.
36
36
`TransportError` is now only for errors that occur at the transport layer.
37
+
- Changed `Urllib3HttpNode` to block on new connections when the internal connection pool is exhausted
37
38
38
39
### Removed
39
40
@@ -43,6 +44,7 @@
43
44
### Fixed
44
45
45
46
- Fixed a work-around with `AiohttpHttpNode` where `method="HEAD"` requests wouldn't mark the internal connection as reusable. This work-around is no longer needed when `aiohttp>=3.7.0` is installed.
47
+
- Fixed logic for splitting `aiohttp.__version__` when determining if `HEAD` bug is fixed.
0 commit comments