Skip to content

Commit 5f07157

Browse files
committed
Release version 0.50.3
1 parent 87f5b76 commit 5f07157

File tree

2 files changed

+160
-2
lines changed

2 files changed

+160
-2
lines changed

CHANGES.rst

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

4-
0.50.2 (2025-06-16)
4+
0.50.3 (2025-08-08)
55
-------------------
66
------------------------
7+
- Revert "Add conditional check for git checkout in development path"
8+
[Eric Wheeler]
9+
10+
This reverts commit 1bad563e3f23d3d8b9f98721d857a660692f4847.
11+
- Fix -R flag to allow backups of repositories not owned by user. [Eric
12+
Wheeler]
13+
14+
Previously, using -R flag would show zero issues/PRs for repositories
15+
not owned by the primary user due to incorrect pagination parameters
16+
being added to single repository API calls.
17+
18+
- Remove pagination parameters for single repository requests
19+
- Support owner/repo format in -R flag (e.g., -R owner/repo-name)
20+
- Skip filtering when specific repository is requested
21+
- Fix URL construction for requests without query parameters
22+
23+
This enables backing up any repository, not just those owned by the
24+
primary user specified in -u flag.
25+
- Add conditional check for git checkout in development path. [Eric
26+
Wheeler]
27+
28+
Only insert development path into sys.path when running from a git checkout
29+
(when ../.git exists). This makes the script more robust by only using the
30+
development tree when available and falling back to installed package otherwise.
31+
- Chore(deps): bump the python-packages group across 1 directory with 3
32+
updates. [dependabot[bot]]
33+
34+
Bumps the python-packages group with 3 updates in the / directory: [certifi](https://github.com/certifi/python-certifi), [docutils](https://github.com/rtfd/recommonmark) and [rich](https://github.com/Textualize/rich).
35+
36+
37+
Updates `certifi` from 2025.7.9 to 2025.7.14
38+
- [Commits](https://github.com/certifi/python-certifi/compare/2025.07.09...2025.07.14)
39+
40+
Updates `docutils` from 0.21.2 to 0.22
41+
- [Changelog](https://github.com/readthedocs/recommonmark/blob/master/CHANGELOG.md)
42+
- [Commits](https://github.com/rtfd/recommonmark/commits)
43+
44+
Updates `rich` from 14.0.0 to 14.1.0
45+
- [Release notes](https://github.com/Textualize/rich/releases)
46+
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
47+
- [Commits](https://github.com/Textualize/rich/compare/v14.0.0...v14.1.0)
48+
49+
---
50+
updated-dependencies:
51+
- dependency-name: certifi
52+
dependency-version: 2025.7.14
53+
dependency-type: direct:production
54+
update-type: version-update:semver-patch
55+
dependency-group: python-packages
56+
- dependency-name: docutils
57+
dependency-version: '0.22'
58+
dependency-type: direct:production
59+
update-type: version-update:semver-minor
60+
dependency-group: python-packages
61+
- dependency-name: rich
62+
dependency-version: 14.1.0
63+
dependency-type: direct:production
64+
update-type: version-update:semver-minor
65+
dependency-group: python-packages
66+
...
67+
- Chore(deps): bump certifi in the python-packages group.
68+
[dependabot[bot]]
69+
70+
Bumps the python-packages group with 1 update: [certifi](https://github.com/certifi/python-certifi).
71+
72+
73+
Updates `certifi` from 2025.6.15 to 2025.7.9
74+
- [Commits](https://github.com/certifi/python-certifi/compare/2025.06.15...2025.07.09)
75+
76+
---
77+
updated-dependencies:
78+
- dependency-name: certifi
79+
dependency-version: 2025.7.9
80+
dependency-type: direct:production
81+
update-type: version-update:semver-minor
82+
dependency-group: python-packages
83+
...
84+
- Chore(deps): bump urllib3 from 2.4.0 to 2.5.0. [dependabot[bot]]
85+
86+
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.4.0 to 2.5.0.
87+
- [Release notes](https://github.com/urllib3/urllib3/releases)
88+
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
89+
- [Commits](https://github.com/urllib3/urllib3/compare/2.4.0...2.5.0)
90+
91+
---
92+
updated-dependencies:
93+
- dependency-name: urllib3
94+
dependency-version: 2.5.0
95+
dependency-type: direct:production
96+
...
97+
- Chore(deps): bump the python-packages group with 5 updates.
98+
[dependabot[bot]]
99+
100+
Bumps the python-packages group with 5 updates:
101+
102+
| Package | From | To |
103+
| --- | --- | --- |
104+
| [flake8](https://github.com/pycqa/flake8) | `7.2.0` | `7.3.0` |
105+
| [pycodestyle](https://github.com/PyCQA/pycodestyle) | `2.13.0` | `2.14.0` |
106+
| [pyflakes](https://github.com/PyCQA/pyflakes) | `3.3.2` | `3.4.0` |
107+
| [pygments](https://github.com/pygments/pygments) | `2.19.1` | `2.19.2` |
108+
| [urllib3](https://github.com/urllib3/urllib3) | `2.4.0` | `2.5.0` |
109+
110+
111+
Updates `flake8` from 7.2.0 to 7.3.0
112+
- [Commits](https://github.com/pycqa/flake8/compare/7.2.0...7.3.0)
113+
114+
Updates `pycodestyle` from 2.13.0 to 2.14.0
115+
- [Release notes](https://github.com/PyCQA/pycodestyle/releases)
116+
- [Changelog](https://github.com/PyCQA/pycodestyle/blob/main/CHANGES.txt)
117+
- [Commits](https://github.com/PyCQA/pycodestyle/compare/2.13.0...2.14.0)
118+
119+
Updates `pyflakes` from 3.3.2 to 3.4.0
120+
- [Changelog](https://github.com/PyCQA/pyflakes/blob/main/NEWS.rst)
121+
- [Commits](https://github.com/PyCQA/pyflakes/compare/3.3.2...3.4.0)
122+
123+
Updates `pygments` from 2.19.1 to 2.19.2
124+
- [Release notes](https://github.com/pygments/pygments/releases)
125+
- [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES)
126+
- [Commits](https://github.com/pygments/pygments/compare/2.19.1...2.19.2)
127+
128+
Updates `urllib3` from 2.4.0 to 2.5.0
129+
- [Release notes](https://github.com/urllib3/urllib3/releases)
130+
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
131+
- [Commits](https://github.com/urllib3/urllib3/compare/2.4.0...2.5.0)
132+
133+
---
134+
updated-dependencies:
135+
- dependency-name: flake8
136+
dependency-version: 7.3.0
137+
dependency-type: direct:production
138+
update-type: version-update:semver-minor
139+
dependency-group: python-packages
140+
- dependency-name: pycodestyle
141+
dependency-version: 2.14.0
142+
dependency-type: direct:production
143+
update-type: version-update:semver-minor
144+
dependency-group: python-packages
145+
- dependency-name: pyflakes
146+
dependency-version: 3.4.0
147+
dependency-type: direct:production
148+
update-type: version-update:semver-minor
149+
dependency-group: python-packages
150+
- dependency-name: pygments
151+
dependency-version: 2.19.2
152+
dependency-type: direct:production
153+
update-type: version-update:semver-patch
154+
dependency-group: python-packages
155+
- dependency-name: urllib3
156+
dependency-version: 2.5.0
157+
dependency-type: direct:production
158+
update-type: version-update:semver-minor
159+
dependency-group: python-packages
160+
...
161+
162+
163+
0.50.2 (2025-06-16)
164+
-------------------
7165
- Chore(deps): bump certifi in the python-packages group.
8166
[dependabot[bot]]
9167

github_backup/__init__.py

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

0 commit comments

Comments
 (0)