From f7f5f5adece22c673a88de1398dd0197f8bbedfa Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Thu, 20 Nov 2025 12:02:16 +0100 Subject: [PATCH] update CHANGELOG and bump version to 6.24.1 --- CHANGELOG.asciidoc | 9 +++++++++ docs/release-notes/index.md | 8 ++++++++ elasticapm/version.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 484269c89..d766ca483 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -32,6 +32,15 @@ endif::[] [[release-notes-6.x]] === Python Agent version 6.x +[[release-notes-6.24.1]] +==== 6.24.1 - 2025-11-21 + +[float] +===== Bug fixes + +* Fix handling of psycopg ServerCursor and AsyncServerCursor instrumentation {pull}2489[#2489] +* Fix contrib/opentelemetry set_status to match base signature {pull}2457[#2457] + [[release-notes-6.24.0]] ==== 6.24.0 - 2025-08-12 diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 0424a4b5c..dda90b393 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -26,6 +26,14 @@ To check for security updates, go to [Security announcements for the Elastic sta % ### Fixes [elastic-apm-python-agent-versionext-fixes] +## 6.24.1 [elastic-apm-python-agent-6241-release-notes] +**Release date:** November 21, 2025 + +### Fixes [elastic-apm-python-agent-6241-fixes] + +* Fix handling of psycopg ServerCursor and AsyncServerCursor instrumentation [#2489](https://github.com/elastic/apm-agent-python/pull/2489) +* Fix contrib/opentelemetry `set_status` to match base signature [#2457](https://github.com/elastic/apm-agent-python/pull/2457) + ## 6.24.0 [elastic-apm-python-agent-6240-release-notes] **Release date:** August 12, 2025 diff --git a/elasticapm/version.py b/elasticapm/version.py index a0a2626df..bea3b5f0d 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, 24, 0) +__version__ = (6, 24, 1) VERSION = ".".join(map(str, __version__))