Skip to content

Commit a53c4bc

Browse files
Merge pull request #744 from cordada/deploy/v0.39.0
Deploy release v0.39.0
2 parents 7d78adf + d750fe3 commit a53c4bc

18 files changed

+194
-112
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.38.0
2+
current_version = 0.39.0
33
commit = True
44
tag = False
55
message = chore: Bump version from {current_version} to {new_version}

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ jobs:
3434

3535
steps:
3636
- name: Check Out VCS Repository
37-
uses: actions/[email protected].0
37+
uses: actions/[email protected].2
3838

3939
- name: Set Up Python ${{ matrix.python_version }}
40-
uses: actions/setup-python@v5.2.0
40+
uses: actions/setup-python@v5.3.0
4141
with:
4242
python-version: "${{ matrix.python_version }}"
4343

4444
- name: Create Python Virtual Environment
4545
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4646

4747
- name: Restoring/Saving Cache
48-
uses: actions/cache@v4.0.2
48+
uses: actions/cache@v4.1.2
4949
with:
5050
path: "venv"
5151
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -75,15 +75,15 @@ jobs:
7575

7676
steps:
7777
- name: Check Out VCS Repository
78-
uses: actions/[email protected].0
78+
uses: actions/[email protected].2
7979

8080
- name: Set Up Python ${{ matrix.python_version }}
81-
uses: actions/setup-python@v5.2.0
81+
uses: actions/setup-python@v5.3.0
8282
with:
8383
python-version: "${{ matrix.python_version }}"
8484

8585
- name: Restoring/Saving Cache
86-
uses: actions/cache@v4.0.2
86+
uses: actions/cache@v4.1.2
8787
with:
8888
path: "venv"
8989
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -122,7 +122,7 @@ jobs:
122122
make test-coverage-report
123123
124124
- name: Upload coverage reports to Codecov
125-
uses: codecov/codecov-action@v4.5.0
125+
uses: codecov/codecov-action@v5.0.7
126126
with:
127127
token: ${{ secrets.CODECOV_TOKEN }}
128128
directory: ./test-reports/coverage/
@@ -137,7 +137,7 @@ jobs:
137137
138138
- name: Store Artifacts
139139
if: ${{ always() }}
140-
uses: actions/[email protected].0
140+
uses: actions/[email protected].3
141141
with:
142142
name: test_reports_${{ matrix.python_version }}
143143
path: test-reports/

.github/workflows/dependency-review.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121

2222
steps:
2323
- name: Check Out VCS Repository
24-
uses: actions/[email protected].0
24+
uses: actions/[email protected].2
2525

2626
- name: Dependency Review
27-
uses: actions/dependency-review-action@v4.3.4
27+
uses: actions/dependency-review-action@v4.5.0
2828
with:
2929
fail-on-severity: critical

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ jobs:
3838

3939
steps:
4040
- name: Check Out VCS Repository
41-
uses: actions/[email protected].0
41+
uses: actions/[email protected].2
4242

4343
- name: Set Up Python
4444
id: set_up_python
45-
uses: actions/setup-python@v5.2.0
45+
uses: actions/setup-python@v5.3.0
4646
with:
4747
python-version: "3.10.9"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/cache@v4.0.2
50+
uses: actions/cache@v4.1.2
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535

3636
steps:
3737
- name: Check Out VCS Repository
38-
uses: actions/[email protected].0
38+
uses: actions/[email protected].2
3939

4040
- name: Set Up Python
4141
id: set_up_python
42-
uses: actions/setup-python@v5.2.0
42+
uses: actions/setup-python@v5.3.0
4343
with:
4444
python-version: "3.10.9"
4545

4646
- name: Create Python Virtual Environment
4747
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/cache@v4.0.2
50+
uses: actions/cache@v4.1.2
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -68,7 +68,7 @@ jobs:
6868
make dist
6969
7070
- name: Store Artifacts
71-
uses: actions/[email protected].0
71+
uses: actions/[email protected].3
7272
with:
7373
name: release
7474
path: ${{ env.ARTIFACTS_PATH }}/

HISTORY.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# History
22

