From 199d113241dee1d57fcba8c5419a9f1a52fa8c42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 21:03:49 +0000 Subject: [PATCH 1/6] [actions] (deps): Bump the dev-dependencies group across 1 directory with 5 updates Bumps the dev-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [py-cov-action/python-coverage-comment-action](https://github.com/py-cov-action/python-coverage-comment-action) | `3.37` | `3.39` | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `3.0.1` | `3.1.0` | Updates `py-cov-action/python-coverage-comment-action` from 3.37 to 3.39 - [Release notes](https://github.com/py-cov-action/python-coverage-comment-action/releases) - [Commits](https://github.com/py-cov-action/python-coverage-comment-action/compare/0544a9c648672334d94ec5dd1add7410b4470ddc...e623398c19eb3853a5572d4a516e10b15b5cefbc) Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) Updates `sigstore/gh-action-sigstore-python` from 3.0.1 to 3.1.0 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/sigstore/gh-action-sigstore-python/compare/f7ad0af51a5648d09a20d00370f0a91c3bdf8f84...f832326173235dcb00dd5d92cd3f353de3188e6c) --- updated-dependencies: - dependency-name: py-cov-action/python-coverage-comment-action dependency-version: '3.39' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage.yaml | 2 +- .github/workflows/publish-to-pypi.yaml | 12 ++++++------ .github/workflows/pyright.yaml | 2 +- .github/workflows/pytest.yaml | 12 ++++++------ .github/workflows/ruff.yaml | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 1bd84dc..0369377 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -17,7 +17,7 @@ jobs: actions: read steps: - name: Python Coverage Comment - uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc + uses: py-cov-action/python-coverage-comment-action@e623398c19eb3853a5572d4a516e10b15b5cefbc with: GITHUB_TOKEN: ${{ github.token }} GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index 3dd1b15..3837ea4 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -25,7 +25,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m hatch build - name: Store the distribution packages - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: python-package-distributions path: dist/ @@ -45,7 +45,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: python-package-distributions path: dist/ @@ -66,12 +66,12 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: python-package-distributions path: dist/ - name: Sign the dists with Sigstore - uses: sigstore/gh-action-sigstore-python@f7ad0af51a5648d09a20d00370f0a91c3bdf8f84 #v3.0.1 + uses: sigstore/gh-action-sigstore-python@f832326173235dcb00dd5d92cd3f353de3188e6c #v3.1.0 with: inputs: >- ./dist/*.tar.gz @@ -110,7 +110,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/pyright.yaml b/.github/workflows/pyright.yaml index d7be324..f42d531 100644 --- a/.github/workflows/pyright.yaml +++ b/.github/workflows/pyright.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index f4b4fb1..7d7710b 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -18,7 +18,7 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -37,7 +37,7 @@ jobs: env: COVERAGE_FILE: ".coverage.${{ matrix.os }}.${{ matrix.python-version }}" - name: Store coverage file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-${{ matrix.os }}-${{ matrix.python-version }} path: .coverage.${{ matrix.os }}.${{ matrix.python-version }} @@ -51,8 +51,8 @@ jobs: pull-requests: write contents: write steps: - - uses: actions/checkout@v5 - - uses: actions/download-artifact@v5 + - uses: actions/checkout@v6 + - uses: actions/download-artifact@v6 id: download with: pattern: coverage-* @@ -63,12 +63,12 @@ jobs: echo "[run]" >> .coveragerc echo "relative_files = true" >> .coveragerc - name: Python Coverage Comment - uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc + uses: py-cov-action/python-coverage-comment-action@e623398c19eb3853a5572d4a516e10b15b5cefbc with: GITHUB_TOKEN: ${{ github.token }} MERGE_COVERAGE_FILES: true - name: Store Pull Request comment to be posted - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' with: name: python-coverage-comment-action diff --git a/.github/workflows/ruff.yaml b/.github/workflows/ruff.yaml index d2001be..c3c1eea 100644 --- a/.github/workflows/ruff.yaml +++ b/.github/workflows/ruff.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: From 2ef4472bc876671914ad16daa6dd7f62489e8448 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 04:52:00 +0000 Subject: [PATCH 2/6] Bump urllib3 in /requirements in the pip group across 1 directory Bumps the pip group with 1 update in the /requirements directory: [urllib3](https://github.com/urllib3/urllib3). Updates `urllib3` from 2.5.0 to 2.6.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.5.0...2.6.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.0 dependency-type: direct:development dependency-group: pip ... Signed-off-by: dependabot[bot] --- requirements/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index 72a72fe..dc7d7af 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -150,7 +150,7 @@ typing-extensions==4.15.0 # textual uc-micro-py==1.0.3 # via linkify-it-py -urllib3==2.5.0 +urllib3==2.6.0 # via requests virtualenv==20.34.0 # via pre-commit From f61a2554d6b66e48ac634030208e098bb850637a Mon Sep 17 00:00:00 2001 From: sophiagavrila Date: Mon, 29 Dec 2025 10:13:22 -0500 Subject: [PATCH 3/6] Bump version to 1.3.2 --- annotated_logger/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotated_logger/__init__.py b/annotated_logger/__init__.py index 9daaec7..e0adb92 100644 --- a/annotated_logger/__init__.py +++ b/annotated_logger/__init__.py @@ -33,7 +33,7 @@ # https://test.pypi.org/project/annotated-logger/ # The dev versions in testpypi can then be pulled in to whatever project needed # the new feature. -VERSION = "1.3.1" # pragma: no mutate +VERSION = "1.3.2" # pragma: no mutate T = TypeVar("T") P = ParamSpec("P") From 2ebbdb45c3a27f4488f96ed660258dec2b714475 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 18:01:52 +0000 Subject: [PATCH 4/6] [pip] (deps): Bump urllib3 from 2.5.0 to 2.6.0 Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.5.0 to 2.6.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.5.0...2.6.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- requirements/requirements-dev.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0e5a044..7dcb2b8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,5 +21,5 @@ python-json-logger==4.0.0 # via hatch.envs.default requests==2.32.5 # via hatch.envs.default -urllib3==2.5.0 +urllib3==2.6.0 # via requests diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index d0cc601..30b78ba 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -101,7 +101,7 @@ typing-extensions==4.15.0 # via # hatch.envs.dev # pyright -urllib3==2.5.0 +urllib3==2.6.0 # via requests virtualenv==20.35.4 # via pre-commit From babc082f1768561af11848b94c2d5a680fdb1f9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 18:03:40 +0000 Subject: [PATCH 5/6] [pip] (deps): Bump the dev-dependencies group across 1 directory with 9 updates Bumps the dev-dependencies group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [urllib3](https://github.com/urllib3/urllib3) | `2.5.0` | `2.6.2` | | [cfgv](https://github.com/asottile/cfgv) | `3.4.0` | `3.5.0` | | [coverage](https://github.com/coveragepy/coveragepy) | `7.11.3` | `7.13.1` | | [filelock](https://github.com/tox-dev/py-filelock) | `3.20.0` | `3.20.1` | | [nodeenv](https://github.com/ekalinin/nodeenv) | `1.9.1` | `1.10.0` | | [platformdirs](https://github.com/tox-dev/platformdirs) | `4.5.0` | `4.5.1` | | [pre-commit](https://github.com/pre-commit/pre-commit) | `4.4.0` | `4.5.1` | | [pytest](https://github.com/pytest-dev/pytest) | `9.0.1` | `9.0.2` | | [ruff](https://github.com/astral-sh/ruff) | `0.14.4` | `0.14.10` | Updates `urllib3` from 2.5.0 to 2.6.2 - [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.5.0...2.6.2) Updates `cfgv` from 3.4.0 to 3.5.0 - [Commits](https://github.com/asottile/cfgv/compare/v3.4.0...v3.5.0) Updates `coverage` from 7.11.3 to 7.13.1 - [Release notes](https://github.com/coveragepy/coveragepy/releases) - [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst) - [Commits](https://github.com/coveragepy/coveragepy/compare/7.11.3...7.13.1) Updates `filelock` from 3.20.0 to 3.20.1 - [Release notes](https://github.com/tox-dev/py-filelock/releases) - [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst) - [Commits](https://github.com/tox-dev/py-filelock/compare/3.20.0...3.20.1) Updates `nodeenv` from 1.9.1 to 1.10.0 - [Release notes](https://github.com/ekalinin/nodeenv/releases) - [Changelog](https://github.com/ekalinin/nodeenv/blob/master/CHANGES) - [Commits](https://github.com/ekalinin/nodeenv/compare/1.9.1...1.10.0) Updates `platformdirs` from 4.5.0 to 4.5.1 - [Release notes](https://github.com/tox-dev/platformdirs/releases) - [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst) - [Commits](https://github.com/tox-dev/platformdirs/compare/4.5.0...4.5.1) Updates `pre-commit` from 4.4.0 to 4.5.1 - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v4.4.0...v4.5.1) Updates `pytest` from 9.0.1 to 9.0.2 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/9.0.1...9.0.2) Updates `ruff` from 0.14.4 to 0.14.10 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.4...0.14.10) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: cfgv dependency-version: 3.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: coverage dependency-version: 7.13.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: filelock dependency-version: 3.20.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: nodeenv dependency-version: 1.10.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: platformdirs dependency-version: 4.5.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: pre-commit dependency-version: 4.5.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: pytest dependency-version: 9.0.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: ruff dependency-version: 0.14.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- requirements/requirements-dev.txt | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0e5a044..06bda13 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,5 +21,5 @@ python-json-logger==4.0.0 # via hatch.envs.default requests==2.32.5 # via hatch.envs.default -urllib3==2.5.0 +urllib3==2.6.2 # via requests diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index d0cc601..31afabb 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -21,17 +21,17 @@ certifi==2025.11.12 # via requests -cfgv==3.4.0 +cfgv==3.5.0 # via pre-commit charset-normalizer==3.4.4 # via requests -coverage==7.11.3 +coverage==7.13.1 # via # hatch.envs.dev # pytest-cov distlib==0.4.0 # via virtualenv -filelock==3.20.0 +filelock==3.20.1 # via virtualenv freezegun==1.5.5 # via pytest-freezer @@ -43,19 +43,19 @@ iniconfig==2.3.0 # via pytest makefun==1.16.0 # via hatch.envs.dev -nodeenv==1.9.1 +nodeenv==1.10.0 # via # pre-commit # pyright packaging==25.0 # via pytest -platformdirs==4.5.0 +platformdirs==4.5.1 # via virtualenv pluggy==1.6.0 # via # pytest # pytest-cov -pre-commit==4.4.0 +pre-commit==4.5.1 # via hatch.envs.dev pychoir==0.0.29 # via hatch.envs.dev @@ -63,7 +63,7 @@ pygments==2.19.2 # via pytest pyright==1.1.407 # via hatch.envs.dev -pytest==9.0.1 +pytest==9.0.2 # via # hatch.envs.dev # pytest-cov @@ -93,7 +93,7 @@ requests==2.32.5 # requests-mock requests-mock==1.12.1 # via hatch.envs.dev -ruff==0.14.4 +ruff==0.14.10 # via hatch.envs.dev six==1.17.0 # via python-dateutil @@ -101,7 +101,7 @@ typing-extensions==4.15.0 # via # hatch.envs.dev # pyright -urllib3==2.5.0 +urllib3==2.6.2 # via requests virtualenv==20.35.4 # via pre-commit From 39e16830c1ee63f0aa59655242f1615d591b28b1 Mon Sep 17 00:00:00 2001 From: sophiagavrila Date: Tue, 30 Dec 2025 12:08:01 -0500 Subject: [PATCH 6/6] Update VERSION to 1.3.3 --- annotated_logger/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotated_logger/__init__.py b/annotated_logger/__init__.py index e0adb92..8117ce9 100644 --- a/annotated_logger/__init__.py +++ b/annotated_logger/__init__.py @@ -33,7 +33,7 @@ # https://test.pypi.org/project/annotated-logger/ # The dev versions in testpypi can then be pulled in to whatever project needed # the new feature. -VERSION = "1.3.2" # pragma: no mutate +VERSION = "1.3.3" # pragma: no mutate T = TypeVar("T") P = ParamSpec("P")