Skip to content

Commit

Permalink
Merge pull request #240 from ds-wizard/release/4.11.0
Browse files Browse the repository at this point in the history
Release 4.11.0
  • Loading branch information
MarekSuchanek authored Oct 1, 2024
2 parents d3420d2 + 6e0616a commit 02f06ba
Show file tree
Hide file tree
Showing 33 changed files with 162 additions and 68 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,36 @@ jobs:
- name: Check typing with MyPy
run: |
mypy --install-types --ignore-missing-imports --check-untyped-defs --non-interactive packages/*/dsw
version:
name: Version consts.py
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Check dsw-data-seeder
run: |
bash scripts/check-version.sh \
packages/dsw-data-seeder/dsw/data_seeder/consts.py \
packages/dsw-data-seeder/pyproject.toml
- name: Check dsw-document-worker
run: |
bash scripts/check-version.sh \
packages/dsw-document-worker/dsw/document_worker/consts.py \
packages/dsw-document-worker/pyproject.toml
- name: Check dsw-mailer
run: |
bash scripts/check-version.sh \
packages/dsw-mailer/dsw/mailer/consts.py \
packages/dsw-mailer/pyproject.toml
- name: Check dsw-tdk
run: |
bash scripts/check-version.sh \
packages/dsw-tdk/dsw/tdk/consts.py \
packages/dsw-tdk/pyproject.toml
5 changes: 5 additions & 0 deletions packages/dsw-command-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [4.11.0]

Released for version consistency with other DSW tools.

## [4.10.6]

Released for version consistency with other DSW tools.
Expand Down Expand Up @@ -268,3 +272,4 @@ Released for version consistency with other DSW tools.
[4.10.4]: /../../tree/v4.10.4
[4.10.5]: /../../tree/v4.10.5
[4.10.6]: /../../tree/v4.10.6
[4.11.0]: /../../tree/v4.11.0
4 changes: 2 additions & 2 deletions packages/dsw-command-queue/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'dsw-command-queue'
version = "4.10.6"
version = "4.11.0"
description = 'Library for working with command queue and persistent commands'
readme = 'README.md'
keywords = ['dsw', 'subscriber', 'publisher', 'database', 'queue', 'processing']
Expand All @@ -26,7 +26,7 @@ requires-python = '>=3.10, <4'
dependencies = [
'func-timeout',
# DSW
"dsw-database==4.10.6",
"dsw-database==4.11.0",
]

[project.urls]
Expand Down
4 changes: 2 additions & 2 deletions packages/dsw-command-queue/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
func_timeout==4.3.5
psycopg==3.2.1
psycopg-binary==3.2.1
psycopg==3.2.2
psycopg-binary==3.2.2
PyYAML==6.0.2
tenacity==9.0.0
typing_extensions==4.12.2
Expand Down
5 changes: 5 additions & 0 deletions packages/dsw-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [4.11.0]

Released for version consistency with other DSW tools.

## [4.10.6]

Released for version consistency with other DSW tools.
Expand Down Expand Up @@ -278,3 +282,4 @@ Released for version consistency with other DSW tools.
[4.10.4]: /../../tree/v4.10.4
[4.10.5]: /../../tree/v4.10.5
[4.10.6]: /../../tree/v4.10.6
[4.11.0]: /../../tree/v4.11.0
2 changes: 1 addition & 1 deletion packages/dsw-config/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'dsw-config'
version = "4.10.6"
version = "4.11.0"
description = 'Library for DSW config manipulation'
readme = 'README.md'
keywords = ['dsw', 'config', 'yaml', 'parser']
Expand Down
6 changes: 3 additions & 3 deletions packages/dsw-config/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
certifi==2024.7.4
certifi==2024.8.30
PyYAML==6.0.2
sentry-sdk==2.13.0
urllib3==2.2.2
sentry-sdk==2.14.0
urllib3==2.2.3
5 changes: 5 additions & 0 deletions packages/dsw-data-seeder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [4.11.0]

Released for version consistency with other DSW tools.

## [4.10.6]

### Fixed
Expand Down Expand Up @@ -328,3 +332,4 @@ Released for version consistency with other DSW tools.
[4.10.4]: /../../tree/v4.10.4
[4.10.5]: /../../tree/v4.10.5
[4.10.6]: /../../tree/v4.10.6
[4.11.0]: /../../tree/v4.11.0
2 changes: 1 addition & 1 deletion packages/dsw-data-seeder/dsw/data_seeder/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
DEFAULT_PLACEHOLDER = '<<|TENANT-ID|>>'
NULL_UUID = '00000000-0000-0000-0000-000000000000'
PROG_NAME = 'dsw-data-seeder'
VERSION = '4.10.6'
VERSION = '4.11.0'

VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
VAR_WORKDIR_PATH = 'WORKDIR_PATH'
Expand Down
10 changes: 5 additions & 5 deletions packages/dsw-data-seeder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'dsw-data-seeder'
version = "4.10.6"
version = "4.11.0"
description = 'Worker for seeding DSW data'
readme = 'README.md'
keywords = ['data', 'database', 'seed', 'storage']
Expand All @@ -29,10 +29,10 @@ dependencies = [
'sentry-sdk',
'tenacity',
# DSW
"dsw-command-queue==4.10.6",
"dsw-config==4.10.6",
"dsw-database==4.10.6",
"dsw-storage==4.10.6",
"dsw-command-queue==4.11.0",
"dsw-config==4.11.0",
"dsw-database==4.11.0",
"dsw-storage==4.11.0",
]

[project.urls]
Expand Down
10 changes: 5 additions & 5 deletions packages/dsw-data-seeder/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
certifi==2024.7.4
certifi==2024.8.30
click==8.1.7
func_timeout==4.3.5
minio==7.2.8
psycopg==3.2.1
psycopg-binary==3.2.1
psycopg==3.2.2
psycopg-binary==3.2.2
python-dateutil==2.9.0
PyYAML==6.0.2
sentry-sdk==2.13.0
sentry-sdk==2.14.0
six==1.16.0
tenacity==9.0.0
typing_extensions==4.12.2
urllib3==2.2.2
urllib3==2.2.3
5 changes: 5 additions & 0 deletions packages/dsw-database/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [4.11.0]

Released for version consistency with other DSW tools.

## [4.10.6]

Released for version consistency with other DSW tools.
Expand Down Expand Up @@ -289,3 +293,4 @@ Released for version consistency with other DSW tools.
[4.10.4]: /../../tree/v4.10.4
[4.10.5]: /../../tree/v4.10.5
[4.10.6]: /../../tree/v4.10.6
[4.11.0]: /../../tree/v4.11.0
4 changes: 2 additions & 2 deletions packages/dsw-database/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'dsw-database'
version = "4.10.6"
version = "4.11.0"
description = 'Library for managing DSW database'
readme = 'README.md'
keywords = ['dsw', 'database']
Expand All @@ -26,7 +26,7 @@ dependencies = [
'psycopg[binary]',
'tenacity',
# DSW
"dsw-config==4.10.6",
"dsw-config==4.11.0",
]

[project.urls]
Expand Down
4 changes: 2 additions & 2 deletions packages/dsw-database/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
psycopg==3.2.1
psycopg-binary==3.2.1
psycopg==3.2.2
psycopg-binary==3.2.2
PyYAML==6.0.2
tenacity==9.0.0
typing_extensions==4.12.2
Expand Down
5 changes: 5 additions & 0 deletions packages/dsw-document-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [4.11.0]

Released for version consistency with other DSW tools.

## [4.10.6]

### Fixed
Expand Down Expand Up @@ -350,3 +354,4 @@ Released for version consistency with other DSW tools.
[4.10.4]: /../../tree/v4.10.4
[4.10.5]: /../../tree/v4.10.5
[4.10.6]: /../../tree/v4.10.6
[4.11.0]: /../../tree/v4.11.0
2 changes: 1 addition & 1 deletion packages/dsw-document-worker/dsw/document_worker/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
EXIT_SUCCESS = 0
NULL_UUID = '00000000-0000-0000-0000-000000000000'
PROG_NAME = 'docworker'
VERSION = '4.10.6'
VERSION = '4.11.0'

VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
VAR_WORKDIR_PATH = 'WORKDIR_PATH'
Expand Down
10 changes: 5 additions & 5 deletions packages/dsw-document-worker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'dsw-document-worker'
version = "4.10.6"
version = "4.11.0"
description = 'Worker for assembling and transforming documents'
readme = 'README.md'
keywords = ['documents', 'generation', 'jinja2', 'pandoc', 'worker']
Expand Down Expand Up @@ -38,10 +38,10 @@ dependencies = [
'weasyprint',
'XlsxWriter',
# DSW
"dsw-command-queue==4.10.6",
"dsw-config==4.10.6",
"dsw-database==4.10.6",
"dsw-storage==4.10.6",
"dsw-command-queue==4.11.0",
"dsw-config==4.11.0",
"dsw-database==4.11.0",
"dsw-storage==4.11.0",
]

[project.urls]
Expand Down
14 changes: 7 additions & 7 deletions packages/dsw-document-worker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Brotli==1.1.0
certifi==2024.7.4
cffi==1.17.0
certifi==2024.8.30
cffi==1.17.1
charset-normalizer==3.3.2
click==8.1.7
cssselect2==0.7.0
fonttools==4.53.1
func_timeout==4.3.5
html5lib==1.1
idna==3.8
idna==3.10
isodate==0.6.1
Jinja2==3.1.4
Markdown==3.7
Expand All @@ -16,8 +16,8 @@ minio==7.2.8
panflute==2.3.1
pathvalidate==3.2.1
Pillow==10.4.0
psycopg==3.2.1
psycopg-binary==3.2.1
psycopg==3.2.2
psycopg-binary==3.2.2
pycparser==2.22
pydyf==0.10.0
pyparsing==3.1.4
Expand All @@ -28,13 +28,13 @@ PyYAML==6.0.2
rdflib==7.0.0
rdflib-jsonld==0.6.2
requests==2.32.3
sentry-sdk==2.13.0
sentry-sdk==2.14.0
six==1.16.0
tenacity==9.0.0
text-unidecode==1.3
tinycss2==1.3.0
typing_extensions==4.12.2
urllib3==2.2.2
urllib3==2.2.3
weasyprint==60.2
webencodings==0.5.1
XlsxWriter==3.2.0
Expand Down
5 changes: 5 additions & 0 deletions packages/dsw-mailer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [4.11.0]

Released for version consistency with other DSW tools.

## [4.10.6]

Released for version consistency with other DSW tools.
Expand Down Expand Up @@ -304,3 +308,4 @@ Released for version consistency with other DSW tools.
[4.10.4]: /../../tree/v4.10.4
[4.10.5]: /../../tree/v4.10.5
[4.10.6]: /../../tree/v4.10.6
[4.11.0]: /../../tree/v4.11.0
2 changes: 1 addition & 1 deletion packages/dsw-mailer/dsw/mailer/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
DEFAULT_ENCODING = 'utf-8'
NULL_UUID = '00000000-0000-0000-0000-000000000000'
PROG_NAME = 'dsw-mailer'
VERSION = '4.10.6'
VERSION = '4.11.0'

VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
VAR_WORKDIR_PATH = 'WORKDIR_PATH'
8 changes: 4 additions & 4 deletions packages/dsw-mailer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'dsw-mailer'
version = "4.10.6"
version = "4.11.0"
description = 'Worker for sending email notifications'
readme = 'README.md'
keywords = ['email', 'jinja2', 'notification', 'template']
Expand Down Expand Up @@ -33,9 +33,9 @@ dependencies = [
'sentry-sdk',
'tenacity',
# DSW
"dsw-command-queue==4.10.6",
"dsw-config==4.10.6",
"dsw-database==4.10.6",
"dsw-command-queue==4.11.0",
"dsw-config==4.11.0",
"dsw-database==4.11.0",
]

[project.urls]
Expand Down
10 changes: 5 additions & 5 deletions packages/dsw-mailer/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
boto3==1.34.139
botocore==1.34.139
certifi==2024.7.4
certifi==2024.8.30
click==8.1.7
dkimpy==1.1.8
dnspython==2.6.1
Expand All @@ -10,14 +10,14 @@ Markdown==3.7
jmespath==1.0.1
MarkupSafe==2.1.5
pathvalidate==3.2.1
psycopg==3.2.1
psycopg-binary==3.2.1
psycopg==3.2.2
psycopg-binary==3.2.2
python-dateutil==2.9.0
PyYAML==6.0.2
s3transfer==0.10.2
sentry-sdk==2.13.0
sentry-sdk==2.14.0
six==1.16.0
tenacity==9.0.0
typing_extensions==4.12.2
tzdata==2024.1
urllib3==2.2.2
urllib3==2.2.3
Loading

0 comments on commit 02f06ba

Please sign in to comment.