Skip to content

Commit f506588

Browse files
committed
Release v1.10.1
1 parent b8fd3b3 commit f506588

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.10.1] - 2023-01-10
11+
12+
### Changes
13+
14+
- Started handling HTTP response 429 from the Airbrake Notice API more
15+
granularly. Previously, we would return IP is rate limited whenever the
16+
Airbrake Notice API returned a 429. However, this response code may also indicate an error cap hit ([#254])
17+
1018
## [1.10.0] - 2022-10-20
1119

1220
### Added
@@ -196,7 +204,8 @@ to work)
196204
- Pybrake SDK
197205
- Middleware for Flask, Django, celery, aiohttp frameworks
198206

199-
[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.10.0...HEAD
207+
[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.10.1...HEAD
208+
[1.10.1]: https://github.com/airbrake/pybrake/compare/v1.10.0...v1.10.1
200209
[1.10.0]: https://github.com/airbrake/pybrake/compare/v1.9.0...v1.10.0
201210
[1.9.0]: https://github.com/airbrake/pybrake/compare/v1.8.0...v1.9.0
202211
[1.8.0]: https://github.com/airbrake/pybrake/compare/v1.7.0...v1.8.0
@@ -214,3 +223,4 @@ to work)
214223
[1.0.2]: https://github.com/airbrake/pybrake/compare/v1.0.1...v1.0.2
215224
[1.0.1]: https://github.com/airbrake/pybrake/compare/v1.0.0...v1.0.1
216225
[1.0.0]: https://github.com/airbrake/pybrake/compare/v0.4.6...v1.0.0
226+
[#254]: https://github.com/airbrake/pybrake/pull/254

src/pybrake/constant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
notifier_name = "pybrake"
33

44
# Pybrake Notifier Version
5-
version = "1.10.0"
5+
version = "1.10.1"
66

77
# End point of Airbrake API host. That will always be as default value.
88
AIRBRAKE_HOST = "https://api.airbrake.io"

0 commit comments

Comments
 (0)