diff --git a/.changeset/catchable-step-arg-serialization-errors.md b/.changeset/catchable-step-arg-serialization-errors.md deleted file mode 100644 index 4b4cdb6b6c..0000000000 --- a/.changeset/catchable-step-arg-serialization-errors.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@workflow/core': patch ---- - -Step-argument serialization failures now fail the step with a catchable error (via a `step_failed` event, like a step-body failure) instead of failing the run from outside the workflow, and when uncaught they fail the run immediately as a `USER_ERROR` rather than retrying until max queue deliveries. diff --git a/.changeset/ordered-barrier-safety-net.md b/.changeset/ordered-barrier-safety-net.md deleted file mode 100644 index cb272809fb..0000000000 --- a/.changeset/ordered-barrier-safety-net.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@workflow/core': patch -'workflow': patch ---- - -Fix a replay-determinism gap where branch wake order — and therefore step correlation ids — could depend on how much of the event log an invocation had loaded, corrupting runs under concurrent replays (CORRUPTED_EVENT_LOG). diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 686f2e6e5f..3db37df7d9 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/astro +## 4.0.20 + +### Patch Changes + +- Updated dependencies []: + - @workflow/builders@4.1.10 + - @workflow/rollup@4.0.20 + - @workflow/vite@4.0.20 + ## 4.0.19 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 100e37f1a6..e34cd145d1 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/astro", - "version": "4.0.19", + "version": "4.0.20", "description": "Astro integration for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/builders/CHANGELOG.md b/packages/builders/CHANGELOG.md index 11dbe5dbec..6a9e8a537a 100644 --- a/packages/builders/CHANGELOG.md +++ b/packages/builders/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/builders +## 4.1.10 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + ## 4.1.9 ### Patch Changes diff --git a/packages/builders/package.json b/packages/builders/package.json index 9e00a54af8..175ac4bb10 100644 --- a/packages/builders/package.json +++ b/packages/builders/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/builders", - "version": "4.1.9", + "version": "4.1.10", "description": "Shared builder infrastructure for Workflow SDK", "type": "module", "main": "./dist/index.js", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 985ca71d47..351553c4de 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/cli +## 4.3.9 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + - @workflow/builders@4.1.10 + - @workflow/web@4.1.21 + ## 4.3.8 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index fd79f3bdf5..e506c0b2d1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/cli", - "version": "4.3.8", + "version": "4.3.9", "description": "Command-line interface for Workflow SDK", "type": "module", "bin": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index aa33778dda..8051b735b9 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @workflow/core +## 4.8.5 + +### Patch Changes + +- [#3675](https://github.com/vercel/workflow/pull/3675) [`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf) Thanks [@TooTallNate](https://github.com/TooTallNate)! - Step-argument serialization failures now fail the step with a catchable error (via a `step_failed` event, like a step-body failure) instead of failing the run from outside the workflow, and when uncaught they fail the run immediately as a `USER_ERROR` rather than retrying until max queue deliveries. + +- [#3554](https://github.com/vercel/workflow/pull/3554) [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Fix a replay-determinism gap where branch wake order — and therefore step correlation ids — could depend on how much of the event log an invocation had loaded, corrupting runs under concurrent replays (CORRUPTED_EVENT_LOG). + ## 4.8.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 730e2ea6bf..e555a9b082 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/core", - "version": "4.8.4", + "version": "4.8.5", "description": "Core runtime and engine for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/nest/CHANGELOG.md b/packages/nest/CHANGELOG.md index f3d1aefbf3..9db078c4d7 100644 --- a/packages/nest/CHANGELOG.md +++ b/packages/nest/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/nest +## 4.0.21 + +### Patch Changes + +- Updated dependencies []: + - @workflow/builders@4.1.10 + ## 4.0.20 ### Patch Changes diff --git a/packages/nest/package.json b/packages/nest/package.json index d7bcd1afd8..9214fc1198 100644 --- a/packages/nest/package.json +++ b/packages/nest/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/nest", - "version": "4.0.20", + "version": "4.0.21", "description": "NestJS integration for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index e93272bbb9..52d3bb1aa2 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,13 @@ # @workflow/next +## 4.1.9 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + - @workflow/builders@4.1.10 + ## 4.1.8 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index 2433e70967..1c56205c74 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/next", - "version": "4.1.8", + "version": "4.1.9", "description": "Next.js integration for Workflow SDK", "type": "commonjs", "main": "dist/index.js", diff --git a/packages/nitro/CHANGELOG.md b/packages/nitro/CHANGELOG.md index 33b1951229..30309e833b 100644 --- a/packages/nitro/CHANGELOG.md +++ b/packages/nitro/CHANGELOG.md @@ -1,5 +1,16 @@ # @workflow/nitro +## 4.1.11 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + - @workflow/builders@4.1.10 + - @workflow/web@4.1.21 + - @workflow/rollup@4.0.20 + - @workflow/vite@4.0.20 + ## 4.1.10 ### Patch Changes diff --git a/packages/nitro/package.json b/packages/nitro/package.json index bda025f3e3..dbbc9ec611 100644 --- a/packages/nitro/package.json +++ b/packages/nitro/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/nitro", - "version": "4.1.10", + "version": "4.1.11", "description": "Nitro integration for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/nuxt/CHANGELOG.md b/packages/nuxt/CHANGELOG.md index 0ce0809084..420e75adae 100644 --- a/packages/nuxt/CHANGELOG.md +++ b/packages/nuxt/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/nuxt +## 4.0.21 + +### Patch Changes + +- Updated dependencies []: + - @workflow/nitro@4.1.11 + ## 4.0.20 ### Patch Changes diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index b612908adc..12e6b39dbb 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/nuxt", - "version": "4.0.20", + "version": "4.0.21", "description": "Nuxt integration for Workflow SDK", "license": "Apache-2.0", "type": "module", diff --git a/packages/rollup/CHANGELOG.md b/packages/rollup/CHANGELOG.md index 293ad32a12..7b752bb258 100644 --- a/packages/rollup/CHANGELOG.md +++ b/packages/rollup/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/rollup +## 4.0.20 + +### Patch Changes + +- Updated dependencies []: + - @workflow/builders@4.1.10 + ## 4.0.19 ### Patch Changes diff --git a/packages/rollup/package.json b/packages/rollup/package.json index 7aa449c047..bf66a68274 100644 --- a/packages/rollup/package.json +++ b/packages/rollup/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/rollup", - "version": "4.0.19", + "version": "4.0.20", "description": "Rollup plugin for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/sveltekit/CHANGELOG.md b/packages/sveltekit/CHANGELOG.md index dfa5621751..541b3e43d5 100644 --- a/packages/sveltekit/CHANGELOG.md +++ b/packages/sveltekit/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/sveltekit +## 4.0.20 + +### Patch Changes + +- Updated dependencies []: + - @workflow/builders@4.1.10 + - @workflow/rollup@4.0.20 + - @workflow/vite@4.0.20 + ## 4.0.19 ### Patch Changes diff --git a/packages/sveltekit/package.json b/packages/sveltekit/package.json index 9481937ac9..544a65e0cf 100644 --- a/packages/sveltekit/package.json +++ b/packages/sveltekit/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/sveltekit", - "version": "4.0.19", + "version": "4.0.20", "description": "SvelteKit integration for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/vite/CHANGELOG.md b/packages/vite/CHANGELOG.md index f693f7dc26..087f1a460b 100644 --- a/packages/vite/CHANGELOG.md +++ b/packages/vite/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/vite +## 4.0.20 + +### Patch Changes + +- Updated dependencies []: + - @workflow/builders@4.1.10 + ## 4.0.19 ### Patch Changes diff --git a/packages/vite/package.json b/packages/vite/package.json index 97dc11d4fc..3644c936b0 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -1,7 +1,7 @@ { "name": "@workflow/vite", "description": "Vite plugin for Workflow SDK", - "version": "4.0.19", + "version": "4.0.20", "type": "module", "main": "dist/index.js", "files": [ diff --git a/packages/vitest/CHANGELOG.md b/packages/vitest/CHANGELOG.md index 4b505d33e1..9ab344c9a2 100644 --- a/packages/vitest/CHANGELOG.md +++ b/packages/vitest/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/vitest +## 4.0.21 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + - @workflow/builders@4.1.10 + - @workflow/rollup@4.0.20 + ## 4.0.20 ### Patch Changes diff --git a/packages/vitest/package.json b/packages/vitest/package.json index a908773865..bea9a87b7b 100644 --- a/packages/vitest/package.json +++ b/packages/vitest/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/vitest", - "version": "4.0.20", + "version": "4.0.21", "description": "Vitest plugin for testing Workflow SDK workflows", "type": "module", "main": "./dist/index.js", diff --git a/packages/web-shared/CHANGELOG.md b/packages/web-shared/CHANGELOG.md index 6e3d400480..90e3f18583 100644 --- a/packages/web-shared/CHANGELOG.md +++ b/packages/web-shared/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/web-shared +## 4.1.21 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + ## 4.1.20 ### Patch Changes diff --git a/packages/web-shared/package.json b/packages/web-shared/package.json index dd3e51bf6e..43c45a750b 100644 --- a/packages/web-shared/package.json +++ b/packages/web-shared/package.json @@ -1,7 +1,7 @@ { "name": "@workflow/web-shared", "description": "Shared components for Workflow Observability UI", - "version": "4.1.20", + "version": "4.1.21", "private": false, "files": [ "dist", diff --git a/packages/web/CHANGELOG.md b/packages/web/CHANGELOG.md index cd5e241bad..0c93285ce1 100644 --- a/packages/web/CHANGELOG.md +++ b/packages/web/CHANGELOG.md @@ -1,5 +1,7 @@ # @workflow/web +## 4.1.21 + ## 4.1.20 ## 4.1.19 diff --git a/packages/web/package.json b/packages/web/package.json index 48ba35c029..54682c017f 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,7 +1,7 @@ { "name": "@workflow/web", "description": "Workflow Observability UI", - "version": "4.1.20", + "version": "4.1.21", "type": "module", "private": false, "files": [ diff --git a/packages/workflow/CHANGELOG.md b/packages/workflow/CHANGELOG.md index fbd5243283..6057f8e7ef 100644 --- a/packages/workflow/CHANGELOG.md +++ b/packages/workflow/CHANGELOG.md @@ -1,5 +1,23 @@ # workflow +## 4.8.5 + +### Patch Changes + +- [#3554](https://github.com/vercel/workflow/pull/3554) [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Fix a replay-determinism gap where branch wake order — and therefore step correlation ids — could depend on how much of the event log an invocation had loaded, corrupting runs under concurrent replays (CORRUPTED_EVENT_LOG). + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + - @workflow/cli@4.3.9 + - @workflow/next@4.1.9 + - @workflow/nitro@4.1.11 + - @workflow/typescript-plugin@4.0.3 + - @workflow/astro@4.0.20 + - @workflow/nest@4.0.21 + - @workflow/rollup@4.0.20 + - @workflow/sveltekit@4.0.20 + - @workflow/nuxt@4.0.21 + ## 4.8.4 ### Patch Changes diff --git a/packages/workflow/package.json b/packages/workflow/package.json index 2265aa802d..2aee913859 100644 --- a/packages/workflow/package.json +++ b/packages/workflow/package.json @@ -1,6 +1,6 @@ { "name": "workflow", - "version": "4.8.4", + "version": "4.8.5", "description": "Workflow SDK - Build durable, resilient, and observable workflows", "main": "dist/typescript-plugin.cjs", "type": "module", diff --git a/packages/world-testing/CHANGELOG.md b/packages/world-testing/CHANGELOG.md index c4a964808c..55507ec690 100644 --- a/packages/world-testing/CHANGELOG.md +++ b/packages/world-testing/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/world-testing +## 4.1.20 + +### Patch Changes + +- Updated dependencies [[`5556b4c`](https://github.com/vercel/workflow/commit/5556b4cde500aa7d7156be0ed98ff95c61f26ccf), [`608769d`](https://github.com/vercel/workflow/commit/608769dc5ff856deb41d4ed29713ce05d7a45a54)]: + - @workflow/core@4.8.5 + - workflow@4.8.5 + - @workflow/cli@4.3.9 + ## 4.1.19 ### Patch Changes diff --git a/packages/world-testing/package.json b/packages/world-testing/package.json index 035c0534c3..88e1efdbfa 100644 --- a/packages/world-testing/package.json +++ b/packages/world-testing/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/world-testing", - "version": "4.1.19", + "version": "4.1.20", "description": "Testing utilities and World implementation for Workflow SDK", "main": "dist/src/index.mjs", "files": [