From 50a148c6e03ee890a895d8fd6f8eddde6cd0ef5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 14:46:18 +0000 Subject: [PATCH 01/16] chore: Bump the production-dependencies group with 5 updates Bumps the production-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.2` | `4.1.6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4.1.1` | `4.4.1` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.1` | `4.3.3` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `4.2.5` | `4.3.2` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.4` | `4.1.7` | Updates `actions/checkout` from 4.1.2 to 4.1.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/v4.1.2...v4.1.6) Updates `codecov/codecov-action` from 4.1.1 to 4.4.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.1.1...v4.4.1) Updates `actions/upload-artifact` from 4.3.1 to 4.3.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.3) Updates `actions/dependency-review-action` from 4.2.5 to 4.3.2 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/v4.2.5...v4.3.2) Updates `actions/download-artifact` from 4.1.4 to 4.1.7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 8 ++++---- .github/workflows/dependency-review.yaml | 4 ++-- .github/workflows/deploy.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 93e74146..31665b17 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,7 +34,7 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Set Up Python ${{ matrix.python_version }} uses: actions/setup-python@v5.1.0 @@ -75,7 +75,7 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Set Up Python ${{ matrix.python_version }} uses: actions/setup-python@v5.1.0 @@ -122,7 +122,7 @@ jobs: make test-coverage-report - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.1.1 + uses: codecov/codecov-action@v4.4.1 with: token: ${{ secrets.CODECOV_TOKEN }} directory: ./test-reports/coverage/ @@ -137,7 +137,7 @@ jobs: - name: Store Artifacts if: ${{ always() }} - uses: actions/upload-artifact@v4.3.1 + uses: actions/upload-artifact@v4.3.3 with: name: test_reports_${{ matrix.python_version }} path: test-reports/ diff --git a/.github/workflows/dependency-review.yaml b/.github/workflows/dependency-review.yaml index a0bc4b9b..14aaf55f 100644 --- a/.github/workflows/dependency-review.yaml +++ b/.github/workflows/dependency-review.yaml @@ -21,9 +21,9 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Dependency Review - uses: actions/dependency-review-action@v4.2.5 + uses: actions/dependency-review-action@v4.3.2 with: fail-on-severity: critical diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index f8c12b57..2e9f3a56 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -38,7 +38,7 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Set Up Python id: set_up_python @@ -53,7 +53,7 @@ jobs: key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }} - name: Restore Artifacts (Release) - uses: actions/download-artifact@v4.1.4 + uses: actions/download-artifact@v4.1.7 with: name: release path: ${{ inputs.artifacts_path }}/ diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 148b1feb..723588d3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Set Up Python id: set_up_python @@ -68,7 +68,7 @@ jobs: make dist - name: Store Artifacts - uses: actions/upload-artifact@v4.3.1 + uses: actions/upload-artifact@v4.3.3 with: name: release path: ${{ env.ARTIFACTS_PATH }}/ From 7c6b45cc9a09cf8cad600b681c6b77468ba6a70d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 15:02:26 +0000 Subject: [PATCH 02/16] chore: Bump requests from 2.31.0 to 2.32.2 Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.2. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.31.0...v2.32.2) --- updated-dependencies: - dependency-name: requests dependency-type: indirect ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 246563d4..2653d6b8 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -124,7 +124,7 @@ referencing==0.30.2 # via # -c requirements.txt # types-jsonschema -requests==2.31.0 +requests==2.32.2 # via # requests-toolbelt # twine From 4e9ad06abe11ee6b5a88987eb54078261ddeee05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 16:12:45 +0000 Subject: [PATCH 03/16] chore: Bump pydantic from 2.6.4 to 2.7.2 Bumps [pydantic](https://github.com/pydantic/pydantic) from 2.6.4 to 2.7.2. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.6.4...v2.7.2) --- updated-dependencies: - dependency-name: pydantic dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.in | 2 +- requirements.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.in b/requirements.in index 37ba9169..61abecc6 100644 --- a/requirements.in +++ b/requirements.in @@ -14,7 +14,7 @@ importlib-metadata==7.1.0 jsonschema==4.21.1 lxml==5.2.1 marshmallow==3.21.1 -pydantic==2.6.4 +pydantic==2.7.2 pyOpenSSL==24.1.0 pytz==2024.1 signxml==3.2.2 diff --git a/requirements.txt b/requirements.txt index 24c1fff6..69e21c1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -55,9 +55,9 @@ pkgutil-resolve-name==1.3.10 # via jsonschema pycparser==2.20 # via cffi -pydantic==2.6.4 +pydantic==2.7.2 # via -r requirements.in -pydantic-core==2.16.3 +pydantic-core==2.18.3 # via pydantic pyopenssl==24.1.0 # via From 5ae1a33af05127547f50f18730211b54d68db48f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 16:14:29 +0000 Subject: [PATCH 04/16] chore: Bump the development-dependencies group with 6 updates Bumps the development-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [black](https://github.com/psf/black) | `24.4.0` | `24.4.2` | | [coverage](https://github.com/nedbat/coveragepy) | `7.4.4` | `7.5.3` | | [mypy](https://github.com/python/mypy) | `1.9.0` | `1.10.0` | | [twine](https://github.com/pypa/twine) | `5.0.0` | `5.1.0` | | [types-jsonschema](https://github.com/python/typeshed) | `4.21.0.20240331` | `4.22.0.20240501` | | [types-pyopenssl](https://github.com/python/typeshed) | `24.0.0.20240417` | `24.1.0.20240425` | Updates `black` from 24.4.0 to 24.4.2 - [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.4.0...24.4.2) Updates `coverage` from 7.4.4 to 7.5.3 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](https://github.com/nedbat/coveragepy/compare/7.4.4...7.5.3) Updates `mypy` from 1.9.0 to 1.10.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0) Updates `twine` from 5.0.0 to 5.1.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/5.0.0...5.1.0) Updates `types-jsonschema` from 4.21.0.20240331 to 4.22.0.20240501 - [Commits](https://github.com/python/typeshed/commits) Updates `types-pyopenssl` from 24.0.0.20240417 to 24.1.0.20240425 - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: coverage dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: twine dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: types-jsonschema dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: types-pyopenssl dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] --- requirements-dev.in | 12 ++++++------ requirements-dev.txt | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/requirements-dev.in b/requirements-dev.in index f449da8e..5ec16184 100644 --- a/requirements-dev.in +++ b/requirements-dev.in @@ -4,16 +4,16 @@ -c requirements.txt -black==24.4.0 +black==24.4.2 bumpversion==0.5.3 -coverage==7.4.4 +coverage==7.5.3 flake8==7.0.0 isort==5.13.2 -mypy==1.9.0 +mypy==1.10.0 pip-tools==7.4.1 tox==4.11.4 -twine==5.0.0 -types-jsonschema==4.21.0.20240331 -types-pyOpenSSL==24.0.0.20240417 +twine==5.1.0 +types-jsonschema==4.22.0.20240501 +types-pyOpenSSL==24.1.0.20240425 types-pytz==2024.1.0.20240417 wheel==0.43.0 diff --git a/requirements-dev.txt b/requirements-dev.txt index 2653d6b8..731b55ec 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -8,7 +8,7 @@ attrs==23.1.0 # via # -c requirements.txt # referencing -black==24.4.0 +black==24.4.2 # via -r requirements-dev.in bleach==5.0.1 # via readme-renderer @@ -36,7 +36,7 @@ click==8.0.3 # pip-tools colorama==0.4.6 # via tox -coverage==7.4.4 +coverage==7.5.3 # via -r requirements-dev.in cryptography==42.0.5 # via @@ -74,7 +74,7 @@ mccabe==0.7.0 # via flake8 mdurl==0.1.2 # via markdown-it-py -mypy==1.9.0 +mypy==1.10.0 # via -r requirements-dev.in mypy-extensions==1.0.0 # via @@ -153,13 +153,13 @@ tomli==2.0.1 # tox tox==4.11.4 # via -r requirements-dev.in -twine==5.0.0 +twine==5.1.0 # via -r requirements-dev.in types-cffi==1.16.0.20240331 # via types-pyopenssl -types-jsonschema==4.21.0.20240331 +types-jsonschema==4.22.0.20240501 # via -r requirements-dev.in -types-pyopenssl==24.0.0.20240417 +types-pyopenssl==24.1.0.20240425 # via -r requirements-dev.in types-pytz==2024.1.0.20240417 # via -r requirements-dev.in From 25560b8f7a6b7c8f4b19aada149d0c267d435b76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 20:32:08 +0000 Subject: [PATCH 05/16] chore: Bump jsonschema from 4.21.1 to 4.22.0 Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from 4.21.1 to 4.22.0. - [Release notes](https://github.com/python-jsonschema/jsonschema/releases) - [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst) - [Commits](https://github.com/python-jsonschema/jsonschema/compare/v4.21.1...v4.22.0) --- updated-dependencies: - dependency-name: jsonschema dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index 61abecc6..924d9b6d 100644 --- a/requirements.in +++ b/requirements.in @@ -11,7 +11,7 @@ defusedxml==0.7.1 Django>=2.2.24 djangorestframework>=3.10.3,<3.16 importlib-metadata==7.1.0 -jsonschema==4.21.1 +jsonschema==4.22.0 lxml==5.2.1 marshmallow==3.21.1 pydantic==2.7.2 diff --git a/requirements.txt b/requirements.txt index 69e21c1f..aeab4e73 100644 --- a/requirements.txt +++ b/requirements.txt @@ -39,7 +39,7 @@ importlib-resources==6.1.0 # via # jsonschema # jsonschema-specifications -jsonschema==4.21.1 +jsonschema==4.22.0 # via -r requirements.in jsonschema-specifications==2023.7.1 # via jsonschema From 377825ce595a78012bc87e8fa75832f39915c8dd Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Tue, 11 Jun 2024 12:17:30 -0400 Subject: [PATCH 06/16] chore: Replace hardcoded versions of Pip and others in Make variables In `Makefile`, obtain the versions of `pip`, `setuptools`, and `pip-tools` from Python dependency manifests instead of hardcoding them in `Makefile`. This change avoids having to update the versions of those packages in multiple places (`requirements.*` and `Makefile`). --- Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e8473d02..41faa1bd 100644 --- a/Makefile +++ b/Makefile @@ -6,10 +6,19 @@ SOURCES_ROOT = $(CURDIR)/src # Python PYTHON = python3 PYTHON_PIP = $(PYTHON) -m pip -PYTHON_PIP_VERSION_SPECIFIER = ==23.3 -PYTHON_SETUPTOOLS_VERSION_SPECIFIER = ==65.5.1 +PYTHON_PIP_VERSION_SPECIFIER = $(shell \ + grep -E '^pip==.+' --no-filename --only-matching --no-messages -- requirements{,-dev}.{txt,in} \ + | head -n 1 | sed 's/^pip//' \ +) +PYTHON_SETUPTOOLS_VERSION_SPECIFIER = $(shell \ + grep -E '^setuptools==.+' --no-filename --only-matching --no-messages -- requirements{,-dev}.{txt,in} \ + | head -n 1 | sed 's/^setuptools//' \ +) PYTHON_VIRTUALENV_DIR = venv -PYTHON_PIP_TOOLS_VERSION_SPECIFIER = ==7.3.0 +PYTHON_PIP_TOOLS_VERSION_SPECIFIER = $(shell \ + grep -E '^pip-tools==.+' --no-filename --only-matching --no-messages -- requirements{,-dev}.{txt,in} \ + | head -n 1 | sed 's/^pip-tools//' \ +) PYTHON_PIP_TOOLS_SRC_FILES = requirements.in requirements-dev.in PYTHON_PIP_TOOLS_COMPILE_ARGS = --allow-unsafe --strip-extras --quiet From 4d0951453319993ae4acdd1e571ef6c2d61a5b84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jun 2024 17:46:04 +0000 Subject: [PATCH 07/16] chore: Bump cryptography from 42.0.5 to 42.0.8 Bumps [cryptography](https://github.com/pyca/cryptography) from 42.0.5 to 42.0.8. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/42.0.5...42.0.8) --- updated-dependencies: - dependency-name: cryptography dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- requirements.in | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 731b55ec..5b1cc1f3 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -38,7 +38,7 @@ colorama==0.4.6 # via tox coverage==7.5.3 # via -r requirements-dev.in -cryptography==42.0.5 +cryptography==42.0.8 # via # -c requirements.txt # secretstorage diff --git a/requirements.in b/requirements.in index 924d9b6d..c00988e3 100644 --- a/requirements.in +++ b/requirements.in @@ -6,7 +6,7 @@ # git+https://github.com/example/example.git@example-vcs-ref#egg=example-pkg[foo,bar]==1.42.3 backports-zoneinfo==0.2.1 ; python_version < "3.9" # Used by `djangorestframework`. -cryptography==42.0.5 +cryptography==42.0.8 defusedxml==0.7.1 Django>=2.2.24 djangorestframework>=3.10.3,<3.16 diff --git a/requirements.txt b/requirements.txt index aeab4e73..8d928aee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -20,7 +20,7 @@ certifi==2023.7.22 # via signxml cffi==1.15.1 # via cryptography -cryptography==42.0.5 +cryptography==42.0.8 # via # -r requirements.in # pyopenssl From ffd6d4a1f4406c7665e6202ef079d6491bdd313f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 01:22:31 +0000 Subject: [PATCH 08/16] chore: Bump urllib3 from 1.26.18 to 1.26.19 Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.18 to 1.26.19. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/1.26.19/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/1.26.18...1.26.19) --- updated-dependencies: - dependency-name: urllib3 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 5b1cc1f3..8c2026be 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -171,7 +171,7 @@ typing-extensions==4.7.1 # black # mypy # rich -urllib3==1.26.18 +urllib3==1.26.19 # via # requests # twine From 0a7705335df27e2b1a3640fd150ee16f106c46a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 20:22:27 +0000 Subject: [PATCH 09/16] chore: Bump djangorestframework from 3.15.1 to 3.15.2 Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.15.1 to 3.15.2. - [Release notes](https://github.com/encode/django-rest-framework/releases) - [Commits](https://github.com/encode/django-rest-framework/compare/3.15.1...3.15.2) --- updated-dependencies: - dependency-name: djangorestframework dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8d928aee..282e38d9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ # annotated-types==0.5.0 # via pydantic -asgiref==3.5.2 +asgiref==3.8.1 # via django attrs==23.1.0 # via @@ -15,6 +15,7 @@ attrs==23.1.0 backports-zoneinfo==0.2.1 ; python_version < "3.9" # via # -r requirements.in + # django # djangorestframework certifi==2023.7.22 # via signxml @@ -27,11 +28,11 @@ cryptography==42.0.8 # signxml defusedxml==0.7.1 # via -r requirements.in -django==3.2.25 +django==4.2.14 # via # -r requirements.in # djangorestframework -djangorestframework==3.15.1 +djangorestframework==3.15.2 # via -r requirements.in importlib-metadata==7.1.0 # via -r requirements.in @@ -64,9 +65,7 @@ pyopenssl==24.1.0 # -r requirements.in # signxml pytz==2024.1 - # via - # -r requirements.in - # django + # via -r requirements.in referencing==0.30.2 # via # jsonschema @@ -82,6 +81,7 @@ sqlparse==0.5.0 typing-extensions==4.7.1 # via # annotated-types + # asgiref # pydantic # pydantic-core zipp==3.8.1 From 643f2189b7d6a2662f998f4d9be396fec0a1a1cc Mon Sep 17 00:00:00 2001 From: Felipe Pinto Date: Wed, 10 Jul 2024 17:55:30 -0400 Subject: [PATCH 10/16] chore(deps): Update package zipp from 3.8.1 to 3.19.2 Update package `zipp` to version 3.19.2 in compiled dependency files - [Package Manager](https://pypi.org/project/zipp/) - [Software Repository](https://github.com/jaraco/zipp) - [Commits](https://github.com/jaraco/zipp/compare/v3.8.1...v3.19.2) --- requirements-dev.txt | 18 +++++++++--------- requirements.txt | 24 ++++++++++++------------ 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 8c2026be..83eeb32d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,7 +4,7 @@ # # pip-compile --allow-unsafe --strip-extras requirements-dev.in # -attrs==23.1.0 +attrs==23.2.0 # via # -c requirements.txt # referencing @@ -18,11 +18,11 @@ bumpversion==0.5.3 # via -r requirements-dev.in cachetools==5.3.1 # via tox -certifi==2023.7.22 +certifi==2024.7.4 # via # -c requirements.txt # requests -cffi==1.15.1 +cffi==1.16.0 # via # -c requirements.txt # cryptography @@ -80,7 +80,7 @@ mypy-extensions==1.0.0 # via # black # mypy -packaging==23.1 +packaging==24.1 # via # -c requirements.txt # black @@ -102,7 +102,7 @@ pluggy==1.3.0 # via tox pycodestyle==2.11.0 # via flake8 -pycparser==2.20 +pycparser==2.22 # via # -c requirements.txt # cffi @@ -120,7 +120,7 @@ pyproject-hooks==1.0.0 # pip-tools readme-renderer==35.0 # via twine -referencing==0.30.2 +referencing==0.35.1 # via # -c requirements.txt # types-jsonschema @@ -134,7 +134,7 @@ rfc3986==2.0.0 # via twine rich==13.5.2 # via twine -rpds-py==0.10.6 +rpds-py==0.19.0 # via # -c requirements.txt # referencing @@ -165,7 +165,7 @@ types-pytz==2024.1.0.20240417 # via -r requirements-dev.in types-setuptools==69.5.0.20240415 # via types-cffi -typing-extensions==4.7.1 +typing-extensions==4.12.2 # via # -c requirements.txt # black @@ -183,7 +183,7 @@ wheel==0.43.0 # via # -r requirements-dev.in # pip-tools -zipp==3.8.1 +zipp==3.19.2 # via # -c requirements.txt # importlib-metadata diff --git a/requirements.txt b/requirements.txt index 282e38d9..72961131 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,11 +4,11 @@ # # pip-compile --allow-unsafe --strip-extras requirements.in # -annotated-types==0.5.0 +annotated-types==0.7.0 # via pydantic asgiref==3.8.1 # via django -attrs==23.1.0 +attrs==23.2.0 # via # jsonschema # referencing @@ -17,9 +17,9 @@ backports-zoneinfo==0.2.1 ; python_version < "3.9" # -r requirements.in # django # djangorestframework -certifi==2023.7.22 +certifi==2024.7.4 # via signxml -cffi==1.15.1 +cffi==1.16.0 # via cryptography cryptography==42.0.8 # via @@ -36,13 +36,13 @@ djangorestframework==3.15.2 # via -r requirements.in importlib-metadata==7.1.0 # via -r requirements.in -importlib-resources==6.1.0 +importlib-resources==6.4.0 # via # jsonschema # jsonschema-specifications jsonschema==4.22.0 # via -r requirements.in -jsonschema-specifications==2023.7.1 +jsonschema-specifications==2023.12.1 # via jsonschema lxml==5.2.1 # via @@ -50,11 +50,11 @@ lxml==5.2.1 # signxml marshmallow==3.21.1 # via -r requirements.in -packaging==23.1 +packaging==24.1 # via marshmallow pkgutil-resolve-name==1.3.10 # via jsonschema -pycparser==2.20 +pycparser==2.22 # via cffi pydantic==2.7.2 # via -r requirements.in @@ -66,11 +66,11 @@ pyopenssl==24.1.0 # signxml pytz==2024.1 # via -r requirements.in -referencing==0.30.2 +referencing==0.35.1 # via # jsonschema # jsonschema-specifications -rpds-py==0.10.6 +rpds-py==0.19.0 # via # jsonschema # referencing @@ -78,13 +78,13 @@ signxml==3.2.2 # via -r requirements.in sqlparse==0.5.0 # via django -typing-extensions==4.7.1 +typing-extensions==4.12.2 # via # annotated-types # asgiref # pydantic # pydantic-core -zipp==3.8.1 +zipp==3.19.2 # via # importlib-metadata # importlib-resources From 03936c335609d7e92d82723507bf1f49dcb94c93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:06:41 +0000 Subject: [PATCH 11/16] chore: Bump marshmallow from 3.21.1 to 3.21.3 Bumps [marshmallow](https://github.com/marshmallow-code/marshmallow) from 3.21.1 to 3.21.3. - [Changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst) - [Commits](https://github.com/marshmallow-code/marshmallow/compare/3.21.1...3.21.3) --- updated-dependencies: - dependency-name: marshmallow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index c00988e3..ef77e489 100644 --- a/requirements.in +++ b/requirements.in @@ -13,7 +13,7 @@ djangorestframework>=3.10.3,<3.16 importlib-metadata==7.1.0 jsonschema==4.22.0 lxml==5.2.1 -marshmallow==3.21.1 +marshmallow==3.21.3 pydantic==2.7.2 pyOpenSSL==24.1.0 pytz==2024.1 diff --git a/requirements.txt b/requirements.txt index 72961131..b9254eaf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -48,7 +48,7 @@ lxml==5.2.1 # via # -r requirements.in # signxml -marshmallow==3.21.1 +marshmallow==3.21.3 # via -r requirements.in packaging==24.1 # via marshmallow From c6f80b141eda4bf0fcf2ea1ded12fabb8ca0032a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 16:10:18 +0000 Subject: [PATCH 12/16] chore: Bump lxml from 5.2.1 to 5.2.2 Bumps [lxml](https://github.com/lxml/lxml) from 5.2.1 to 5.2.2. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](https://github.com/lxml/lxml/compare/lxml-5.2.1...lxml-5.2.2) --- updated-dependencies: - dependency-name: lxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index ef77e489..e4c2266c 100644 --- a/requirements.in +++ b/requirements.in @@ -12,7 +12,7 @@ Django>=2.2.24 djangorestframework>=3.10.3,<3.16 importlib-metadata==7.1.0 jsonschema==4.22.0 -lxml==5.2.1 +lxml==5.2.2 marshmallow==3.21.3 pydantic==2.7.2 pyOpenSSL==24.1.0 diff --git a/requirements.txt b/requirements.txt index b9254eaf..851fb122 100644 --- a/requirements.txt +++ b/requirements.txt @@ -44,7 +44,7 @@ jsonschema==4.22.0 # via -r requirements.in jsonschema-specifications==2023.12.1 # via jsonschema -lxml==5.2.1 +lxml==5.2.2 # via # -r requirements.in # signxml From 54b64faf44ea3fb307703599595a4f9237a898d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:11:38 +0000 Subject: [PATCH 13/16] chore: Bump the development-dependencies group with 6 updates Bumps the development-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [coverage](https://github.com/nedbat/coveragepy) | `7.5.3` | `7.5.4` | | [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.1.0` | | [mypy](https://github.com/python/mypy) | `1.10.0` | `1.10.1` | | [tox](https://github.com/tox-dev/tox) | `4.11.4` | `4.16.0` | | [twine](https://github.com/pypa/twine) | `5.1.0` | `5.1.1` | | [types-jsonschema](https://github.com/python/typeshed) | `4.22.0.20240501` | `4.22.0.20240610` | Updates `coverage` from 7.5.3 to 7.5.4 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](https://github.com/nedbat/coveragepy/compare/7.5.3...7.5.4) Updates `flake8` from 7.0.0 to 7.1.0 - [Commits](https://github.com/pycqa/flake8/compare/7.0.0...7.1.0) Updates `mypy` from 1.10.0 to 1.10.1 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.10.0...v1.10.1) Updates `tox` from 4.11.4 to 4.16.0 - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst) - [Commits](https://github.com/tox-dev/tox/compare/4.11.4...4.16.0) Updates `twine` from 5.1.0 to 5.1.1 - [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/5.1.0...v5.1.1) Updates `types-jsonschema` from 4.22.0.20240501 to 4.22.0.20240610 - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: flake8 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: tox dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: twine dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: types-jsonschema dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] --- requirements-dev.in | 12 ++++++------ requirements-dev.txt | 26 +++++++++++++------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/requirements-dev.in b/requirements-dev.in index 5ec16184..128cfa57 100644 --- a/requirements-dev.in +++ b/requirements-dev.in @@ -6,14 +6,14 @@ black==24.4.2 bumpversion==0.5.3 -coverage==7.5.3 -flake8==7.0.0 +coverage==7.5.4 +flake8==7.1.0 isort==5.13.2 -mypy==1.10.0 +mypy==1.10.1 pip-tools==7.4.1 -tox==4.11.4 -twine==5.1.0 -types-jsonschema==4.22.0.20240501 +tox==4.16.0 +twine==5.1.1 +types-jsonschema==4.22.0.20240610 types-pyOpenSSL==24.1.0.20240425 types-pytz==2024.1.0.20240417 wheel==0.43.0 diff --git a/requirements-dev.txt b/requirements-dev.txt index 83eeb32d..14bd2108 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -16,7 +16,7 @@ build==1.0.3 # via pip-tools bumpversion==0.5.3 # via -r requirements-dev.in -cachetools==5.3.1 +cachetools==5.3.3 # via tox certifi==2024.7.4 # via @@ -36,7 +36,7 @@ click==8.0.3 # pip-tools colorama==0.4.6 # via tox -coverage==7.5.3 +coverage==7.5.4 # via -r requirements-dev.in cryptography==42.0.8 # via @@ -47,11 +47,11 @@ distlib==0.3.7 # via virtualenv docutils==0.19 # via readme-renderer -filelock==3.12.4 +filelock==3.15.4 # via # tox # virtualenv -flake8==7.0.0 +flake8==7.1.0 # via -r requirements-dev.in idna==3.7 # via requests @@ -74,7 +74,7 @@ mccabe==0.7.0 # via flake8 mdurl==0.1.2 # via markdown-it-py -mypy==1.10.0 +mypy==1.10.1 # via -r requirements-dev.in mypy-extensions==1.0.0 # via @@ -93,14 +93,14 @@ pip-tools==7.4.1 # via -r requirements-dev.in pkginfo==1.8.3 # via twine -platformdirs==3.11.0 +platformdirs==4.2.2 # via # black # tox # virtualenv -pluggy==1.3.0 +pluggy==1.5.0 # via tox -pycodestyle==2.11.0 +pycodestyle==2.12.0 # via flake8 pycparser==2.22 # via @@ -112,7 +112,7 @@ pygments==2.15.0 # via # readme-renderer # rich -pyproject-api==1.6.1 +pyproject-api==1.7.1 # via tox pyproject-hooks==1.0.0 # via @@ -151,13 +151,13 @@ tomli==2.0.1 # pyproject-api # pyproject-hooks # tox -tox==4.11.4 +tox==4.16.0 # via -r requirements-dev.in -twine==5.1.0 +twine==5.1.1 # via -r requirements-dev.in types-cffi==1.16.0.20240331 # via types-pyopenssl -types-jsonschema==4.22.0.20240501 +types-jsonschema==4.22.0.20240610 # via -r requirements-dev.in types-pyopenssl==24.1.0.20240425 # via -r requirements-dev.in @@ -175,7 +175,7 @@ urllib3==1.26.19 # via # requests # twine -virtualenv==20.24.5 +virtualenv==20.26.3 # via tox webencodings==0.5.1 # via bleach From aa673af6049232f98259a488efa3c9764d1b1f0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 16:06:17 +0000 Subject: [PATCH 14/16] chore: Bump the production-dependencies group with 6 updates Bumps the production-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.6` | `4.1.7` | | [actions/setup-python](https://github.com/actions/setup-python) | `5.1.0` | `5.1.1` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4.4.1` | `4.5.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.3` | `4.3.4` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `4.3.2` | `4.3.3` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.7` | `4.1.8` | Updates `actions/checkout` from 4.1.6 to 4.1.7 - [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/v4.1.6...v4.1.7) Updates `actions/setup-python` from 5.1.0 to 5.1.1 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5.1.0...v5.1.1) Updates `codecov/codecov-action` from 4.4.1 to 4.5.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.4.1...v4.5.0) Updates `actions/upload-artifact` from 4.3.3 to 4.3.4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.3...v4.3.4) Updates `actions/dependency-review-action` from 4.3.2 to 4.3.3 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/v4.3.2...v4.3.3) Updates `actions/download-artifact` from 4.1.7 to 4.1.8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.7...v4.1.8) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 12 ++++++------ .github/workflows/dependency-review.yaml | 4 ++-- .github/workflows/deploy.yaml | 6 +++--- .github/workflows/release.yaml | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 31665b17..f4e86776 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,10 +34,10 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 - name: Set Up Python ${{ matrix.python_version }} - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: "${{ matrix.python_version }}" @@ -75,10 +75,10 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 - name: Set Up Python ${{ matrix.python_version }} - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: "${{ matrix.python_version }}" @@ -122,7 +122,7 @@ jobs: make test-coverage-report - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.4.1 + uses: codecov/codecov-action@v4.5.0 with: token: ${{ secrets.CODECOV_TOKEN }} directory: ./test-reports/coverage/ @@ -137,7 +137,7 @@ jobs: - name: Store Artifacts if: ${{ always() }} - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.3.4 with: name: test_reports_${{ matrix.python_version }} path: test-reports/ diff --git a/.github/workflows/dependency-review.yaml b/.github/workflows/dependency-review.yaml index 14aaf55f..865a3540 100644 --- a/.github/workflows/dependency-review.yaml +++ b/.github/workflows/dependency-review.yaml @@ -21,9 +21,9 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 - name: Dependency Review - uses: actions/dependency-review-action@v4.3.2 + uses: actions/dependency-review-action@v4.3.3 with: fail-on-severity: critical diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 2e9f3a56..c234a98e 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -38,11 +38,11 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 - name: Set Up Python id: set_up_python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: "3.10.9" @@ -53,7 +53,7 @@ jobs: key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }} - name: Restore Artifacts (Release) - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4.1.8 with: name: release path: ${{ inputs.artifacts_path }}/ diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 723588d3..a73732aa 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,11 +35,11 @@ jobs: steps: - name: Check Out VCS Repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 - name: Set Up Python id: set_up_python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: "3.10.9" @@ -68,7 +68,7 @@ jobs: make dist - name: Store Artifacts - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.3.4 with: name: release path: ${{ env.ARTIFACTS_PATH }}/ From ddf090a8b4d2b8508149d6dd9d061ef26f75f6f3 Mon Sep 17 00:00:00 2001 From: Felipe Pinto Date: Thu, 11 Jul 2024 13:05:16 -0400 Subject: [PATCH 15/16] chore: Update history for new version --- HISTORY.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 034aba9e..b2f2c8fe 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,22 @@ # History +## 0.30.0 (2024-07-11) + +- (PR #640, 2024-05-20) chore: Bump the production-dependencies group across 1 directory with 5 updates +- (PR #643, 2024-05-30) chore: Bump requests from 2.31.0 to 2.32.2 +- (PR #642, 2024-05-30) chore: Bump pydantic from 2.6.4 to 2.7.2 +- (PR #644, 2024-05-30) chore: Bump the development-dependencies group across 1 directory with 6 updates +- (PR #633, 2024-05-30) chore: Bump jsonschema from 4.21.1 to 4.22.0 +- (PR #648, 2024-06-11) Replace hardcoded versions of Pip and others in Make variables +- (PR #649, 2024-06-11) chore: Bump cryptography from 42.0.5 to 42.0.8 +- (PR #651, 2024-07-10) chore: Bump urllib3 from 1.26.18 to 1.26.19 +- (PR #652, 2024-07-10) chore: Bump djangorestframework from 3.15.1 to 3.15.2 +- (PR #655, 2024-07-10) chore(deps): Update package `zipp` from 3.8.1 to 3.19.2 +- (PR #650, 2024-07-11) chore: Bump marshmallow from 3.21.1 to 3.21.3 +- (PR #646, 2024-07-11) chore: Bump lxml from 5.2.1 to 5.2.2 +- (PR #656, 2024-07-11) chore: Bump the development-dependencies group across 1 directory with 6 updates +- (PR #657, 2024-07-11) chore: Bump the production-dependencies group across 1 directory with 6 updates + ## 0.29.0 (2024-05-15) - (PR #614, 2024-03-26) chore: Bump the production-dependencies group with 4 updates From 6ca093261bdf30470c6b925f6c49c63541a3a04e Mon Sep 17 00:00:00 2001 From: Felipe Pinto Date: Thu, 11 Jul 2024 13:05:36 -0400 Subject: [PATCH 16/16] chore: Bump version from 0.29.0 to 0.30.0 --- .bumpversion.cfg | 2 +- src/cl_sii/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 05e778bf..1cf4ad37 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.29.0 +current_version = 0.30.0 commit = True tag = False message = chore: Bump version from {current_version} to {new_version} diff --git a/src/cl_sii/__init__.py b/src/cl_sii/__init__.py index c5e7b2d0..43751ea9 100644 --- a/src/cl_sii/__init__.py +++ b/src/cl_sii/__init__.py @@ -4,4 +4,4 @@ """ -__version__ = '0.29.0' +__version__ = '0.30.0'