Skip to content

Commit cc682b0

Browse files
committed
update CHANGELOG and bump version to 6.26.0
1 parent 0dc197d commit cc682b0

3 files changed

Lines changed: 24 additions & 1 deletion

File tree

CHANGELOG.asciidoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ endif::[]
3232
[[release-notes-6.x]]
3333
=== Python Agent version 6.x
3434
35+
[[release-notes-6.26.0]]
36+
==== 6.26.0 - 2026-05-25
37+
38+
[float]
39+
===== Bug fixes
40+
41+
* Remove usage of modules and patterns deprecated on recent Python versions {pull}2531[#2531]
42+
* Avoid warnings reading recent Flask versions {pull}2635[#2635]
43+
* Add back instrumentation of the connection object with ``psycopg[pool]`` {pull}2460[#2460]
44+
* Fix GRPC target reporting when it does not contain the port {pull}2584[#2584]
45+
* Do not consider canceled span available for compression {pull}2651[#2651]
46+
3547
[[release-notes-6.25.0]]
3648
==== 6.25.0 - 2025-12-23
3749

docs/release-notes/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ To check for security updates, go to [Security announcements for the Elastic sta
2626

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

29+
## 6.26.0 [elastic-apm-python-agent-6260-release-notes]
30+
**Release date:** May 25, 2026
31+
32+
### Fixes [elastic-apm-python-agent-6260-fixes]
33+
34+
* Remove usage of modules and patterns deprecated on recent Python versions [#2531](https://github.com/elastic/apm-agent-python/pull/2531)
35+
* Avoid warnings reading recent Flask versions [#2635](https://github.com/elastic/apm-agent-python/pull/2635)
36+
* Add back instrumentation of the connection object with ``psycopg[pool]`` [#2460](https://github.com/elastic/apm-agent-python/pull/2460)
37+
* Fix GRPC target reporting when it does not contain the port [#2584](https://github.com/elastic/apm-agent-python/pull/2584)
38+
* Do not consider canceled span available for compression [#2651](https://github.com/elastic/apm-agent-python/pull/2651)
39+
2940
## 6.25.0 [elastic-apm-python-agent-6250-release-notes]
3041
**Release date:** December 23, 2025
3142

elasticapm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3030

31-
__version__ = (6, 25, 0)
31+
__version__ = (6, 26, 0)
3232
VERSION = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)