Jose Diaz-Gonzalez
65d541f577
Merge pull request #265 from josegonzalez/dependabot/pip/python-packages-57a4e48c22
...
chore(deps): bump the python-packages group with 1 update
2024-03-23 21:29:34 -04:00
dependabot[bot]
8b08685678
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [importlib-metadata](https://github.com/python/importlib_metadata ).
Updates `importlib-metadata` from 7.0.2 to 7.1.0
- [Release notes](https://github.com/python/importlib_metadata/releases )
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst )
- [Commits](https://github.com/python/importlib_metadata/compare/v7.0.2...v7.1.0 )
---
updated-dependencies:
- dependency-name: importlib-metadata
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-21 13:14:15 +00:00
Jose Diaz-Gonzalez
b18ba6de28
Merge pull request #264 from josegonzalez/dependabot/github_actions/actions/setup-python-5
...
chore(deps): bump actions/setup-python from 4 to 5
2024-03-18 16:01:20 -04:00
dependabot[bot]
358d1e3d3e
chore(deps): bump actions/setup-python from 4 to 5
...
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 4 to 5.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-18 19:59:52 +00:00
Jose Diaz-Gonzalez
1cd04281e9
Merge pull request #263 from paranerd/master
...
Scheduled dependabot for GitHub Actions
2024-03-18 15:59:32 -04:00
paranerd
6630b2b82e
Scheduled dependabot for GitHub Actions
2024-03-18 19:31:29 +01:00
Jose Diaz-Gonzalez
391f2ba305
Merge pull request #261 from josegonzalez/dependabot/pip/python-packages-43602f098d
...
chore(deps): bump the python-packages group with 2 updates
2024-03-18 13:50:15 -04:00
Jose Diaz-Gonzalez
1f0bf50381
Merge pull request #262 from paranerd/master
...
Fix authentication issue in Docker container
2024-03-18 13:50:08 -04:00
paranerd
eb44c735eb
Added Docker info to README
2024-03-18 14:35:37 +01:00
dependabot[bot]
caff40e65b
chore(deps): bump the python-packages group with 2 updates
...
Bumps the python-packages group with 2 updates: [autopep8](https://github.com/hhatto/autopep8 ) and [black](https://github.com/psf/black ).
Updates `autopep8` from 2.0.4 to 2.1.0
- [Release notes](https://github.com/hhatto/autopep8/releases )
- [Commits](https://github.com/hhatto/autopep8/compare/v2.0.4...v2.1.0 )
Updates `black` from 24.2.0 to 24.3.0
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/compare/24.2.0...24.3.0 )
---
updated-dependencies:
- dependency-name: autopep8
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
- dependency-name: black
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-18 13:35:12 +00:00
paranerd
bba39fb4c8
Disable credential persistance on checkout
2024-03-18 14:07:26 +01:00
paranerd
093db93994
Bumped actions versions to latest
2024-03-18 14:02:10 +01:00
GitHub Action
d835d47c17
Release version 0.45.1
0.45.1
2024-03-17 22:30:14 +00:00
Jose Diaz-Gonzalez
2cd9061c46
Merge pull request #257 from dale-primer-e/40-backing-up-releases-using-fine-grained-token-ends-with-an-error
...
234 Backing up releases using fine grained token ends with an error
2024-03-17 18:29:04 -04:00
Jose Diaz-Gonzalez
0cc50bc4cb
Merge pull request #258 from josegonzalez/dependabot/pip/python-packages-1bc7570458
...
chore(deps): bump the python-packages group with 1 update
2024-03-16 14:05:08 -04:00
dependabot[bot]
436e8df0ac
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [zipp](https://github.com/jaraco/zipp ).
Updates `zipp` from 3.18.0 to 3.18.1
- [Release notes](https://github.com/jaraco/zipp/releases )
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst )
- [Commits](https://github.com/jaraco/zipp/compare/v3.18.0...v3.18.1 )
---
updated-dependencies:
- dependency-name: zipp
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-15 14:00:44 +00:00
dale-primer-e
9812988a4a
Remove trailing whitespaces
...
That are triggering flake.
2024-03-15 08:27:09 +13:00
dale-primer-e
1eccebcb83
Fix error with as_app flag
2024-03-14 15:27:22 +13:00
dale-primer-e
122eb56aa1
Fix error downloading assets
...
When downloading assets using a fine grained token you will get a "can't
concat str to bytes" error. This is due to the fine grained token being
concatenated onto bytes in the line:
`request.add_header("Authorization", "Basic ".encode("ascii") + auth)`
This is better handled in the function `_construct_request` so I changed
the lines that construct the request in `download_file` to use the
function `_construct_request` and updated the function signature to
reflect that.
2024-03-14 15:02:49 +13:00
Jose Diaz-Gonzalez
a0fdae3314
Merge pull request #256 from josegonzalez/dependabot/pip/python-packages-7bf9c84fb1
...
chore(deps): bump the python-packages group with 1 update
2024-03-13 10:31:50 -04:00
dependabot[bot]
80fa92664c
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [zipp](https://github.com/jaraco/zipp ).
Updates `zipp` from 3.17.0 to 3.18.0
- [Release notes](https://github.com/jaraco/zipp/releases )
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst )
- [Commits](https://github.com/jaraco/zipp/compare/v3.17.0...v3.18.0 )
---
updated-dependencies:
- dependency-name: zipp
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-13 14:07:08 +00:00
Jose Diaz-Gonzalez
7b69394488
Merge pull request #255 from josegonzalez/dependabot/pip/python-packages-b7495dafca
...
chore(deps): bump the python-packages group with 2 updates
2024-03-11 23:14:07 -04:00
dependabot[bot]
d1d3d84d95
chore(deps): bump the python-packages group with 2 updates
...
Bumps the python-packages group with 2 updates: [importlib-metadata](https://github.com/python/importlib_metadata ) and [packaging](https://github.com/pypa/packaging ).
Updates `importlib-metadata` from 7.0.1 to 7.0.2
- [Release notes](https://github.com/python/importlib_metadata/releases )
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst )
- [Commits](https://github.com/python/importlib_metadata/compare/v7.0.1...v7.0.2 )
Updates `packaging` from 23.2 to 24.0
- [Release notes](https://github.com/pypa/packaging/releases )
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pypa/packaging/compare/23.2...24.0 )
---
updated-dependencies:
- dependency-name: importlib-metadata
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
- dependency-name: packaging
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-11 13:43:27 +00:00
Jose Diaz-Gonzalez
fff2aa4075
Merge pull request #253 from josegonzalez/dependabot/pip/python-packages-8501db5bed
...
chore(deps): bump the python-packages group with 2 updates
2024-03-05 00:14:53 -05:00
dependabot[bot]
8eba46d8a7
chore(deps): bump the python-packages group with 2 updates
...
Bumps the python-packages group with 2 updates: [pkginfo](https://code.launchpad.net/~tseaver/pkginfo/trunk ) and [rich](https://github.com/Textualize/rich ).
Updates `pkginfo` from 1.9.6 to 1.10.0
Updates `rich` from 13.7.0 to 13.7.1
- [Release notes](https://github.com/Textualize/rich/releases )
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Textualize/rich/compare/v13.7.0...v13.7.1 )
---
updated-dependencies:
- dependency-name: pkginfo
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
- dependency-name: rich
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-04 13:39:14 +00:00
Jose Diaz-Gonzalez
9dc3458dba
Merge pull request #251 from josegonzalez/dependabot/pip/python-packages-5d78d04739
...
chore(deps): bump the python-packages group with 1 update
2024-02-28 12:46:27 -05:00
dependabot[bot]
e9d7692123
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [keyring](https://github.com/jaraco/keyring ).
Updates `keyring` from 24.3.0 to 24.3.1
- [Release notes](https://github.com/jaraco/keyring/releases )
- [Changelog](https://github.com/jaraco/keyring/blob/main/NEWS.rst )
- [Commits](https://github.com/jaraco/keyring/compare/v24.3.0...v24.3.1 )
---
updated-dependencies:
- dependency-name: keyring
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-28 13:43:08 +00:00
Jose Diaz-Gonzalez
a1ef61f87c
Merge pull request #250 from josegonzalez/dependabot/pip/python-packages-b64df13e27
...
chore(deps): bump the python-packages group with 1 update
2024-02-27 11:09:25 -05:00
dependabot[bot]
6b62973997
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [readme-renderer](https://github.com/pypa/readme_renderer ).
Updates `readme-renderer` from 42.0 to 43.0
- [Release notes](https://github.com/pypa/readme_renderer/releases )
- [Changelog](https://github.com/pypa/readme_renderer/blob/main/CHANGES.rst )
- [Commits](https://github.com/pypa/readme_renderer/compare/42.0...43.0 )
---
updated-dependencies:
- dependency-name: readme-renderer
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-27 14:05:42 +00:00
Jose Diaz-Gonzalez
b25af67898
Merge pull request #249 from josegonzalez/dependabot/pip/python-packages-ac51cbb969
...
chore(deps): bump the python-packages group with 1 update
2024-02-21 16:00:29 -05:00
dependabot[bot]
0380fb8e35
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [urllib3](https://github.com/urllib3/urllib3 ).
Updates `urllib3` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.0...2.2.1 )
---
updated-dependencies:
- dependency-name: urllib3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-19 13:15:55 +00:00
Jose Diaz-Gonzalez
f62fe5e6c9
Merge pull request #248 from josegonzalez/dependabot/pip/python-packages-1f78fe719d
...
chore(deps): bump the python-packages group with 1 update
2024-02-14 00:15:51 -05:00
dependabot[bot]
c97598c914
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [black](https://github.com/psf/black ).
Updates `black` from 24.1.1 to 24.2.0
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/compare/24.1.1...24.2.0 )
---
updated-dependencies:
- dependency-name: black
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-13 13:59:09 +00:00
Jose Diaz-Gonzalez
c488b0adf9
Merge pull request #247 from josegonzalez/dependabot/pip/python-packages-83fd33f513
...
chore(deps): bump the python-packages group with 2 updates
2024-02-12 17:28:46 -05:00
dependabot[bot]
888815c271
chore(deps): bump the python-packages group with 2 updates
...
Bumps the python-packages group with 2 updates: [tqdm](https://github.com/tqdm/tqdm ) and [twine](https://github.com/pypa/twine ).
Updates `tqdm` from 4.66.1 to 4.66.2
- [Release notes](https://github.com/tqdm/tqdm/releases )
- [Commits](https://github.com/tqdm/tqdm/compare/v4.66.1...v4.66.2 )
Updates `twine` from 4.0.2 to 5.0.0
- [Release notes](https://github.com/pypa/twine/releases )
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst )
- [Commits](https://github.com/pypa/twine/compare/4.0.2...5.0.0 )
---
updated-dependencies:
- dependency-name: tqdm
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
- dependency-name: twine
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-12 13:44:39 +00:00
Jose Diaz-Gonzalez
66e11aa532
Merge pull request #245 from josegonzalez/dependabot/pip/python-packages-2a4cc26f6d
...
chore(deps): bump the python-packages group with 1 update
2024-02-08 19:56:34 -05:00
dependabot[bot]
d1874c0bd9
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [jaraco-classes](https://github.com/jaraco/jaraco.classes ).
Updates `jaraco-classes` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/jaraco/jaraco.classes/releases )
- [Changelog](https://github.com/jaraco/jaraco.classes/blob/main/NEWS.rst )
- [Commits](https://github.com/jaraco/jaraco.classes/compare/v3.3.0...v3.3.1 )
---
updated-dependencies:
- dependency-name: jaraco-classes
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-08 14:05:38 +00:00
Jose Diaz-Gonzalez
4c07bd1310
Merge pull request #242 from josegonzalez/dependabot/pip/python-packages-0117728348
...
chore(deps): bump the python-packages group with 1 update
2024-02-04 18:10:46 -05:00
dependabot[bot]
fd2d398025
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [certifi](https://github.com/certifi/python-certifi ).
Updates `certifi` from 2023.11.17 to 2024.2.2
- [Commits](https://github.com/certifi/python-certifi/compare/2023.11.17...2024.02.02 )
---
updated-dependencies:
- dependency-name: certifi
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-02 13:26:36 +00:00
Jose Diaz-Gonzalez
53d2ceec10
Merge pull request #241 from josegonzalez/dependabot/pip/python-packages-8173d090d9
...
chore(deps): bump the python-packages group with 2 updates
2024-01-31 11:06:42 -05:00
dependabot[bot]
421a7ec62b
chore(deps): bump the python-packages group with 2 updates
...
Bumps the python-packages group with 2 updates: [platformdirs](https://github.com/platformdirs/platformdirs ) and [urllib3](https://github.com/urllib3/urllib3 ).
Updates `platformdirs` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/platformdirs/platformdirs/releases )
- [Changelog](https://github.com/platformdirs/platformdirs/blob/main/CHANGES.rst )
- [Commits](https://github.com/platformdirs/platformdirs/compare/4.1.0...4.2.0 )
Updates `urllib3` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.1.0...2.2.0 )
---
updated-dependencies:
- dependency-name: platformdirs
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
- dependency-name: urllib3
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-31 14:16:30 +00:00
Jose Diaz-Gonzalez
ec43649bcd
Merge pull request #240 from josegonzalez/dependabot/pip/python-packages-35d4ee13ea
...
chore(deps): bump the python-packages group with 1 update
2024-01-29 08:52:35 -05:00
dependabot[bot]
e869844dba
chore(deps): bump the python-packages group with 1 update
...
Bumps the python-packages group with 1 update: [black](https://github.com/psf/black ).
Updates `black` from 24.1.0 to 24.1.1
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/compare/24.1.0...24.1.1 )
---
updated-dependencies:
- dependency-name: black
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-29 13:36:46 +00:00
GitHub Action
0857a37440
Release version 0.45.0
0.45.0
2024-01-29 12:52:57 +00:00
Jose Diaz-Gonzalez
585af4c4e3
Merge pull request #236 from BrOleg5/master
...
Add options to include certain number of latest release and skip prereleases
2024-01-29 07:51:35 -05:00
Jose Diaz-Gonzalez
41ec01d5cb
Merge pull request #233 from 8cH9azbsFifZ/master
...
Docker Images
2024-01-29 07:51:29 -05:00
Jose Diaz-Gonzalez
7dc22358df
Merge pull request #239 from josegonzalez/dependabot/pip/python-packages-1d7ddf90bb
...
chore(deps): bump the python-packages group with 6 updates
2024-01-29 07:50:21 -05:00
Jose Diaz-Gonzalez
b855bcabf6
Merge pull request #238 from mofe23/master
...
Fix 404 on hooks
2024-01-29 07:50:06 -05:00
dependabot[bot]
3c3262ed69
chore(deps): bump the python-packages group with 6 updates
...
Bumps the python-packages group with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [black](https://github.com/psf/black ) | `23.11.0` | `24.1.0` |
| [flake8](https://github.com/pycqa/flake8 ) | `6.1.0` | `7.0.0` |
| [importlib-metadata](https://github.com/python/importlib_metadata ) | `7.0.0` | `7.0.1` |
| [more-itertools](https://github.com/more-itertools/more-itertools ) | `10.1.0` | `10.2.0` |
| [pathspec](https://github.com/cpburnz/python-pathspec ) | `0.11.2` | `0.12.1` |
| [pyflakes](https://github.com/PyCQA/pyflakes ) | `3.1.0` | `3.2.0` |
Updates `black` from 23.11.0 to 24.1.0
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/compare/23.11.0...24.1.0 )
Updates `flake8` from 6.1.0 to 7.0.0
- [Commits](https://github.com/pycqa/flake8/compare/6.1.0...7.0.0 )
Updates `importlib-metadata` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/python/importlib_metadata/releases )
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst )
- [Commits](https://github.com/python/importlib_metadata/compare/v7.0.0...v7.0.1 )
Updates `more-itertools` from 10.1.0 to 10.2.0
- [Release notes](https://github.com/more-itertools/more-itertools/releases )
- [Commits](https://github.com/more-itertools/more-itertools/compare/v10.1.0...v10.2.0 )
Updates `pathspec` from 0.11.2 to 0.12.1
- [Release notes](https://github.com/cpburnz/python-pathspec/releases )
- [Changelog](https://github.com/cpburnz/python-pathspec/blob/master/CHANGES.rst )
- [Commits](https://github.com/cpburnz/python-pathspec/compare/v0.11.2...v0.12.1 )
Updates `pyflakes` from 3.1.0 to 3.2.0
- [Changelog](https://github.com/PyCQA/pyflakes/blob/main/NEWS.rst )
- [Commits](https://github.com/PyCQA/pyflakes/compare/3.1.0...3.2.0 )
---
updated-dependencies:
- dependency-name: black
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: python-packages
- dependency-name: flake8
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: python-packages
- dependency-name: importlib-metadata
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
- dependency-name: more-itertools
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
- dependency-name: pathspec
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
- dependency-name: pyflakes
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-packages
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-26 14:14:51 +00:00
Moritz Federspiel
42b836f623
fix: Catch 404s for non-existing hooks. Fixes #176
...
Explanation: Repositories where no webhooks are defined return 404 errors. This breaks further script execution.
2024-01-16 15:17:48 +01:00