From 3f33725cda0b6ee4a7a5afc038a2d00a2287269d Mon Sep 17 00:00:00 2001 From: Kaushal Prajapati Date: Tue, 13 Sep 2022 11:36:40 +0530 Subject: [PATCH] Release v1.8.0 --- changelog.md | 18 +++++++++++++++++- src/pybrake/constant.py | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index d57489d..e6116c5 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.8.0] - 2022-09-13 + +### Added + +- Added support for the Pycnic framework with a sample example +- Added support for the Starlette framework with a sample example + +### Changes + +- Receives notices and APM events and periodically sends them + asynchronously in the background (1 minute). Up to 100 backlog items for + notice and APM Performance (Shared for Routes, Route breakdown, query, + queue stats). In the event that the backlog queue becomes full, the item + will be replaced and an error will be recorded. + ## [1.7.0] - 2022-09-02 ### Added @@ -162,7 +177,8 @@ to work) - Pybrake SDK - Middleware for Flask, Django, celery, aiohttp frameworks -[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.7.0...HEAD +[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.8.0...HEAD +[1.8.0]: https://github.com/airbrake/pybrake/compare/v1.7.0...v1.8.0 [1.7.0]: https://github.com/airbrake/pybrake/compare/v1.6.0...v1.7.0 [1.6.0]: https://github.com/airbrake/pybrake/compare/v1.5.0...v1.6.0 [1.5.0]: https://github.com/airbrake/pybrake/compare/v1.4.0...v1.5.0 diff --git a/src/pybrake/constant.py b/src/pybrake/constant.py index f06221e..4282299 100644 --- a/src/pybrake/constant.py +++ b/src/pybrake/constant.py @@ -2,7 +2,7 @@ notifier_name = "pybrake" # Pybrake Notifier Version -version = "1.7.0" +version = "1.8.0" # End point of Airbrake API host. That will always be as default value. AIRBRAKE_HOST = "https://api.airbrake.io"