Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 10 additions & 2 deletions docs/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion elasticapm/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))
Loading