Skip to content

Commit 59c7d15

Browse files
Merge pull request #128 from ds-wizard/release/3.28.0
Release 3.28.0
2 parents 4be9747 + c89e055 commit 59c7d15

Some content is hidden

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

49 files changed

+323
-142
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Check out repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Set up Python
3030
uses: actions/setup-python@v4
@@ -96,16 +96,16 @@ jobs:
9696

9797
steps:
9898
- name: Check out repository
99-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
100100
with:
101101
fetch-depth: 0
102102

103103
- name: Set up QEMU
104-
uses: docker/setup-qemu-action@v2
104+
uses: docker/setup-qemu-action@v3
105105

106106
- name: Set up Docker Buildx
107107
id: buildx
108-
uses: docker/setup-buildx-action@v2
108+
uses: docker/setup-buildx-action@v3
109109

110110
- name: Get Docker image name
111111
id: docker-image-name
@@ -121,15 +121,15 @@ jobs:
121121
# TEST DOCKER IMAGE BUILD
122122
- name: Docker meta [test]
123123
id: meta-test
124-
uses: docker/metadata-action@v4
124+
uses: docker/metadata-action@v5
125125
with:
126126
images: |
127127
${{ env.PUBLIC_IMAGE_PREFIX }}/${{ steps.docker-image-name.outputs.NAME }}
128128
tags: |
129129
type=sha
130130
131131
- name: Docker build [test]
132-
uses: docker/build-push-action@v4
132+
uses: docker/build-push-action@v5
133133
with:
134134
context: ${{ env.DOCKER_META_CONTEXT }}
135135
file: ${{ env.DOCKER_META_FILE }}
@@ -141,7 +141,7 @@ jobs:
141141
# PREPARE
142142
- name: Docker login [docker.io]
143143
if: github.event_name != 'pull_request'
144-
uses: docker/login-action@v2
144+
uses: docker/login-action@v3
145145
with:
146146
username: ${{ secrets.DOCKER_HUB_USERNAME }}
147147
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
@@ -150,15 +150,15 @@ jobs:
150150
- name: Docker meta [dev]
151151
id: meta-dev
152152
if: github.event_name != 'pull_request'
153-
uses: docker/metadata-action@v4
153+
uses: docker/metadata-action@v5
154154
with:
155155
images: |
156156
${{ secrets.DOCKER_HUB_USERNAME }}/${{ steps.docker-image-name.outputs.NAME }}
157157
tags: |
158158
type=ref,event=branch
159159
160160
- name: Docker build+push [dev]
161-
uses: docker/build-push-action@v4
161+
uses: docker/build-push-action@v5
162162
if: github.event_name != 'pull_request' && steps.meta-dev.outputs.tags != ''
163163
with:
164164
context: ${{ env.DOCKER_META_CONTEXT }}
@@ -172,7 +172,7 @@ jobs:
172172
- name: Docker meta [public]
173173
id: meta-public
174174
if: github.event_name != 'pull_request'
175-
uses: docker/metadata-action@v4
175+
uses: docker/metadata-action@v5
176176
with:
177177
images: |
178178
${{ env.PUBLIC_IMAGE_PREFIX }}/${{ steps.docker-image-name.outputs.NAME }}
@@ -183,7 +183,7 @@ jobs:
183183
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
184184
185185
- name: Docker build+push [public]
186-
uses: docker/build-push-action@v4
186+
uses: docker/build-push-action@v5
187187
if: github.event_name != 'pull_request' && steps.meta-public.outputs.tags != ''
188188
with:
189189
context: ${{ env.DOCKER_META_CONTEXT }}

.github/workflows/code-style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Check out repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Set up Python
1717
uses: actions/setup-python@v4
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- name: Check out repository
69-
uses: actions/checkout@v3
69+
uses: actions/checkout@v4
7070

7171
- name: Set up Python
7272
uses: actions/setup-python@v4

.github/workflows/release-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Check out repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Set up Python
3030
uses: actions/setup-python@v4

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Create build info
2828
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Check out repository
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Set up Python
2828
uses: actions/setup-python@v4

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

1317
Released for version consistency with other DSW tools.
@@ -142,3 +146,4 @@ Released for version consistency with other DSW tools.
142146
[3.26.1]: /../../tree/v3.26.1
143147
[3.27.0]: /../../tree/v3.27.0
144148
[3.27.1]: /../../tree/v3.27.1
149+
[3.28.0]: /../../tree/v3.28.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.27.1"
7+
version = "3.28.0"
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.27.1",
28+
"dsw-database==3.28.0",
2929
]
3030

3131
[project.urls]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
psycopg==3.1.10
22
psycopg-binary==3.1.10
33
PyYAML==6.0.1
4-
tenacity==8.2.2
5-
typing_extensions==4.7.1
4+
tenacity==8.2.3
5+
typing_extensions==4.8.0
66
tzdata==2023.3

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

1317
Released for version consistency with other DSW tools.
@@ -150,3 +154,4 @@ Released for version consistency with other DSW tools.
150154
[3.26.1]: /../../tree/v3.26.1
151155
[3.27.0]: /../../tree/v3.27.0
152156
[3.27.1]: /../../tree/v3.27.1
157+
[3.28.0]: /../../tree/v3.28.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.27.1"
7+
version = "3.28.0"
88
description = 'Library for DSW config manipulation'
99
readme = 'README.md'
1010
keywords = ['dsw', 'config', 'yaml', 'parser']

0 commit comments

Comments
 (0)