Skip to content

Commit 9255a1b

Browse files
committed
Merge branch 'release/0.5.0'
2 parents 65d5188 + 024b72d commit 9255a1b

File tree

10 files changed

+136
-121
lines changed

10 files changed

+136
-121
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
-
3232
name: Get latest release info
3333
id: query-release-info
34-
uses: release-flow/keep-a-changelog-action@v2
34+
uses: release-flow/keep-a-changelog-action@v3
3535
with:
3636
command: query
3737
version: ${{ github.ref_name }}

.github/workflows/codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
uses: actions/checkout@v4
3737
-
3838
name: Initialize CodeQL
39-
uses: github/codeql-action/init@v2
39+
uses: github/codeql-action/init@v3
4040
with:
4141
languages: "python"
4242
-
4343
name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@v2
44+
uses: github/codeql-action/analyze@v3

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repos:
2626
- id: check-case-conflict
2727
- id: detect-private-key
2828
- repo: https://github.com/pre-commit/mirrors-prettier
29-
rev: "v3.0.3"
29+
rev: "v3.1.0"
3030
hooks:
3131
- id: prettier
3232
types_or:
@@ -36,10 +36,10 @@ repos:
3636
exclude: "(^Pipfile\\.lock$)"
3737
# Python hooks
3838
- repo: https://github.com/astral-sh/ruff-pre-commit
39-
rev: 'v0.1.4'
39+
rev: 'v0.2.1'
4040
hooks:
4141
- id: ruff
4242
- repo: https://github.com/psf/black-pre-commit-mirror
43-
rev: 23.10.1
43+
rev: 24.1.1
4444
hooks:
4545
- id: black

.ruff.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# https://beta.ruff.rs/docs/settings/
2-
# https://beta.ruff.rs/docs/rules/
3-
extend-select = ["I", "W", "UP", "COM", "EXE", "ISC", "ICN", "G201", "INP", "PIE", "RSE", "SIM", "TID", "PLC", "PLE", "RUF", "PTH"]
42
fix = true
53
line-length = 110
64
respect-gitignore = true
75
target-version = "py310"
86
output-format = "grouped"
97
show-fixes = true
108

11-
[isort]
9+
[lint]
10+
# https://docs.astral.sh/ruff/rules/
11+
extend-select = ["F", "E", "W", "I", "UP", "COM", "EXE", "ISC", "ICN", "G201", "INP", "PIE", "RSE", "SIM", "TID", "PLC", "PLE", "RUF", "PTH"]
12+
13+
[lint.isort]
1214
force-single-line = true

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.0] - 2024-02-06
9+
10+
### Changed
11+
12+
- Updated `pipenv` from 2023.10.24 to 2023.12.1
13+
- Updated `httpx` from 0.25.1 to 0.26.0
14+
- Updated development tool versions
15+
816
## [0.4.0] - 2023-11-06
917

1018
### Changed

Pipfile.lock

+111-107
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ephemeral/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ runs:
4545
name: Install pipenv
4646
shell: bash
4747
run: |
48-
pip3 --quiet install --user pipenv==2023.10.24
48+
pip3 --quiet install --user pipenv==2023.12.1
4949
-
5050
name: Install dependencies
5151
shell: bash

github/base.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
is cleaning up container images which are no longer referred to.
77
88
"""
9+
910
import logging
1011
from http import HTTPStatus
1112

github/packages.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ class GithubContainerRegistryOrgApi(_GithubContainerRegistryApiBase):
184184
PACKAGE_VERSIONS_ENDPOINT = (
185185
"/orgs/{ORG}/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions"
186186
)
187-
PACKAGE_VERSION_DELETE_ENDPOINT = "/orgs/{ORG}/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}"
188-
PACKAGE_VERSION_RESTORE_ENDPOINT = "/orgs/{ORG}/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}/restore"
187+
PACKAGE_VERSION_DELETE_ENDPOINT = "/orgs/{ORG}/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}" # noqa: E501
188+
PACKAGE_VERSION_RESTORE_ENDPOINT = "/orgs/{ORG}/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}/restore" # noqa: E501
189189

190190

191191
class GithubContainerRegistryUserApi(_GithubContainerRegistryApiBase):
@@ -199,4 +199,4 @@ class GithubContainerRegistryUserApi(_GithubContainerRegistryApiBase):
199199
PACKAGE_VERSION_DELETE_ENDPOINT = (
200200
"/user/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}"
201201
)
202-
PACKAGE_VERSION_RESTORE_ENDPOINT = "/user/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}/restore"
202+
PACKAGE_VERSION_RESTORE_ENDPOINT = "/user/packages/{PACKAGE_TYPE}/{PACKAGE_NAME}/versions/{PACKAGE_VERSION_ID}/restore" # noqa: E501

untagged/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
name: Install pipenv
3535
shell: bash
3636
run: |
37-
pip3 --quiet install --user pipenv==2023.10.24
37+
pip3 --quiet install --user pipenv==2023.12.1
3838
-
3939
name: Install dependencies
4040
shell: bash

0 commit comments

Comments
 (0)