Skip to content

Commit 1d16f01

Browse files
Merge pull request #147 from ds-wizard/release/4.0.0
Release 4.0.0
2 parents 59c7d15 + 997ab8d commit 1d16f01

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+353
-270
lines changed

.github/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ if make verify; then
55
echo "## Verify: passed"
66
else
77
echo "## Verify: failed"
8-
echo "VERIFY_FAILS=command-queue:$VERIFY_FAILS" >> $GITHUB_ENV
8+
echo "VERIFY_FAILS=$1:$VERIFY_FAILS" >> $GITHUB_ENV
99
fi
1010
if make test; then
1111
echo "## Test: passed"
1212
else
1313
echo "## Test: failed"
14-
echo "TEST_FAILS=command-queue:$TEST_FAILS" >> $GITHUB_ENV
14+
echo "TEST_FAILS=$1:$TEST_FAILS" >> $GITHUB_ENV
1515
fi

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

1317
Released for version consistency with other DSW tools.
@@ -147,3 +151,4 @@ Released for version consistency with other DSW tools.
147151
[3.27.0]: /../../tree/v3.27.0
148152
[3.27.1]: /../../tree/v3.27.1
149153
[3.28.0]: /../../tree/v3.28.0
154+
[4.0.0]: /../../tree/v4.0.0

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 = "3.28.0"
7+
version = "4.0.0rc2"
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==3.28.0",
28+
"dsw-database==4.0.0rc2",
2929
]
3030

3131
[project.urls]

packages/dsw-command-queue/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
psycopg==3.1.10
2-
psycopg-binary==3.1.10
1+
psycopg==3.1.12
2+
psycopg-binary==3.1.12
33
PyYAML==6.0.1
44
tenacity==8.2.3
55
typing_extensions==4.8.0

packages/dsw-config/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.0.0]
12+
13+
### Changed
14+
15+
- Adapt DB renames in documents table
16+
1117
## [3.28.0]
1218

1319
Released for version consistency with other DSW tools.
@@ -155,3 +161,4 @@ Released for version consistency with other DSW tools.
155161
[3.27.0]: /../../tree/v3.27.0
156162
[3.27.1]: /../../tree/v3.27.1
157163
[3.28.0]: /../../tree/v3.28.0
164+
[4.0.0]: /../../tree/v4.0.0

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

packages/dsw-config/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
certifi==2023.7.22
22
PyYAML==6.0.1
3-
sentry-sdk==1.31.0
4-
urllib3==2.0.6
3+
sentry-sdk==1.32.0
4+
urllib3==2.0.7

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

1317
### Changed
@@ -197,3 +201,4 @@ Released for version consistency with other DSW tools.
197201
[3.27.0]: /../../tree/v3.27.0
198202
[3.27.1]: /../../tree/v3.27.1
199203
[3.28.0]: /../../tree/v3.28.0
204+
[4.0.0]: /../../tree/v4.0.0

packages/dsw-data-seeder/dsw/data_seeder/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ def run(ctx: click.Context, recipe: str):
5757

5858
@cli.command(name='seed', help='Seed data directly.')
5959
@click.option('-r', '--recipe', envvar='SEEDER_RECIPE')
60-
@click.option('-a', '--app_uuid', default=NULL_UUID)
60+
@click.option('-t', '--tenant-uuid', default=NULL_UUID)
6161
@click.pass_context
62-
def seed(ctx: click.Context, recipe: str, app_uuid: str):
62+
def seed(ctx: click.Context, recipe: str, tenant_uuid: str):
6363
cfg = ctx.obj['cfg']
6464
workdir = ctx.obj['workdir']
6565
seeder = DataSeeder(cfg=cfg, workdir=workdir)
66-
seeder.seed(recipe_name=recipe, app_uuid=app_uuid)
66+
seeder.seed(recipe_name=recipe, tenant_uuid=tenant_uuid)
6767

6868

6969
@cli.command(name='list', help='List recipes for data seeding.')

packages/dsw-data-seeder/dsw/data_seeder/consts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CMD_CHANNEL = 'data_seeder'
44
DEFAULT_ENCODING = 'utf-8'
55
DEFAULT_MIMETYPE = 'application/octet-stream'
6-
DEFAULT_PLACEHOLDER = '<<|APP-ID|>>'
6+
DEFAULT_PLACEHOLDER = '<<|TENANT-ID|>>'
77
NULL_UUID = '00000000-0000-0000-0000-000000000000'
88
PROG_NAME = 'dsw-data-seeder'
9-
VERSION = '3.28.0'
9+
VERSION = '4.0.0'

0 commit comments

Comments
 (0)