mirror of
https://github.com/josegonzalez/python-github-backup.git
synced 2025-12-05 16:18:02 +01:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5530a1badd | ||
|
|
90ac4999ea | ||
|
|
f4dfc57ba2 | ||
|
|
3d354beb24 | ||
|
|
552c1051e3 |
29
CHANGES.rst
29
CHANGES.rst
@@ -1,9 +1,36 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
0.49.0 (2025-02-01)
|
0.50.0 (2025-02-22)
|
||||||
-------------------
|
-------------------
|
||||||
------------------------
|
------------------------
|
||||||
|
- Chore: fix inline comments. [Jose Diaz-Gonzalez]
|
||||||
|
- Chore(deps): bump the python-packages group across 1 directory with 2
|
||||||
|
updates. [dependabot[bot]]
|
||||||
|
|
||||||
|
Bumps the python-packages group with 2 updates in the / directory: [flake8](https://github.com/pycqa/flake8) and [pkginfo](https://code.launchpad.net/~tseaver/pkginfo/trunk).
|
||||||
|
|
||||||
|
|
||||||
|
Updates `flake8` from 7.1.1 to 7.1.2
|
||||||
|
- [Commits](https://github.com/pycqa/flake8/compare/7.1.1...7.1.2)
|
||||||
|
|
||||||
|
Updates `pkginfo` from 1.12.0 to 1.12.1.2
|
||||||
|
|
||||||
|
---
|
||||||
|
updated-dependencies:
|
||||||
|
- dependency-name: flake8
|
||||||
|
dependency-type: direct:production
|
||||||
|
update-type: version-update:semver-patch
|
||||||
|
dependency-group: python-packages
|
||||||
|
- dependency-name: pkginfo
|
||||||
|
dependency-type: direct:production
|
||||||
|
update-type: version-update:semver-patch
|
||||||
|
dependency-group: python-packages
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
0.49.0 (2025-02-01)
|
||||||
|
-------------------
|
||||||
- Convert timestamp to string, although maybe the other way around would
|
- Convert timestamp to string, although maybe the other way around would
|
||||||
be better ... [Honza Maly]
|
be better ... [Honza Maly]
|
||||||
- Implementing incremental by files, safer version of incremental
|
- Implementing incremental by files, safer version of incremental
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.49.0"
|
__version__ = "0.50.0"
|
||||||
|
|||||||
@@ -1137,7 +1137,7 @@ def backup_issues(args, repo_cwd, repository, repos_template):
|
|||||||
|
|
||||||
with codecs.open(issue_file + ".temp", "w", encoding="utf-8") as f:
|
with codecs.open(issue_file + ".temp", "w", encoding="utf-8") as f:
|
||||||
json_dump(issue, f)
|
json_dump(issue, f)
|
||||||
os.rename(issue_file + ".temp", issue_file) # Unlike json_dump, this is atomic
|
os.rename(issue_file + ".temp", issue_file) # Unlike json_dump, this is atomic
|
||||||
|
|
||||||
|
|
||||||
def backup_pulls(args, repo_cwd, repository, repos_template):
|
def backup_pulls(args, repo_cwd, repository, repos_template):
|
||||||
@@ -1208,7 +1208,7 @@ def backup_pulls(args, repo_cwd, repository, repos_template):
|
|||||||
|
|
||||||
with codecs.open(pull_file + ".temp", "w", encoding="utf-8") as f:
|
with codecs.open(pull_file + ".temp", "w", encoding="utf-8") as f:
|
||||||
json_dump(pull, f)
|
json_dump(pull, f)
|
||||||
os.rename(pull_file + ".temp", pull_file) # Unlike json_dump, this is atomic
|
os.rename(pull_file + ".temp", pull_file) # Unlike json_dump, this is atomic
|
||||||
|
|
||||||
|
|
||||||
def backup_milestones(args, repo_cwd, repository, repos_template):
|
def backup_milestones(args, repo_cwd, repository, repos_template):
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ charset-normalizer==3.4.1
|
|||||||
click==8.1.8
|
click==8.1.8
|
||||||
colorama==0.4.6
|
colorama==0.4.6
|
||||||
docutils==0.21.2
|
docutils==0.21.2
|
||||||
flake8==7.1.1
|
flake8==7.1.2
|
||||||
gitchangelog==3.0.4
|
gitchangelog==3.0.4
|
||||||
idna==3.10
|
idna==3.10
|
||||||
importlib-metadata==8.6.1
|
importlib-metadata==8.6.1
|
||||||
@@ -19,7 +19,7 @@ more-itertools==10.6.0
|
|||||||
mypy-extensions==1.0.0
|
mypy-extensions==1.0.0
|
||||||
packaging==24.2
|
packaging==24.2
|
||||||
pathspec==0.12.1
|
pathspec==0.12.1
|
||||||
pkginfo==1.12.0
|
pkginfo==1.12.1.2
|
||||||
platformdirs==4.3.6
|
platformdirs==4.3.6
|
||||||
pycodestyle==2.12.1
|
pycodestyle==2.12.1
|
||||||
pyflakes==3.2.0
|
pyflakes==3.2.0
|
||||||
|
|||||||
Reference in New Issue
Block a user