feat: Add retry decorator with exponential backoff and comprehensive project updates#111
Merged
dusktreader merged 6 commits intomainfrom Jan 28, 2026
Merged
Conversation
…project updates Added retry functionality with exponential backoff, jitter, and selective exception retry capabilities via retry() and retry_async() decorators. Also includes extensive project improvements for code quality and maintainability. Key additions: * retry() and retry_async() decorators with configurable backoff, jitter, and selective exception handling * Protocol types for all callback parameters (ExceptionCallback, DoExceptParamsCallback, etc.) * Buzz.retry() and Buzz.retry_async() class methods * Pre-commit hooks configured to run make qa/full * YAML linting with yamllint * Mutation testing with mutmut * CONTRIBUTING.md and CODE_OF_CONDUCT.md documentation Code quality improvements: * Fixed all basedpyright warnings in tests (added override decorators, type hints) * Fixed YAML indentation in GitHub Actions workflows * Removed dead _check_kwargs() method * Added import auto-sorting to make qa/format * Reformatted Makefile with colored help output and consistent pattern Updated documentation with retry examples and comprehensive feature descriptions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added retry functionality with exponential backoff, jitter, and selective exception retry capabilities via retry() and retry_async() decorators. Also includes extensive project improvements for code quality and maintainability.
Key additions:
Code quality improvements:
Updated documentation with retry examples and comprehensive feature descriptions.