3+
## 0.39.0 (2024-12-12)
4+
5+
- (PR #729, 2024-10-30) extras: Fix serialization of `None` in Pydantic `Rut` type
6+
- (PR #730, 2024-11-19) chore: Bump the production-dependencies group with 6 updates
7+
- (PR #733, 2024-11-20) chore: Bump the development-dependencies group across 1 directory with 5 updates
8+
- (PR #734, 2024-12-05) chore: Bump the production-dependencies group with 2 updates
9+
- (PR #732, 2024-12-05) chore(deps): Bump cryptography from 43.0.1 to 43.0.3
10+
- (PR #739, 2024-12-09) chore(deps): Bump pydantic from 2.9.2 to 2.10.3
11+
- (PR #740, 2024-12-09) chore(deps): Bump django from 4.2.16 to 4.2.17
12+
- (PR #736, 2024-12-12) chore(deps): Bump signxml from 3.2.2 to 4.0.3
13+
- (PR #742, 2024-12-12) deps: Update cryptography to 44.0.0 and pyopenssl to 24.3.0
14+
315
## 0.38.0 (2024-10-28)
416

517
- (PR #725, 2024-10-28) extras: Fix generation of JSON Schema for Pydantic `Rut` type

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[build-system]
1212
requires = [
1313
"setuptools==70.3.0",
14-
"wheel==0.44.0",
14+
"wheel==0.45.0",
1515
]
1616
build-backend = "setuptools.build_meta"
1717

@@ -26,7 +26,7 @@ dependencies = [
2626
"pydantic>=2.3.0,!=1.7.*,!=1.8.*,!=1.9.*",
2727
"pyOpenSSL>=22.0.0",
2828
"pytz>=2019.3",
29-
"signxml>=3.1.0",
29+
"signxml>=4.0.0",
3030
]
3131
requires-python = ">=3.8, <3.11"
3232
authors = [

requirements-dev.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
-c requirements.txt
66

77
black==24.8.0
8-
build==1.2.2
8+
build==1.2.2.post1
99
bumpversion==0.5.3
1010
coverage==7.6.1
1111
flake8==7.1.1
1212
isort==5.13.2
1313
mypy==1.13.0
1414
pip-tools==7.4.1
15-
tox==4.21.0
15+
tox==4.23.2
1616
twine==5.1.1
1717
types-jsonschema==4.23.0.20240813
18-
types-lxml==2024.9.16
18+
types-lxml==2024.11.8
1919
types-pyOpenSSL==24.1.0.20240722
20-
types-pytz==2024.2.0.20240913
21-
wheel==0.44.0
20+
types-pytz==2024.2.0.20241003
21+
wheel==0.45.0

requirements-dev.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ black==24.8.0
1212
# via -r requirements-dev.in
1313
bleach==5.0.1
1414
# via readme-renderer
15-
build==1.2.2
15+
build==1.2.2.post1
1616
# via
1717
# -r requirements-dev.in
1818
# pip-tools
@@ -40,7 +40,7 @@ colorama==0.4.6
4040
# via tox
4141
coverage==7.6.1
4242
# via -r requirements-dev.in
43-
cryptography==43.0.1
43+
cryptography==44.0.0
4444
# via
4545
# -c requirements.txt
4646
# secretstorage
@@ -155,7 +155,7 @@ tomli==2.0.1
155155
# pyproject-api
156156
# pyproject-hooks
157157
# tox
158-
tox==4.21.0
158+
tox==4.23.2
159159
# via -r requirements-dev.in
160160
twine==5.1.1
161161
# via -r requirements-dev.in
@@ -167,11 +167,11 @@ types-html5lib==1.1.11.20240806
167167
# via types-beautifulsoup4
168168
types-jsonschema==4.23.0.20240813
169169
# via -r requirements-dev.in
170-
types-lxml==2024.9.16
170+
types-lxml==2024.11.8
171171
# via -r requirements-dev.in
172172
types-pyopenssl==24.1.0.20240722
173173
# via -r requirements-dev.in
174-
types-pytz==2024.2.0.20240913
174+
types-pytz==2024.2.0.20241003
175175
# via -r requirements-dev.in
176176
types-setuptools==69.5.0.20240415
177177
# via types-cffi
@@ -191,7 +191,7 @@ virtualenv==20.26.6
191191
# via tox
192192
webencodings==0.5.1
193193
# via bleach
194-
wheel==0.44.0
194+
wheel==0.45.0
195195
# via
196196
# -r requirements-dev.in
197197
# pip-tools

requirements.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# git+https://github.com/example/example.git@example-vcs-ref#egg=example-pkg[foo,bar]==1.42.3
77

88
backports-zoneinfo==0.2.1 ; python_version < "3.9" # Used by `djangorestframework`.
9-
cryptography==43.0.1
9+
cryptography==44.0.0
1010
defusedxml==0.7.1
1111
django-filter>=24.2
1212
Django>=2.2.24
@@ -15,7 +15,7 @@ importlib-metadata==8.5.0
1515
jsonschema==4.23.0
1616
lxml==5.3.0
1717
marshmallow==3.22.0
18-
pydantic==2.9.2
19-
pyOpenSSL==24.2.1
18+
pydantic==2.10.3
19+
pyOpenSSL==24.3.0
2020
pytz==2024.2
21-
signxml==3.2.2
21+
signxml==4.0.3

0 commit comments

Comments
 (0)