diff --git a/.changesets/error-metrics.md b/.changesets/error-metrics.md deleted file mode 100644 index bdbf915f..00000000 --- a/.changesets/error-metrics.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "fix" ---- - -Fix missing error metrics for the error rate and error count graphs in some scenarios, like with Node.js Koa apps. diff --git a/.changesets/update-probes-0.5.4.md b/.changesets/update-probes-0.5.4.md deleted file mode 100644 index 8dc27d3c..00000000 --- a/.changesets/update-probes-0.5.4.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "change" ---- - -Fix disk usage returning a Vec with no entries on Alpine Linux when the `df --local` command fails. diff --git a/CHANGELOG.md b/CHANGELOG.md index 510243e6..36b77ecd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # AppSignal for Python Changelog +## 1.0.4 + +### Changed + +- [2171910](https://github.com/appsignal/appsignal-python/commit/21719106b8a20a44288758fbce09e67afd1ce308) patch - Fix disk usage returning a Vec with no entries on Alpine Linux when the `df --local` command fails. + +### Fixed + +- [3215eb4](https://github.com/appsignal/appsignal-python/commit/3215eb49dc76fd7ad3674842015426c0e2763443) patch - Fix missing error metrics for the error rate and error count graphs in some scenarios, like with Node.js Koa apps. + ## 1.0.3 ### Changed diff --git a/src/appsignal/__about__.py b/src/appsignal/__about__.py index f4f51510..839943ca 100644 --- a/src/appsignal/__about__.py +++ b/src/appsignal/__about__.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "1.0.3" +__version__ = "1.0.4"