Skip to content

Commit fec348d

Browse files
Merge pull request #379 from ds-wizard/release/4.29.0
Release 4.29.0 (develop)
2 parents b353bbb + 3977606 commit fec348d

File tree

25 files changed

+177
-114
lines changed

25 files changed

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

1317
Released for version consistency with other DSW tools.
@@ -446,3 +450,4 @@ Released for version consistency with other DSW tools.
446450
[4.28.2]: /../../tree/v4.28.2
447451
[4.28.3]: /../../tree/v4.28.3
448452
[4.28.4]: /../../tree/v4.28.4
453+
[4.29.0]: /../../tree/v4.29.0

packages/dsw-command-queue/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-command-queue"
3-
version = "4.28.4"
3+
version = "4.29.0"
44
description = "Library for working with command queue and persistent commands"
55
readme = "README.md"
66
keywords = ["dsw", "subscriber", "publisher", "database", "queue", "processing"]
@@ -23,7 +23,7 @@ dependencies = [
2323
"func-timeout",
2424
"tenacity",
2525
# DSW
26-
"dsw-database==4.28.4",
26+
"dsw-database==4.29.0",
2727
]
2828

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

1317
Released for version consistency with other DSW tools.
@@ -453,3 +457,4 @@ Released for version consistency with other DSW tools.
453457
[4.28.2]: /../../tree/v4.28.2
454458
[4.28.3]: /../../tree/v4.28.3
455459
[4.28.4]: /../../tree/v4.28.4
460+
[4.29.0]: /../../tree/v4.29.0

packages/dsw-config/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-config"
3-
version = "4.28.4"
3+
version = "4.29.0"
44
description = "Library for DSW config manipulation"
55
readme = "README.md"
66
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.29.0]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.28.4]
1216

1317
Released for version consistency with other DSW tools.
@@ -522,3 +526,4 @@ Released for version consistency with other DSW tools.
522526
[4.28.2]: /../../tree/v4.28.2
523527
[4.28.3]: /../../tree/v4.28.3
524528
[4.28.4]: /../../tree/v4.28.4
529+
[4.29.0]: /../../tree/v4.29.0

packages/dsw-data-seeder/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-data-seeder"
3-
version = "4.28.4"
3+
version = "4.29.0"
44
description = "Worker for seeding DSW data"
55
readme = "README.md"
66
keywords = ["data", "database", "seed", "storage"]
@@ -25,10 +25,10 @@ dependencies = [
2525
"sentry-sdk",
2626
"tenacity",
2727
# DSW
28-
"dsw-command-queue==4.28.4",
29-
"dsw-config==4.28.4",
30-
"dsw-database==4.28.4",
31-
"dsw-storage==4.28.4",
28+
"dsw-command-queue==4.29.0",
29+
"dsw-config==4.29.0",
30+
"dsw-database==4.29.0",
31+
"dsw-storage==4.29.0",
3232
]
3333

3434
[project.urls]

packages/dsw-database/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.29.0]
12+
13+
Released for version consistency with other DSW tools.
14+
1115
## [4.28.4]
1216

1317
Released for version consistency with other DSW tools.
@@ -476,3 +480,4 @@ Released for version consistency with other DSW tools.
476480
[4.28.2]: /../../tree/v4.28.2
477481
[4.28.3]: /../../tree/v4.28.3
478482
[4.28.4]: /../../tree/v4.28.4
483+
[4.29.0]: /../../tree/v4.29.0

packages/dsw-database/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-database"
3-
version = "4.28.4"
3+
version = "4.29.0"
44
description = "Library for managing DSW database"
55
readme = "README.md"
66
keywords = ["dsw", "database"]
@@ -22,7 +22,7 @@ dependencies = [
2222
"psycopg[binary]",
2323
"tenacity",
2424
# DSW
25-
"dsw-config==4.28.4",
25+
"dsw-config==4.29.0",
2626
]
2727

2828
[project.urls]

packages/dsw-document-worker/CHANGELOG.md

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

1010

11+
## [4.29.0]
12+
13+
### Added
14+
15+
- Added StringReply helpers for markdown
16+
17+
### Changed
18+
19+
- Updated to KM metamodel 20 and DT metamodel 18.0
20+
21+
### Fixed
22+
23+
- Auto escaping HTML tags in Jinja templates
24+
1125
## [4.28.4]
1226

1327
Released for version consistency with other DSW tools.
1428

1529
## [4.28.3]
1630

17-
Released for version consistency with other DSW tools.
31+
### Fixed
32+
33+
- Auto escaping HTML tags in Jinja templates
1834

1935
## [4.28.2]
2036

@@ -597,3 +613,4 @@ Released for version consistency with other DSW tools.
597613
[4.28.2]: /../../tree/v4.28.2
598614
[4.28.3]: /../../tree/v4.28.3
599615
[4.28.4]: /../../tree/v4.28.4
616+
[4.29.0]: /../../tree/v4.29.0

packages/dsw-document-worker/dsw/document_worker/model/context.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1723,11 +1723,11 @@ def load(data: dict, **options):
17231723

17241724
class Document:
17251725

1726-
def __init__(self, *, uuid: str, name: str, document_template_id: str, format_uuid: str,
1726+
def __init__(self, *, uuid: str, name: str, document_template_uuid: str, format_uuid: str,
17271727
created_by: User | None, created_at: datetime.datetime):
17281728
self.uuid = uuid
17291729
self.name = name
1730-
self.document_template_uuid = document_template_id
1730+
self.document_template_uuid = document_template_uuid
17311731
self.format_uuid = format_uuid
17321732
self.created_by = created_by
17331733
self.created_at = created_at
@@ -1737,7 +1737,7 @@ def load(data: dict, **options):
17371737
return Document(
17381738
uuid=data['uuid'],
17391739
name=data['name'],
1740-
document_template_id=data['documentTemplateId'],
1740+
document_template_uuid=data['documentTemplateUuid'],
17411741
format_uuid=data['formatUuid'],
17421742
created_by=User.load(data['createdBy'], **options),
17431743
created_at=_datetime(data['createdAt']),

0 commit comments

Comments
 (0)