Skip to content

Commit 1d476af

Browse files
committed
Prep for 8.11.0 release
1 parent 1f743a1 commit 1d476af

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 8.11.0 (2025-04-02)
4+
5+
- Added Node::getLastPing and Node::getFailedPings for custom NodePool implementations with ping backoffs
6+
[#35](https://github.com/elastic/elastic-transport-php/pull/35)
7+
- Add HTTP network exception as previous exception to NoNodeAvailableException for debugging
8+
[#34](https://github.com/elastic/elastic-transport-php/pull/34)
9+
- Fixed PHP 7.4+ issue - "must not be accessed before initialization" in getLastRequest() & getLastResponse()
10+
[#33](https://github.com/elastic/elastic-transport-php/pull/33)
11+
- Fixed missing response body with guzzle psr7 streams
12+
[#30](https://github.com/elastic/elastic-transport-php/pull/30)
13+
314
## 8.10.0 (2024-08-14)
415

516
- Added the OpenTelemetry support

src/Transport.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
final class Transport implements ClientInterface, HttpAsyncClient
5353
{
54-
const VERSION = "8.10.0";
54+
const VERSION = "8.11.0";
5555

5656
private ClientInterface $client;
5757
private LoggerInterface $logger;

0 commit comments

Comments
 (0)