We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b112b43 commit 68af1d4Copy full SHA for 68af1d4
CHANGES.rst
@@ -1,9 +1,19 @@
1
Changelog
2
=========
3
4
-0.61.4 (2026-02-16)
+0.61.5 (2026-02-18)
5
-------------------
6
------------------------
7
+- Fix empty repository crash due to None timestamp comparison (#489)
8
+ [Rodos]
9
+
10
+ Empty repositories have None for pushed_at/updated_at, causing a
11
+ TypeError when compared to the last_update string. Use .get() with
12
+ truthiness check to skip None timestamps in incremental tracking.
13
14
15
+0.61.4 (2026-02-16)
16
+-------------------
17
- Fix HTTP 451 DMCA and 403 TOS handling regression (#487) [Rodos]
18
19
The DMCA handling added in PR #454 had a bug: make_request_with_retry()
github_backup/__init__.py
@@ -1 +1 @@
-__version__ = "0.61.4"
+__version__ = "0.61.5"
0 commit comments