Skip to content

Commit d8de149

Browse files
openworkflow v0.7.0 & @openworkflow/cli v0.4.1 & @openworkflow/backend-* v0.6.1
1 parent 12f3311 commit d8de149

File tree

9 files changed

+82
-26
lines changed

9 files changed

+82
-26
lines changed

package-lock.json

Lines changed: 56 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/backend-postgres/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# @openworkflow/backend-postgres
22

3+
## 0.6.1
4+
5+
- Add support for `openworkflow` v0.7.0
6+
37
## 0.6.0
48

59
- This package is now a thin compatibility shim. Prefer importing

packages/backend-postgres/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openworkflow/backend-postgres",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"type": "module",
55
"exports": {
66
".": {
@@ -22,6 +22,6 @@
2222
"openworkflow": "*"
2323
},
2424
"peerDependencies": {
25-
"openworkflow": "^0.6.0"
25+
"openworkflow": "^0.6.0 || ^0.7.0"
2626
}
2727
}

packages/backend-sqlite/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# @openworkflow/backend-sqlite
22

3+
## 0.6.1
4+
5+
- Add support for `openworkflow` v0.7.0
6+
37
## 0.6.0
48

59
- This package is now a thin compatibility shim. Prefer importing

packages/backend-sqlite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openworkflow/backend-sqlite",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"type": "module",
55
"exports": {
66
".": {
@@ -19,7 +19,7 @@
1919
"openworkflow": "*"
2020
},
2121
"peerDependencies": {
22-
"openworkflow": "^0.6.0"
22+
"openworkflow": "^0.6.0 || ^0.7.0"
2323
},
2424
"engines": {
2525
"node": ">=22.5.0"

packages/cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @openworkflow/cli
22

3+
## 0.4.1
4+
5+
- Add support for `openworkflow` v0.7.0
6+
- Add `--config <path>` flag to specify a config file (#295)
7+
- Improve database connection and loading error messages (#256)
8+
39
## 0.4.0
410

511
- Remove `ow` alias in favor of `openworkflow`

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openworkflow/cli",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"type": "module",
55
"exports": {
66
".": {
@@ -38,6 +38,6 @@
3838
"vitest": "^4.0.18"
3939
},
4040
"peerDependencies": {
41-
"openworkflow": "^0.6.0"
41+
"openworkflow": "^0.6.0 || ^0.7.0"
4242
}
4343
}

packages/openworkflow/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# openworkflow
22

3-
## Unreleased
3+
## 0.7.0
44

5-
- Add workflow-scoped idempotency keys via
5+
- Add configurable workflow and step retry policies (#279, #294)
6+
- Add workflow-scoped idempotency keys (#287)
67
`ow.runWorkflow(spec, input, { idempotencyKey })`
7-
- Built-in run idempotency dedupe period is 24 hours from run creation time
8+
- Switch worker polling to exponential backoff with jitter (#263)
9+
- Add support for custom database schemas (#293)
810

911
## 0.6.7
1012

packages/openworkflow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openworkflow",
3-
"version": "0.6.7",
3+
"version": "0.7.0",
44
"description": "Open-source TypeScript framework for building durable, resumable workflows",
55
"keywords": [
66
"durable execution",

0 commit comments

Comments
 (0)