Skip to content

Commit c19bfd8

Browse files
Release Server 2.0.1
1 parent 9179fd1 commit c19bfd8

26 files changed

Lines changed: 39 additions & 39 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"extra": {
4949
"durable-workflow": {
50-
"product-train": "2.0.0"
50+
"product-train": "2.0.1"
5151
},
5252
"laravel": {
5353
"dont-discover": []

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-compose.dedicated-matching.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ name: durable-workflow-server
3232
# daemon reports `shape: dedicated`.
3333

3434
# Generated by scripts/ci/sync-source-release.mjs. Do not edit the fallback.
35-
x-server-image: &server-image ${DW_SERVER_IMAGE:-durableworkflow/server:${DW_SERVER_TAG:-2.0.0}}
35+
x-server-image: &server-image ${DW_SERVER_IMAGE:-durableworkflow/server:${DW_SERVER_TAG:-2.0.1}}
3636

3737
x-server-environment: &server-environment
3838
APP_NAME: "Durable Workflow Server"
3939
APP_ENV: ${APP_ENV:-local}
4040
DW_SERVER_KEY: ${DW_SERVER_KEY:-}
41-
APP_VERSION: ${APP_VERSION:-${DW_SERVER_TAG:-2.0.0}}
41+
APP_VERSION: ${APP_VERSION:-${DW_SERVER_TAG:-2.0.1}}
4242
APP_DEBUG: ${APP_DEBUG:-false}
4343
DB_CONNECTION: mysql
4444
DB_HOST: mysql

docker-compose.memo-rolling.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ services:
4949
command: ["server-bootstrap"]
5050
environment:
5151
<<: *runtime-environment
52-
APP_VERSION: ${APP_VERSION:-2.0.0}
52+
APP_VERSION: ${APP_VERSION:-2.0.1}
5353

5454
successor:
5555
image: ${DW_MEMO_SUCCESSOR_IMAGE:-durable-workflow/server-memo-rolling:local}
5656
ports: !override []
5757
environment:
5858
<<: *runtime-environment
59-
APP_VERSION: ${APP_VERSION:-2.0.0}
59+
APP_VERSION: ${APP_VERSION:-2.0.1}
6060
DW_SERVER_ID: memo-successor
6161
DW_SERVER_TOPOLOGY_SHAPE: standalone_server
6262
DW_SERVER_PROCESS_CLASS: server_http_node

docker-compose.published.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: durable-workflow-server
22

33
# Generated by scripts/ci/sync-source-release.mjs. Do not edit the fallback.
4-
x-server-image: &server-image ${DW_SERVER_IMAGE:-durableworkflow/server:${DW_SERVER_TAG:-2.0.0}}
4+
x-server-image: &server-image ${DW_SERVER_IMAGE:-durableworkflow/server:${DW_SERVER_TAG:-2.0.1}}
55

66
x-server-environment: &server-environment
77
APP_NAME: "Durable Workflow Server"
88
APP_ENV: ${APP_ENV:-local}
99
DW_SERVER_KEY: ${DW_SERVER_KEY:-}
10-
APP_VERSION: ${APP_VERSION:-${DW_SERVER_TAG:-2.0.0}}
10+
APP_VERSION: ${APP_VERSION:-${DW_SERVER_TAG:-2.0.1}}
1111
APP_DEBUG: ${APP_DEBUG:-false}
1212
LOG_CHANNEL: ${LOG_CHANNEL:-stderr}
1313
LOG_LEVEL: ${LOG_LEVEL:-info}

docker-compose.small-cluster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ x-server-build: &server-build
1212
x-server-environment: &server-environment
1313
APP_NAME: "Durable Workflow Server"
1414
APP_ENV: testing
15-
APP_VERSION: ${APP_VERSION:-2.0.0}
15+
APP_VERSION: ${APP_VERSION:-2.0.1}
1616
APP_DEBUG: "false"
1717
DW_SERVER_KEY: ${DW_SERVER_KEY:-base64:5Zt4nUhlCm3DD0nLXZJQdHiwPfb56yGo9gNV/g3jYbY=}
1818
DB_CONNECTION: ${DW_SMALL_CLUSTER_DB:-mysql}

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
DW_SERVER_KEY: "${DW_SERVER_KEY:-}"
1616
DW_SERVER_TOPOLOGY_SHAPE: standalone_server
1717
DW_SERVER_PROCESS_CLASS: server_http_node
18-
APP_VERSION: "${APP_VERSION:-2.0.0}"
18+
APP_VERSION: "${APP_VERSION:-2.0.1}"
1919
APP_DEBUG: "false"
2020
DB_CONNECTION: mysql
2121
DB_HOST: mysql
@@ -54,7 +54,7 @@ services:
5454
APP_NAME: "Durable Workflow Server"
5555
APP_ENV: local
5656
DW_SERVER_KEY: "${DW_SERVER_KEY:-}"
57-
APP_VERSION: "${APP_VERSION:-2.0.0}"
57+
APP_VERSION: "${APP_VERSION:-2.0.1}"
5858
APP_DEBUG: "false"
5959
DB_CONNECTION: mysql
6060
DB_HOST: mysql
@@ -107,7 +107,7 @@ services:
107107
DW_SERVER_KEY: "${DW_SERVER_KEY:-}"
108108
DW_SERVER_TOPOLOGY_SHAPE: standalone_server
109109
DW_SERVER_PROCESS_CLASS: worker_node
110-
APP_VERSION: "${APP_VERSION:-2.0.0}"
110+
APP_VERSION: "${APP_VERSION:-2.0.1}"
111111
DB_CONNECTION: mysql
112112
DB_HOST: mysql
113113
DB_PORT: 3306
@@ -153,7 +153,7 @@ services:
153153
DW_SERVER_KEY: "${DW_SERVER_KEY:-}"
154154
DW_SERVER_TOPOLOGY_SHAPE: standalone_server
155155
DW_SERVER_PROCESS_CLASS: scheduler_node
156-
APP_VERSION: "${APP_VERSION:-2.0.0}"
156+
APP_VERSION: "${APP_VERSION:-2.0.1}"
157157
DB_CONNECTION: mysql
158158
DB_HOST: mysql
159159
DB_PORT: 3306

k8s/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@ The checked-in manifests are synchronized with the repository's stable source
1313
release and pin its Docker Hub tag:
1414

1515
```text
16-
durableworkflow/server:2.0.0
16+
durableworkflow/server:2.0.1
1717
```
1818

1919
Before production use, patch every workload image to the exact published tag or
2020
digest you intend to run:
2121

2222
```bash
2323
kubectl set image -n durable-workflow deploy/durable-workflow-server \
24-
server=durableworkflow/server:2.0.0
24+
server=durableworkflow/server:2.0.1
2525
kubectl set image -n durable-workflow deploy/durable-workflow-worker \
26-
worker=durableworkflow/server:2.0.0
26+
worker=durableworkflow/server:2.0.1
2727
kubectl set image -n durable-workflow cronjob/durable-workflow-scheduler \
28-
scheduler=durableworkflow/server:2.0.0
28+
scheduler=durableworkflow/server:2.0.1
2929
```
3030

3131
GitHub Container Registry publishes the same release line at
32-
`ghcr.io/durable-workflow/server:2.0.0`. Digest pinning is preferred for strict
32+
`ghcr.io/durable-workflow/server:2.0.1`. Digest pinning is preferred for strict
3333
change control.
3434

3535
The manifests expect you to provide:

k8s/helm/durable-workflow/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ type: application
55
# The chart's own semver version. Bumped on every chart release; treated as
66
# independent of the server image version (appVersion). Breaking-change rules
77
# for this version live in docs/helm-upgrading.md alongside the chart.
8-
version: 0.1.71
8+
version: 0.1.72
99
# The immutable Durable Workflow Server identity this chart release packages.
1010
# The onboarding default in values.yaml and appVersion are generated from the
1111
# checked-in source release record.
12-
appVersion: "2.0.0"
12+
appVersion: "2.0.1"
1313
kubeVersion: ">=1.27.0-0"
1414
home: https://durable-workflow.github.io/docs/2.0/deployment
1515
sources:
@@ -30,7 +30,7 @@ annotations:
3030
# exact commit that most recently changed the packaged chart.
3131
org.opencontainers.image.source: https://github.com/durable-workflow/server
3232
dev.durable-workflow.source-revision: "unreleased"
33-
dev.durable-workflow.image-reference: "docker.io/durableworkflow/server:2.0.0"
33+
dev.durable-workflow.image-reference: "docker.io/durableworkflow/server:2.0.1"
3434
artifacthub.io/license: MIT
3535
artifacthub.io/category: integration-delivery
3636
# Free-form changelog for the current chart release shown by Artifact Hub.

k8s/helm/durable-workflow/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ helm install durable-workflow ./k8s/helm/durable-workflow \
6363

6464
```yaml
6565
image:
66-
tag: "2.0.0"
66+
tag: "2.0.1"
6767
# Pin a digest in production:
6868
# digest: "sha256:abc123..."
6969
# memoPayloadStorage: "raw-json-v1" # Required for a digest or custom image.

0 commit comments

Comments
 (0)