Skip to content

Commit 66c83c5

Browse files
committed
Hotfix 4.26.1
1 parent 8e63c4b commit 66c83c5

File tree

23 files changed

+98
-33
lines changed

23 files changed

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

1317
Released for version consistency with other DSW tools.
@@ -411,3 +415,4 @@ Released for version consistency with other DSW tools.
411415
[4.25.0]: /../../tree/v4.25.0
412416
[4.25.1]: /../../tree/v4.25.1
413417
[4.26.0]: /../../tree/v4.26.0
418+
[4.26.1]: /../../tree/v4.26.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.26.0"
7+
version = "4.26.1"
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.12, <4'
2626
dependencies = [
2727
'func-timeout',
2828
# DSW
29-
"dsw-database==4.26.0",
29+
"dsw-database==4.26.1",
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.26.1]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.26.0]
1216

1317
Released for version consistency with other DSW tools.
@@ -418,3 +422,4 @@ Released for version consistency with other DSW tools.
418422
[4.25.0]: /../../tree/v4.25.0
419423
[4.25.1]: /../../tree/v4.25.1
420424
[4.26.0]: /../../tree/v4.26.0
425+
[4.26.1]: /../../tree/v4.26.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.26.0"
7+
version = "4.26.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.26.1]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.26.0]
1216

1317
Released for version consistency with other DSW tools.
@@ -487,3 +491,4 @@ Released for version consistency with other DSW tools.
487491
[4.25.0]: /../../tree/v4.25.0
488492
[4.25.1]: /../../tree/v4.25.1
489493
[4.26.0]: /../../tree/v4.26.0
494+
[4.26.1]: /../../tree/v4.26.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.26.0'
9+
VERSION = '4.26.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.26.0"
7+
version = "4.26.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.26.0",
33-
"dsw-config==4.26.0",
34-
"dsw-database==4.26.0",
35-
"dsw-storage==4.26.0",
32+
"dsw-command-queue==4.26.1",
33+
"dsw-config==4.26.1",
34+
"dsw-database==4.26.1",
35+
"dsw-storage==4.26.1",
3636
]
3737

3838
[project.urls]

packages/dsw-database/CHANGELOG.md

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

1010

11-
## [4.26.0]
11+
## [4.26.1]
1212

1313
Released for version consistency with other DSW tools.
1414

15+
## [4.26.0]
16+
17+
### Fixed
18+
19+
- RemoveD old prints for debugging
20+
21+
### Changed
22+
23+
- Renamed questionnaire to project
24+
1525
## [4.25.1]
1626

1727
- Fixed document.questionnaire_uuid as NULLABLE
@@ -433,3 +443,4 @@ Released for version consistency with other DSW tools.
433443
[4.25.0]: /../../tree/v4.25.0
434444
[4.25.1]: /../../tree/v4.25.1
435445
[4.26.0]: /../../tree/v4.26.0
446+
[4.26.1]: /../../tree/v4.26.1

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.26.0"
7+
version = "4.26.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.26.0",
29+
"dsw-config==4.26.1",
3030
]
3131

3232
[project.urls]

packages/dsw-document-worker/CHANGELOG.md

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

1010

11+
## [4.26.1]
12+
13+
### Fixed
14+
15+
- Fixed fetching submissions for document generation
16+
1117
## [4.26.0]
1218

13-
Released for version consistency with other DSW tools.
19+
### Added
20+
21+
- Added instance config to document context
22+
23+
### Changed
24+
25+
- Renamed questionnaire to project
1426

1527
## [4.25.1]
1628

29+
### Fixed
30+
1731
- Fixed document preview for KM editor
1832

1933
## [4.25.0]
@@ -540,3 +554,4 @@ Released for version consistency with other DSW tools.
540554
[4.25.0]: /../../tree/v4.25.0
541555
[4.25.1]: /../../tree/v4.25.1
542556
[4.26.0]: /../../tree/v4.26.0
557+
[4.26.1]: /../../tree/v4.26.1

0 commit comments

Comments
 (0)