diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 74f4a8258..97d9478eb 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -32,6 +32,15 @@ endif::[] [[release-notes-6.x]] === Python Agent version 6.x +[[release-notes-6.26.2]] +==== 6.26.2 - 2026-06-22 + +[float] +===== Bug fixes + +* Fix httpcore instrumentation handling of default port {pull}2669[#2669] +* Handle FastAPI 0.137 ``_IncludedRouter`` in route name resolution {pull}2682[#2682] + [[release-notes-6.26.1]] ==== 6.26.1 - 2026-05-25 diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 76737ce19..d35a063da 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -26,12 +26,20 @@ To check for security updates, go to [Security announcements for the Elastic sta % ### Fixes [elastic-apm-python-agent-versionext-fixes] +## 6.26.2 [elastic-apm-python-agent-6262-release-notes] +**Release date:** June 22, 2026 + +### Fixes [elastic-apm-python-agent-6262-fixes] + +* Fix httpcore instrumentation handling of default port [#2669](https://github.com/elastic/apm-agent-python/pull/2669) +* Handle FastAPI 0.137 `_IncludedRouter` in route name resolution [#2682](https://github.com/elastic/apm-agent-python/pull/2682) + ## 6.26.1 [elastic-apm-python-agent-6261-release-notes] **Release date:** May 25, 2026 ### Fixes [elastic-apm-python-agent-6261-fixes] -* Make AWS lambda layers publication more robust against regions failure [#2658](https://github.com/elastic/apm-agent-python/pull/2658) +* Make AWS lambda layers publication more robust against regions failure [#2658](https://github.com/elastic/apm-agent-python/pull/2658) ## 6.26.0 [elastic-apm-python-agent-6260-release-notes] **Release date:** May 25, 2026 @@ -40,7 +48,7 @@ To check for security updates, go to [Security announcements for the Elastic sta * Remove usage of modules and patterns deprecated on recent Python versions [#2531](https://github.com/elastic/apm-agent-python/pull/2531) * Avoid warnings reading recent Flask versions [#2635](https://github.com/elastic/apm-agent-python/pull/2635) -* Add back instrumentation of the connection object with ``psycopg[pool]`` [#2460](https://github.com/elastic/apm-agent-python/pull/2460) +* Add back instrumentation of the connection object with `psycopg[pool]` [#2460](https://github.com/elastic/apm-agent-python/pull/2460) * Fix GRPC target reporting when it does not contain the port [#2584](https://github.com/elastic/apm-agent-python/pull/2584) * Do not consider canceled span available for compression [#2651](https://github.com/elastic/apm-agent-python/pull/2651) diff --git a/elasticapm/version.py b/elasticapm/version.py index 2c903c61f..56695b8b9 100644 --- a/elasticapm/version.py +++ b/elasticapm/version.py @@ -28,5 +28,5 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = (6, 26, 1) +__version__ = (6, 26, 2) VERSION = ".".join(map(str, __version__))