From 3bdd10eee67fc031c782cbd8e01252fd2bb1ac7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luismi=20Rami=CC=81rez?= Date: Mon, 19 Aug 2024 10:36:56 +0200 Subject: [PATCH] Publish package v1.3.9 Update version number and CHANGELOG.md. --- .../new-helper-to-manually-stop-all-agent-processes.md | 8 -------- CHANGELOG.md | 10 ++++++++++ src/appsignal/__about__.py | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) delete mode 100644 .changesets/new-helper-to-manually-stop-all-agent-processes.md diff --git a/.changesets/new-helper-to-manually-stop-all-agent-processes.md b/.changesets/new-helper-to-manually-stop-all-agent-processes.md deleted file mode 100644 index 0740331..0000000 --- a/.changesets/new-helper-to-manually-stop-all-agent-processes.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -bump: patch -type: add ---- - -Add helper to manually stop the agent process for this AppSignal instance. - -Some contexts, like serverless functions, exit before AppSignal can ensure all data is sent to our servers. To ensure the data is sent, the new `appsignal.stop()` method can be called to gracefully stop the AppSignal agent process. diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad1de1..0e0625b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # AppSignal for Python Changelog +## 1.3.9 + +_Published on 2024-08-19._ + +### Added + +- [c2e3f26](https://github.com/appsignal/appsignal-python/commit/c2e3f26575747fbd17e333c527ab33fc4758385d) patch - Add helper to manually stop the agent process for this AppSignal instance. + + Some contexts, like serverless functions, exit before AppSignal can ensure all data is sent to our servers. To ensure the data is sent, the new `appsignal.stop()` method can be called to gracefully stop the AppSignal agent process. + ## 1.3.8 _Published on 2024-08-14._ diff --git a/src/appsignal/__about__.py b/src/appsignal/__about__.py index f69be99..dd2f06a 100644 --- a/src/appsignal/__about__.py +++ b/src/appsignal/__about__.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "1.3.8" +__version__ = "1.3.9"