Skip to content

Commit c70cc43

Browse files
committed
Release version 0.58.0
1 parent 27d3fcd commit c70cc43

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGES.rst

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
11
Changelog
22
=========
33

4-
0.57.0 (2025-12-12)
4+
0.58.0 (2025-12-16)
55
-------------------
66
------------------------
7+
- Fix retry logic for HTTP 5xx errors and network failures. [Rodos]
8+
9+
Refactors error handling to retry all 5xx errors (not just 502), network errors (URLError, socket.error, IncompleteRead), and JSON parse errors with exponential backoff and jitter. Respects retry-after and rate limit headers per GitHub API requirements. Consolidates retry logic into make_request_with_retry() wrapper and adds clear logging for retry attempts and failures. Removes dead code from 2016 (errors list, _request_http_error, _request_url_error) that was intentionally disabled in commit 1e5a9048 to fix #29.
10+
11+
Fixes #140, #110, #138
12+
- Chore: remove transitive deps from release-requirements.txt. [Rodos]
13+
- Chore(deps): bump urllib3 in the python-packages group.
14+
[dependabot[bot]]
15+
16+
Bumps the python-packages group with 1 update: [urllib3](https://github.com/urllib3/urllib3).
17+
18+
19+
Updates `urllib3` from 2.6.1 to 2.6.2
20+
- [Release notes](https://github.com/urllib3/urllib3/releases)
21+
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
22+
- [Commits](https://github.com/urllib3/urllib3/compare/2.6.1...2.6.2)
23+
24+
---
25+
updated-dependencies:
26+
- dependency-name: urllib3
27+
dependency-version: 2.6.2
28+
dependency-type: direct:production
29+
update-type: version-update:semver-patch
30+
dependency-group: python-packages
31+
...
32+
33+
34+
0.57.0 (2025-12-12)
35+
-------------------
736
- Add GitHub Apps documentation and remove outdated header. [Rodos]
837

938
- Add GitHub Apps authentication section with setup steps

github_backup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.57.0"
1+
__version__ = "0.58.0"

0 commit comments

Comments
 (0)