mirror of
https://github.com/josegonzalez/python-github-backup.git
synced 2026-01-25 22:53:09 +01:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9be6282719 | ||
|
|
1102990af0 | ||
|
|
311ffb40cd | ||
|
|
2f5e7c2dcf | ||
|
|
0d8a504b02 |
32
CHANGES.rst
32
CHANGES.rst
@@ -1,9 +1,39 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
0.61.2 (2026-01-19)
|
||||
0.61.3 (2026-01-24)
|
||||
-------------------
|
||||
------------------------
|
||||
- Fix KeyError: 'Private' when using --all flag (#481) [Rodos]
|
||||
|
||||
The repository dictionary uses lowercase "private" key. Use .get() with
|
||||
the correct case to match the pattern used elsewhere in the codebase.
|
||||
|
||||
The bug only affects --all users since --security-advisories short-circuits
|
||||
before the key access.
|
||||
- Chore(deps): bump setuptools in the python-packages group.
|
||||
[dependabot[bot]]
|
||||
|
||||
Bumps the python-packages group with 1 update: [setuptools](https://github.com/pypa/setuptools).
|
||||
|
||||
|
||||
Updates `setuptools` from 80.9.0 to 80.10.1
|
||||
- [Release notes](https://github.com/pypa/setuptools/releases)
|
||||
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
|
||||
- [Commits](https://github.com/pypa/setuptools/compare/v80.9.0...v80.10.1)
|
||||
|
||||
---
|
||||
updated-dependencies:
|
||||
- dependency-name: setuptools
|
||||
dependency-version: 80.10.1
|
||||
dependency-type: direct:production
|
||||
update-type: version-update:semver-minor
|
||||
dependency-group: python-packages
|
||||
...
|
||||
|
||||
|
||||
0.61.2 (2026-01-19)
|
||||
-------------------
|
||||
|
||||
Fix
|
||||
~~~
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "0.61.2"
|
||||
__version__ = "0.61.3"
|
||||
|
||||
@@ -1814,7 +1814,7 @@ def backup_repositories(args, output_directory, repositories):
|
||||
if args.include_milestones or args.include_everything:
|
||||
backup_milestones(args, repo_cwd, repository, repos_template)
|
||||
|
||||
if args.include_security_advisories or (args.include_everything and not repository["Private"]):
|
||||
if args.include_security_advisories or (args.include_everything and not repository.get("private", False)):
|
||||
backup_security_advisories(args, repo_cwd, repository, repos_template)
|
||||
|
||||
if args.include_labels or args.include_everything:
|
||||
|
||||
@@ -9,7 +9,7 @@ pytest==9.0.2
|
||||
# Release & Publishing
|
||||
twine==6.2.0
|
||||
gitchangelog==3.0.4
|
||||
setuptools==80.9.0
|
||||
setuptools==80.10.1
|
||||
|
||||
# Documentation
|
||||
restructuredtext-lint==2.0.2
|
||||
|
||||
Reference in New Issue
Block a user