Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ autolabeler:
- '/^(chore|ci|test|build)(\(.+\))?:/i'

category-template: '### $TITLE'
change-template: '- $TITLE (#$NUMBER) @$AUTHOR'
change-template: '- $TITLE [#$NUMBER](https://github.com/python-backoff/backoff/pull/$NUMBER) (from [@$AUTHOR](https://github.com/$AUTHOR))'
change-title-escapes: '\<*_&'

version-resolver:
Expand Down
70 changes: 35 additions & 35 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,56 +4,56 @@

### 🚀 Added

- feat: Add a retry context manager (#191) @edgarrmondragon
- feat: Add type annotations to decorator functions (#182) @edgarrmondragon
- feat: Add a retry context manager [#191](https://github.com/python-backoff/backoff/pull/191) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- feat: Add type annotations to decorator functions [#182](https://github.com/python-backoff/backoff/pull/182) (from [@edgarrmondragon](https://github.com/edgarrmondragon))

### 🔄 Changed

- Drop support for Python 3.8 (#152) @edgarrmondragon
- Drop support for Python 3.8 [#152](https://github.com/python-backoff/backoff/pull/152) (from [@edgarrmondragon](https://github.com/edgarrmondragon))

### 🐛 Fixed

- fix: Updated the type annotation of the `exception` argument in `on_exception`, `on_predicate`, `retry_context` and `aretry_context` to correctly expect an exception type or a tuple of exception types (#192) @edgarrmondragon
- fix: Measure elapsed time after function call (#187) @edgarrmondragon
- fix: Updated the type annotation of the `exception` argument in `on_exception`, `on_predicate`, `retry_context` and `aretry_context` to correctly expect an exception type or a tuple of exception types [#192](https://github.com/python-backoff/backoff/pull/192) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- fix: Measure elapsed time after function call [#187](https://github.com/python-backoff/backoff/pull/187) (from [@edgarrmondragon](https://github.com/edgarrmondragon))

### 📚 Documentation

- docs: Enable offline usage of the docs (#154) @edgarrmondragon
- docs: Fixed some code examples (#116) @edgarrmondragon
- docs: Prepare for ReadTheDocs (#108) @edgarrmondragon
- docs: Format Python code blocks in Markdown files with native Ruff support (#102) @edgarrmondragon
- docs: Remove duplicate headers in API reference docs (#80) @edgarrmondragon
- docs: Enable offline usage of the docs [#154](https://github.com/python-backoff/backoff/pull/154) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- docs: Fixed some code examples [#116](https://github.com/python-backoff/backoff/pull/116) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- docs: Prepare for ReadTheDocs [#108](https://github.com/python-backoff/backoff/pull/108) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- docs: Format Python code blocks in Markdown files with native Ruff support [#102](https://github.com/python-backoff/backoff/pull/102) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- docs: Remove duplicate headers in API reference docs [#80](https://github.com/python-backoff/backoff/pull/80) (from [@edgarrmondragon](https://github.com/edgarrmondragon))

### 🧰 Internal

- refactor: Use retry context internally inside our public decorators (#193) @edgarrmondragon
- refactor: Move retry loop logic into a dedicated object (#189) @edgarrmondragon
- refactor: Simplify `expo`, `decay`, and `fibo` wait generators (#188) @edgarrmondragon
- chore: Bump Ruff to v0.16 (#184) @edgarrmondragon
- refactor: Simplify `backoff.constant` wait generator implementation (#181) @edgarrmondragon
- chore: Check types with `ty` and update some type annotations (#179) @edgarrmondragon
- test: Update parametrized tests to address pytest 9.1.0 deprecations (#170) @edgarrmondragon
- ci: add zizmor GitHub Actions security analysis (#165) @edgarrmondragon
- chore: Create CODEOWNERS (#115) @edgarrmondragon
- Apply the Ruff `FA` rules (#104) @edgarrmondragon
- chore: Enable more Ruff rules (#103) @edgarrmondragon
- Apply the Ruff `B` rules (#100) @edgarrmondragon
- Apply the Ruff `I` rules (#99) @edgarrmondragon
- Apply the Ruff `RET` rules (#92) @edgarrmondragon
- chore: Add a tox env for building docs (#91) @edgarrmondragon
- chore: Do not use a uv.lock file (#87) @edgarrmondragon
- refactor: Use retry context internally inside our public decorators [#193](https://github.com/python-backoff/backoff/pull/193) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- refactor: Move retry loop logic into a dedicated object [#189](https://github.com/python-backoff/backoff/pull/189) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- refactor: Simplify `expo`, `decay`, and `fibo` wait generators [#188](https://github.com/python-backoff/backoff/pull/188) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Bump Ruff to v0.16 [#184](https://github.com/python-backoff/backoff/pull/184) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- refactor: Simplify `backoff.constant` wait generator implementation [#181](https://github.com/python-backoff/backoff/pull/181) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Check types with `ty` and update some type annotations [#179](https://github.com/python-backoff/backoff/pull/179) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- test: Update parametrized tests to address pytest 9.1.0 deprecations [#170](https://github.com/python-backoff/backoff/pull/170) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- ci: add zizmor GitHub Actions security analysis [#165](https://github.com/python-backoff/backoff/pull/165) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Create CODEOWNERS [#115](https://github.com/python-backoff/backoff/pull/115) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- Apply the Ruff `FA` rules [#104](https://github.com/python-backoff/backoff/pull/104) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Enable more Ruff rules [#103](https://github.com/python-backoff/backoff/pull/103) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- Apply the Ruff `B` rules [#100](https://github.com/python-backoff/backoff/pull/100) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- Apply the Ruff `I` rules [#99](https://github.com/python-backoff/backoff/pull/99) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- Apply the Ruff `RET` rules [#92](https://github.com/python-backoff/backoff/pull/92) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Add a tox env for building docs [#91](https://github.com/python-backoff/backoff/pull/91) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Do not use a uv.lock file [#87](https://github.com/python-backoff/backoff/pull/87) (from [@edgarrmondragon](https://github.com/edgarrmondragon))

### 🛠️ Maintenance

- ci: Wire up release drafter (#194) @edgarrmondragon
- ci: Simplify CodeQL analysis workflow (#186) @edgarrmondragon
- chore: Check types with `ty` and update some type annotations (#179) @edgarrmondragon
- test: Update parametrized tests to address pytest 9.1.0 deprecations (#170) @edgarrmondragon
- chore: Migrate docs config to zensical.toml (#118) @edgarrmondragon
- ci: Future-proof tested Python versions (#117) @edgarrmondragon
- chore: Create CODEOWNERS (#115) @edgarrmondragon
- ci: Use actionlint in CI (#112) @edgarrmondragon
- Pin Zensical while it is unstable (#93) @edgarrmondragon
- ci: Wire up release drafter [#194](https://github.com/python-backoff/backoff/pull/194) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- ci: Simplify CodeQL analysis workflow [#186](https://github.com/python-backoff/backoff/pull/186) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Check types with `ty` and update some type annotations [#179](https://github.com/python-backoff/backoff/pull/179) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- test: Update parametrized tests to address pytest 9.1.0 deprecations [#170](https://github.com/python-backoff/backoff/pull/170) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Migrate docs config to zensical.toml [#118](https://github.com/python-backoff/backoff/pull/118) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- ci: Future-proof tested Python versions [#117](https://github.com/python-backoff/backoff/pull/117) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- chore: Create CODEOWNERS [#115](https://github.com/python-backoff/backoff/pull/115) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- ci: Use actionlint in CI [#112](https://github.com/python-backoff/backoff/pull/112) (from [@edgarrmondragon](https://github.com/edgarrmondragon))
- Pin Zensical while it is unstable [#93](https://github.com/python-backoff/backoff/pull/93) (from [@edgarrmondragon](https://github.com/edgarrmondragon))

## [v2.3.1] - 2025-12-18

Expand Down