diff --git a/packages/dsw-command-queue/CHANGELOG.md b/packages/dsw-command-queue/CHANGELOG.md index 64f42b48..2052bc82 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.3] + +Released for version consistency with other DSW tools. + ## [4.9.2] Released for version consistency with other DSW tools. @@ -236,3 +240,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-command-queue/pyproject.toml b/packages/dsw-command-queue/pyproject.toml index 53bbe72a..b686b207 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.2" +version = "4.9.3" description = 'Library for working with command queue and persistent commands' readme = 'README.md' keywords = ['dsw', 'subscriber', 'publisher', 'database', 'queue', 'processing'] @@ -25,7 +25,7 @@ classifiers = [ requires-python = '>=3.10, <4' dependencies = [ # DSW - "dsw-database==4.9.2", + "dsw-database==4.9.3", ] [project.urls] diff --git a/packages/dsw-config/CHANGELOG.md b/packages/dsw-config/CHANGELOG.md index a19d5111..5b8ebf44 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.3] + +Released for version consistency with other DSW tools. + ## [4.9.2] Released for version consistency with other DSW tools. @@ -248,3 +252,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-config/pyproject.toml b/packages/dsw-config/pyproject.toml index cc602313..1f470bd7 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.2" +version = "4.9.3" 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 284e9f0c..8930e2cc 100644 --- a/packages/dsw-data-seeder/CHANGELOG.md +++ b/packages/dsw-data-seeder/CHANGELOG.md @@ -8,6 +8,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.3] + +### Changed + +- Updated to newer Docker base image due to vulnerabilities (CVE-2024-45490)[https://nvd.nist.gov/vuln/detail/CVE-2024-45490], (CVE-2024-45491)[https://nvd.nist.gov/vuln/detail/CVE-2024-45491], (CVE-2024-45492)[https://nvd.nist.gov/vuln/detail/CVE-2024-45492] + ## [4.9.2] Released for version consistency with other DSW tools. @@ -292,3 +298,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-data-seeder/dsw/data_seeder/consts.py b/packages/dsw-data-seeder/dsw/data_seeder/consts.py index 259bb82c..f0d86c38 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.2' +VERSION = '4.9.3' 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 ec53512a..882cc47d 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.2" +version = "4.9.3" 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.2", - "dsw-config==4.9.2", - "dsw-database==4.9.2", - "dsw-storage==4.9.2", + "dsw-command-queue==4.9.3", + "dsw-config==4.9.3", + "dsw-database==4.9.3", + "dsw-storage==4.9.3", ] [project.urls] diff --git a/packages/dsw-database/CHANGELOG.md b/packages/dsw-database/CHANGELOG.md index 93b63641..c95a5945 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.3] + +Released for version consistency with other DSW tools. + ## [4.9.2] Released for version consistency with other DSW tools. @@ -259,3 +263,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-database/pyproject.toml b/packages/dsw-database/pyproject.toml index 222cd4f0..c6d899e6 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.2" +version = "4.9.3" 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.2", + "dsw-config==4.9.3", ] [project.urls] diff --git a/packages/dsw-document-worker/CHANGELOG.md b/packages/dsw-document-worker/CHANGELOG.md index 72dae7e4..42f84b03 100644 --- a/packages/dsw-document-worker/CHANGELOG.md +++ b/packages/dsw-document-worker/CHANGELOG.md @@ -8,6 +8,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.3] + +### Changed + +- Updated to newer Docker base image due to vulnerabilities (CVE-2024-45490)[https://nvd.nist.gov/vuln/detail/CVE-2024-45490], (CVE-2024-45491)[https://nvd.nist.gov/vuln/detail/CVE-2024-45491], (CVE-2024-45492)[https://nvd.nist.gov/vuln/detail/CVE-2024-45492] + ## [4.9.2] Released for version consistency with other DSW tools. @@ -310,3 +316,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-document-worker/dsw/document_worker/consts.py b/packages/dsw-document-worker/dsw/document_worker/consts.py index c17990d5..0d5ef413 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.2' +VERSION = '4.9.3' 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 0f6ebbdc..26587a0f 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.2" +version = "4.9.3" 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.2", - "dsw-config==4.9.2", - "dsw-database==4.9.2", - "dsw-storage==4.9.2", + "dsw-command-queue==4.9.3", + "dsw-config==4.9.3", + "dsw-database==4.9.3", + "dsw-storage==4.9.3", ] [project.urls] diff --git a/packages/dsw-mailer/CHANGELOG.md b/packages/dsw-mailer/CHANGELOG.md index 4ede105c..c4532937 100644 --- a/packages/dsw-mailer/CHANGELOG.md +++ b/packages/dsw-mailer/CHANGELOG.md @@ -8,6 +8,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [4.9.3] + +### Changed + +- Updated to newer Docker base image due to vulnerabilities (CVE-2024-45490)[https://nvd.nist.gov/vuln/detail/CVE-2024-45490], (CVE-2024-45491)[https://nvd.nist.gov/vuln/detail/CVE-2024-45491], (CVE-2024-45492)[https://nvd.nist.gov/vuln/detail/CVE-2024-45492] + ## [4.9.2] Released for version consistency with other DSW tools. @@ -268,3 +274,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-mailer/dsw/mailer/consts.py b/packages/dsw-mailer/dsw/mailer/consts.py index 151a35da..28fc6cb4 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.2' +VERSION = '4.9.3' 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 41281545..ccef77cb 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.2" +version = "4.9.3" 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.2", - "dsw-config==4.9.2", - "dsw-database==4.9.2", + "dsw-command-queue==4.9.3", + "dsw-config==4.9.3", + "dsw-database==4.9.3", ] [project.urls] diff --git a/packages/dsw-models/CHANGELOG.md b/packages/dsw-models/CHANGELOG.md index 952aa0e0..32b0aff9 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.3] + +Released for version consistency with other DSW tools. + ## [4.9.2] Released for version consistency with other DSW tools. @@ -165,3 +169,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-models/pyproject.toml b/packages/dsw-models/pyproject.toml index 5eeb0870..e2c9d025 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.2" +version = "4.9.3" 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 33745cd0..6e1d0eca 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.3] + +Released for version consistency with other DSW tools. + ## [4.9.2] Released for version consistency with other DSW tools. @@ -232,3 +236,4 @@ Released for version consistency with other DSW tools. [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-storage/pyproject.toml b/packages/dsw-storage/pyproject.toml index f1cee048..a2938d26 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.2" +version = "4.9.3" 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.2", + "dsw-config==4.9.3", ] [project.urls] diff --git a/packages/dsw-tdk/CHANGELOG.md b/packages/dsw-tdk/CHANGELOG.md index d4296b03..1edc550b 100644 --- a/packages/dsw-tdk/CHANGELOG.md +++ b/packages/dsw-tdk/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.9.3] + +### Changed + +- Updated to newer Docker base image due to vulnerabilities (CVE-2024-45490)[https://nvd.nist.gov/vuln/detail/CVE-2024-45490], (CVE-2024-45491)[https://nvd.nist.gov/vuln/detail/CVE-2024-45491], (CVE-2024-45492)[https://nvd.nist.gov/vuln/detail/CVE-2024-45492] + ## [4.9.2] Released for version consistency with other DSW tools. @@ -456,3 +462,4 @@ Initial DSW Template Development Kit (versioned as part of the [DSW platform](ht [4.9.0]: /../../tree/v4.9.0 [4.9.1]: /../../tree/v4.9.1 [4.9.2]: /../../tree/v4.9.2 +[4.9.3]: /../../tree/v4.9.3 diff --git a/packages/dsw-tdk/dsw/tdk/consts.py b/packages/dsw-tdk/dsw/tdk/consts.py index 2ade7021..611597d5 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.2' +VERSION = '4.9.3' 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 e3aa0e4e..a533db9a 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.2" +version = "4.9.3" description = 'Data Stewardship Wizard Template Development Toolkit' readme = 'README.md' keywords = ['documents', 'dsw', 'jinja2', 'template', 'toolkit']