Skip to content

Commit ece0510

Browse files
Merge pull request #178 from ds-wizard/hotfix/4.3.1
Hotfix 4.3.1
2 parents 4d1ca3f + d3359bd commit ece0510

File tree

23 files changed

+79
-28
lines changed

23 files changed

+79
-28
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.3.1]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.3.0]
1216

1317
Released for version consistency with other DSW tools.
@@ -179,3 +183,4 @@ Released for version consistency with other DSW tools.
179183
[4.2.0]: /../../tree/v4.2.0
180184
[4.2.1]: /../../tree/v4.2.1
181185
[4.3.0]: /../../tree/v4.3.0
186+
[4.3.1]: /../../tree/v4.3.1

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.3.0"
7+
version = "4.3.1"
88
description = 'Library for working with command queue and persistent commands'
99
readme = 'README.md'
1010
keywords = ['dsw', 'subscriber', 'publisher', 'database', 'queue', 'processing']
@@ -25,7 +25,7 @@ classifiers = [
2525
requires-python = '>=3.10, <4'
2626
dependencies = [
2727
# DSW
28-
"dsw-database==4.3.0",
28+
"dsw-database==4.3.1",
2929
]
3030

3131
[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.3.1]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.3.0]
1216

1317
Released for version consistency with other DSW tools.
@@ -187,3 +191,4 @@ Released for version consistency with other DSW tools.
187191
[4.2.0]: /../../tree/v4.2.0
188192
[4.2.1]: /../../tree/v4.2.1
189193
[4.3.0]: /../../tree/v4.3.0
194+
[4.3.1]: /../../tree/v4.3.1

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.3.0"
7+
version = "4.3.1"
88
description = 'Library for DSW config manipulation'
99
readme = 'README.md'
1010
keywords = ['dsw', 'config', 'yaml', 'parser']

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.3.1]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.3.0]
1216

1317
### Added
@@ -237,3 +241,4 @@ Released for version consistency with other DSW tools.
237241
[4.2.0]: /../../tree/v4.2.0
238242
[4.2.1]: /../../tree/v4.2.1
239243
[4.3.0]: /../../tree/v4.3.0
244+
[4.3.1]: /../../tree/v4.3.1

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.3.0'
9+
VERSION = '4.3.1'
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.3.0"
7+
version = "4.3.1"
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.3.0",
33-
"dsw-config==4.3.0",
34-
"dsw-database==4.3.0",
35-
"dsw-storage==4.3.0",
32+
"dsw-command-queue==4.3.1",
33+
"dsw-config==4.3.1",
34+
"dsw-database==4.3.1",
35+
"dsw-storage==4.3.1",
3636
]
3737

3838
[project.urls]

packages/dsw-database/CHANGELOG.md

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

1010

11+
## [4.3.1]
12+
13+
### Fixed
14+
15+
- Fix retrieving configs
16+
1117
## [4.3.0]
1218

1319
Released for version consistency with other DSW tools.
@@ -194,3 +200,4 @@ Released for version consistency with other DSW tools.
194200
[4.2.0]: /../../tree/v4.2.0
195201
[4.2.1]: /../../tree/v4.2.1
196202
[4.3.0]: /../../tree/v4.3.0
203+
[4.3.1]: /../../tree/v4.3.1

packages/dsw-database/dsw/database/database.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,8 @@ def get_currently_used_size(self, tenant_uuid: str):
358358
after=tenacity.after_log(LOG, logging.DEBUG),
359359
)
360360
def get_tenant_config(self, tenant_uuid: str) -> Optional[DBTenantConfig]:
361+
if not self._check_table_exists(table_name='tenant_config'):
362+
return None
361363
with self.conn_query.new_cursor(use_dict=True) as cursor:
362364
try:
363365
cursor.execute(
@@ -431,6 +433,8 @@ def update_component_info(self, name: str, version: str, built_at: datetime.date
431433
after=tenacity.after_log(LOG, logging.DEBUG),
432434
)
433435
def get_component_info(self, name: str) -> Optional[DBComponent]:
436+
if not self._check_table_exists(table_name='component'):
437+
return None
434438
with self.conn_query.new_cursor(use_dict=True) as cursor:
435439
try:
436440
cursor.execute(

packages/dsw-database/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-database'
7-
version = "4.3.0"
7+
version = "4.3.1"
88
description = 'Library for managing DSW database'
99
readme = 'README.md'
1010
keywords = ['dsw', 'database']
@@ -26,7 +26,7 @@ dependencies = [
2626
'psycopg[binary]',
2727
'tenacity',
2828
# DSW
29-
"dsw-config==4.3.0",
29+
"dsw-config==4.3.1",
3030
]
3131

3232
[project.urls]

0 commit comments

Comments
 (0)