Skip to content
Open
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
11 changes: 11 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,17 @@ endif::[]
[[release-notes-6.x]]
=== Python Agent version 6.x
[[release-notes-6.26.0]]
==== 6.26.0 - 2026-05-22
[float]
===== Bug fixes
* Remove usage of modules and patterns deprecated on recent Python versions {pull}2531[#2531]
* Avoid warnings reading recent Flask versions {pull}2635[#2635]
* Add back instrumentation of the connection object with ``psycopg[pool]`` {pull}2460[#2460]
* Fix GRPC target reporting when it does not contain the port {pull}2584[#2584]
[[release-notes-6.25.0]]
==== 6.25.0 - 2025-12-23
Expand Down
10 changes: 10 additions & 0 deletions docs/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ To check for security updates, go to [Security announcements for the Elastic sta

% ### Fixes [elastic-apm-python-agent-versionext-fixes]

## 6.26.0 [elastic-apm-python-agent-6260-release-notes]
**Release date:** May 22, 2026

### Fixes [elastic-apm-python-agent-6260-fixes]

* 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)
* Fix GRPC target reporting when it does not contain the port [#2584](https://github.com/elastic/apm-agent-python/pull/2584)

## 6.25.0 [elastic-apm-python-agent-6250-release-notes]
**Release date:** December 23, 2025

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, 25, 0)
__version__ = (6, 26, 0)
VERSION = ".".join(map(str, __version__))
Loading