From 0f71834e877f1fd9352703cdb6017b40be824a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Such=C3=A1nek?= Date: Mon, 16 Sep 2024 13:46:50 +0200 Subject: [PATCH] Hotfix 4.9.6 --- packages/dsw-command-queue/CHANGELOG.md | 5 +++++ packages/dsw-command-queue/pyproject.toml | 4 ++-- packages/dsw-config/CHANGELOG.md | 5 +++++ packages/dsw-config/pyproject.toml | 2 +- packages/dsw-data-seeder/CHANGELOG.md | 5 ++++- packages/dsw-data-seeder/dsw/data_seeder/consts.py | 2 +- packages/dsw-data-seeder/pyproject.toml | 10 +++++----- packages/dsw-database/CHANGELOG.md | 5 +++++ packages/dsw-database/pyproject.toml | 4 ++-- packages/dsw-document-worker/CHANGELOG.md | 5 ++++- .../dsw-document-worker/dsw/document_worker/consts.py | 2 +- packages/dsw-document-worker/pyproject.toml | 10 +++++----- packages/dsw-mailer/CHANGELOG.md | 5 +++++ packages/dsw-mailer/dsw/mailer/consts.py | 2 +- packages/dsw-mailer/pyproject.toml | 8 ++++---- packages/dsw-models/CHANGELOG.md | 5 +++++ packages/dsw-models/pyproject.toml | 2 +- packages/dsw-storage/CHANGELOG.md | 5 +++++ packages/dsw-storage/pyproject.toml | 4 ++-- packages/dsw-tdk/CHANGELOG.md | 5 +++++ packages/dsw-tdk/dsw/tdk/consts.py | 2 +- packages/dsw-tdk/pyproject.toml | 2 +- 22 files changed, 70 insertions(+), 29 deletions(-) diff --git a/packages/dsw-command-queue/CHANGELOG.md b/packages/dsw-command-queue/CHANGELOG.md index 84d2bbc..e5766ba 100644 --- a/packages/dsw-command-queue/CHANGELOG.md +++ b/packages/dsw-command-queue/CHANGELOG.md @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] ### Fixed @@ -253,3 +257,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-command-queue/pyproject.toml b/packages/dsw-command-queue/pyproject.toml index b4416cd..d60bbb8 100644 --- a/packages/dsw-command-queue/pyproject.toml +++ b/packages/dsw-command-queue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-command-queue' -version = "4.9.5" +version = "4.9.6" description = 'Library for working with command queue and persistent commands' readme = 'README.md' keywords = ['dsw', 'subscriber', 'publisher', 'database', 'queue', 'processing'] @@ -26,7 +26,7 @@ requires-python = '>=3.10, <4' dependencies = [ 'func-timeout', # DSW - "dsw-database==4.9.5", + "dsw-database==4.9.6", ] [project.urls] diff --git a/packages/dsw-config/CHANGELOG.md b/packages/dsw-config/CHANGELOG.md index a8c1335..8a27331 100644 --- a/packages/dsw-config/CHANGELOG.md +++ b/packages/dsw-config/CHANGELOG.md @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] Released for version consistency with other DSW tools. @@ -263,3 +267,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-config/pyproject.toml b/packages/dsw-config/pyproject.toml index 25e295c..a99c853 100644 --- a/packages/dsw-config/pyproject.toml +++ b/packages/dsw-config/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-config' -version = "4.9.5" +version = "4.9.6" description = 'Library for DSW config manipulation' readme = 'README.md' keywords = ['dsw', 'config', 'yaml', 'parser'] diff --git a/packages/dsw-data-seeder/CHANGELOG.md b/packages/dsw-data-seeder/CHANGELOG.md index 86a9392..f5fe1f2 100644 --- a/packages/dsw-data-seeder/CHANGELOG.md +++ b/packages/dsw-data-seeder/CHANGELOG.md @@ -7,11 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [4.9.6] + ### Fixed - Fixed database configuration - ## [4.9.5] ### Fixed @@ -315,3 +317,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-data-seeder/dsw/data_seeder/consts.py b/packages/dsw-data-seeder/dsw/data_seeder/consts.py index 30be7f9..fe3eb8e 100644 --- a/packages/dsw-data-seeder/dsw/data_seeder/consts.py +++ b/packages/dsw-data-seeder/dsw/data_seeder/consts.py @@ -6,7 +6,7 @@ DEFAULT_PLACEHOLDER = '<<|TENANT-ID|>>' NULL_UUID = '00000000-0000-0000-0000-000000000000' PROG_NAME = 'dsw-data-seeder' -VERSION = '4.9.5' +VERSION = '4.9.6' VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH' VAR_WORKDIR_PATH = 'WORKDIR_PATH' diff --git a/packages/dsw-data-seeder/pyproject.toml b/packages/dsw-data-seeder/pyproject.toml index b8f3d29..4a2a775 100644 --- a/packages/dsw-data-seeder/pyproject.toml +++ b/packages/dsw-data-seeder/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-data-seeder' -version = "4.9.5" +version = "4.9.6" description = 'Worker for seeding DSW data' readme = 'README.md' keywords = ['data', 'database', 'seed', 'storage'] @@ -29,10 +29,10 @@ dependencies = [ 'sentry-sdk', 'tenacity', # DSW - "dsw-command-queue==4.9.5", - "dsw-config==4.9.5", - "dsw-database==4.9.5", - "dsw-storage==4.9.5", + "dsw-command-queue==4.9.6", + "dsw-config==4.9.6", + "dsw-database==4.9.6", + "dsw-storage==4.9.6", ] [project.urls] diff --git a/packages/dsw-database/CHANGELOG.md b/packages/dsw-database/CHANGELOG.md index e1e8c06..2e3a913 100644 --- a/packages/dsw-database/CHANGELOG.md +++ b/packages/dsw-database/CHANGELOG.md @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] Released for version consistency with other DSW tools. @@ -274,3 +278,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-database/pyproject.toml b/packages/dsw-database/pyproject.toml index 4af2f4d..38082b2 100644 --- a/packages/dsw-database/pyproject.toml +++ b/packages/dsw-database/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-database' -version = "4.9.5" +version = "4.9.6" description = 'Library for managing DSW database' readme = 'README.md' keywords = ['dsw', 'database'] @@ -26,7 +26,7 @@ dependencies = [ 'psycopg[binary]', 'tenacity', # DSW - "dsw-config==4.9.5", + "dsw-config==4.9.6", ] [project.urls] diff --git a/packages/dsw-document-worker/CHANGELOG.md b/packages/dsw-document-worker/CHANGELOG.md index d359f63..61bac91 100644 --- a/packages/dsw-document-worker/CHANGELOG.md +++ b/packages/dsw-document-worker/CHANGELOG.md @@ -7,11 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [4.9.6] + ### Fixed - Fixed inconsistencies in document context - ## [4.9.5] ### Fixed @@ -333,3 +335,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-document-worker/dsw/document_worker/consts.py b/packages/dsw-document-worker/dsw/document_worker/consts.py index 9681840..50cd7c9 100644 --- a/packages/dsw-document-worker/dsw/document_worker/consts.py +++ b/packages/dsw-document-worker/dsw/document_worker/consts.py @@ -6,7 +6,7 @@ EXIT_SUCCESS = 0 NULL_UUID = '00000000-0000-0000-0000-000000000000' PROG_NAME = 'docworker' -VERSION = '4.9.5' +VERSION = '4.9.6' VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH' VAR_WORKDIR_PATH = 'WORKDIR_PATH' diff --git a/packages/dsw-document-worker/pyproject.toml b/packages/dsw-document-worker/pyproject.toml index 60a49f1..304f5e9 100644 --- a/packages/dsw-document-worker/pyproject.toml +++ b/packages/dsw-document-worker/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-document-worker' -version = "4.9.5" +version = "4.9.6" description = 'Worker for assembling and transforming documents' readme = 'README.md' keywords = ['documents', 'generation', 'jinja2', 'pandoc', 'worker'] @@ -38,10 +38,10 @@ dependencies = [ 'weasyprint', 'XlsxWriter', # DSW - "dsw-command-queue==4.9.5", - "dsw-config==4.9.5", - "dsw-database==4.9.5", - "dsw-storage==4.9.5", + "dsw-command-queue==4.9.6", + "dsw-config==4.9.6", + "dsw-database==4.9.6", + "dsw-storage==4.9.6", ] [project.urls] diff --git a/packages/dsw-mailer/CHANGELOG.md b/packages/dsw-mailer/CHANGELOG.md index f67c690..431c9cc 100644 --- a/packages/dsw-mailer/CHANGELOG.md +++ b/packages/dsw-mailer/CHANGELOG.md @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] ### Fixed @@ -289,3 +293,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-mailer/dsw/mailer/consts.py b/packages/dsw-mailer/dsw/mailer/consts.py index 1e87e06..5a0b798 100644 --- a/packages/dsw-mailer/dsw/mailer/consts.py +++ b/packages/dsw-mailer/dsw/mailer/consts.py @@ -5,7 +5,7 @@ DEFAULT_ENCODING = 'utf-8' NULL_UUID = '00000000-0000-0000-0000-000000000000' PROG_NAME = 'dsw-mailer' -VERSION = '4.9.5' +VERSION = '4.9.6' VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH' VAR_WORKDIR_PATH = 'WORKDIR_PATH' diff --git a/packages/dsw-mailer/pyproject.toml b/packages/dsw-mailer/pyproject.toml index 31528fe..57775b2 100644 --- a/packages/dsw-mailer/pyproject.toml +++ b/packages/dsw-mailer/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-mailer' -version = "4.9.5" +version = "4.9.6" description = 'Worker for sending email notifications' readme = 'README.md' keywords = ['email', 'jinja2', 'notification', 'template'] @@ -33,9 +33,9 @@ dependencies = [ 'sentry-sdk', 'tenacity', # DSW - "dsw-command-queue==4.9.5", - "dsw-config==4.9.5", - "dsw-database==4.9.5", + "dsw-command-queue==4.9.6", + "dsw-config==4.9.6", + "dsw-database==4.9.6", ] [project.urls] diff --git a/packages/dsw-models/CHANGELOG.md b/packages/dsw-models/CHANGELOG.md index a4f8791..9f5f357 100644 --- a/packages/dsw-models/CHANGELOG.md +++ b/packages/dsw-models/CHANGELOG.md @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] Released for version consistency with other DSW tools. @@ -180,3 +184,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-models/pyproject.toml b/packages/dsw-models/pyproject.toml index a4c60e4..fa83b64 100644 --- a/packages/dsw-models/pyproject.toml +++ b/packages/dsw-models/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-models' -version = "4.9.5" +version = "4.9.6" description = 'Library with DSW models and basic IO operations' readme = 'README.md' keywords = ['dsw', 'config', 'yaml', 'parser'] diff --git a/packages/dsw-storage/CHANGELOG.md b/packages/dsw-storage/CHANGELOG.md index 9385fef..0b7994d 100644 --- a/packages/dsw-storage/CHANGELOG.md +++ b/packages/dsw-storage/CHANGELOG.md @@ -8,6 +8,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] Released for version consistency with other DSW tools. @@ -247,3 +251,4 @@ Released for version consistency with other DSW tools. [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-storage/pyproject.toml b/packages/dsw-storage/pyproject.toml index 9082cf6..406355c 100644 --- a/packages/dsw-storage/pyproject.toml +++ b/packages/dsw-storage/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-storage' -version = "4.9.5" +version = "4.9.6" description = 'Library for managing DSW S3 storage' readme = 'README.md' keywords = ['dsw', 's3', 'bucket', 'storage'] @@ -26,7 +26,7 @@ dependencies = [ 'minio', 'tenacity', # DSW - "dsw-config==4.9.5", + "dsw-config==4.9.6", ] [project.urls] diff --git a/packages/dsw-tdk/CHANGELOG.md b/packages/dsw-tdk/CHANGELOG.md index 631064c..0623a50 100644 --- a/packages/dsw-tdk/CHANGELOG.md +++ b/packages/dsw-tdk/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.9.6] + +Released for version consistency with other DSW tools. + ## [4.9.5] Released for version consistency with other DSW tools. @@ -473,3 +477,4 @@ Initial DSW Template Development Kit (versioned as part of the [DSW platform](ht [4.9.3]: /../../tree/v4.9.3 [4.9.4]: /../../tree/v4.9.4 [4.9.5]: /../../tree/v4.9.5 +[4.9.6]: /../../tree/v4.9.6 diff --git a/packages/dsw-tdk/dsw/tdk/consts.py b/packages/dsw-tdk/dsw/tdk/consts.py index 9827e18..87a0089 100644 --- a/packages/dsw-tdk/dsw/tdk/consts.py +++ b/packages/dsw-tdk/dsw/tdk/consts.py @@ -3,7 +3,7 @@ import re APP = 'dsw-tdk' -VERSION = '4.9.5' +VERSION = '4.9.6' METAMODEL_VERSION = 13 REGEX_SEMVER = re.compile(r'^[0-9]+\.[0-9]+\.[0-9]+$') diff --git a/packages/dsw-tdk/pyproject.toml b/packages/dsw-tdk/pyproject.toml index 420b284..0fe2f52 100644 --- a/packages/dsw-tdk/pyproject.toml +++ b/packages/dsw-tdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'dsw-tdk' -version = "4.9.5" +version = "4.9.6" description = 'Data Stewardship Wizard Template Development Toolkit' readme = 'README.md' keywords = ['documents', 'dsw', 'jinja2', 'template', 'toolkit']