Skip to content

Commit ed2a8b4

Browse files
Merge pull request #264 from ds-wizard/release/4.16.0
Release 4.16.0
2 parents 0624f1a + 5b7c746 commit ed2a8b4

34 files changed

+112
-67
lines changed

packages/dsw-command-queue/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88
## [Unreleased]
99

1010

11+
## [4.16.0]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.15.0]
1216

1317
Released for version consistency with other DSW tools.
@@ -296,3 +300,4 @@ Released for version consistency with other DSW tools.
296300
[4.13.0]: /../../tree/v4.13.0
297301
[4.14.0]: /../../tree/v4.14.0
298302
[4.15.0]: /../../tree/v4.15.0
303+
[4.16.0]: /../../tree/v4.16.0

packages/dsw-command-queue/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-command-queue'
7-
version = "4.15.0"
7+
version = "4.16.0"
88
description = 'Library for working with command queue and persistent commands'
99
readme = 'README.md'
1010
keywords = ['dsw', 'subscriber', 'publisher', 'database', 'queue', 'processing']
@@ -26,7 +26,7 @@ requires-python = '>=3.11, <4'
2626
dependencies = [
2727
'func-timeout',
2828
# DSW
29-
"dsw-database==4.15.0",
29+
"dsw-database==4.16.0",
3030
]
3131

3232
[project.urls]

packages/dsw-config/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88
## [Unreleased]
99

1010

11+
## [4.16.0]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.15.0]
1216

1317
Released for version consistency with other DSW tools.
@@ -303,3 +307,4 @@ Released for version consistency with other DSW tools.
303307
[4.13.0]: /../../tree/v4.13.0
304308
[4.14.0]: /../../tree/v4.14.0
305309
[4.15.0]: /../../tree/v4.15.0
310+
[4.16.0]: /../../tree/v4.16.0

packages/dsw-config/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-config'
7-
version = "4.15.0"
7+
version = "4.16.0"
88
description = 'Library for DSW config manipulation'
99
readme = 'README.md'
1010
keywords = ['dsw', 'config', 'yaml', 'parser']
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
certifi==2024.12.14
1+
certifi==2025.1.31
22
PyYAML==6.0.2
3-
sentry-sdk==2.20.0
3+
sentry-sdk==2.22.0
44
urllib3==2.3.0

packages/dsw-data-seeder/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88
## [Unreleased]
99

1010

11+
## [4.16.0]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.15.0]
1216

1317
### Fixed
@@ -358,3 +362,4 @@ Released for version consistency with other DSW tools.
358362
[4.13.0]: /../../tree/v4.13.0
359363
[4.14.0]: /../../tree/v4.14.0
360364
[4.15.0]: /../../tree/v4.15.0
365+
[4.16.0]: /../../tree/v4.16.0

packages/dsw-data-seeder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM datastewardshipwizard/python-base:4.15.0-basic AS builder
1+
FROM datastewardshipwizard/python-base:4.16.0-basic AS builder
22

33
WORKDIR /app
44

@@ -15,7 +15,7 @@ RUN python -m pip wheel --no-cache-dir --wheel-dir=/app/wheels -r /app/packages/
1515
&& python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-data-seeder
1616

1717

18-
FROM datastewardshipwizard/python-base:4.15.0-basic
18+
FROM datastewardshipwizard/python-base:4.16.0-basic
1919

2020
ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \
2121
WORKDIR_PATH=/home/user/data \

packages/dsw-data-seeder/dsw/data_seeder/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
DEFAULT_PLACEHOLDER = '<<|TENANT-ID|>>'
77
NULL_UUID = '00000000-0000-0000-0000-000000000000'
88
PROG_NAME = 'dsw-data-seeder'
9-
VERSION = '4.15.0'
9+
VERSION = '4.16.0'
1010

1111
VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
1212
VAR_WORKDIR_PATH = 'WORKDIR_PATH'

packages/dsw-data-seeder/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-data-seeder'
7-
version = "4.15.0"
7+
version = "4.16.0"
88
description = 'Worker for seeding DSW data'
99
readme = 'README.md'
1010
keywords = ['data', 'database', 'seed', 'storage']
@@ -29,10 +29,10 @@ dependencies = [
2929
'sentry-sdk',
3030
'tenacity',
3131
# DSW
32-
"dsw-command-queue==4.15.0",
33-
"dsw-config==4.15.0",
34-
"dsw-database==4.15.0",
35-
"dsw-storage==4.15.0",
32+
"dsw-command-queue==4.16.0",
33+
"dsw-config==4.16.0",
34+
"dsw-database==4.16.0",
35+
"dsw-storage==4.16.0",
3636
]
3737

3838
[project.urls]

packages/dsw-data-seeder/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
argon2-cffi==23.1.0
22
argon2-cffi-bindings==21.2.0
3-
certifi==2024.12.14
3+
certifi==2025.1.31
44
cffi==1.17.1
55
click==8.1.8
66
func_timeout==4.3.5
@@ -11,7 +11,7 @@ pycparser==2.22
1111
pycryptodome==3.21.0
1212
python-dateutil==2.9.0.post0
1313
PyYAML==6.0.2
14-
sentry-sdk==2.20.0
14+
sentry-sdk==2.22.0
1515
six==1.17.0
1616
tenacity==9.0.0
1717
typing_extensions==4.12.2

0 commit comments

Comments
 (0)