From 589d75baa80d547eb0af7f09f1c88ad043b5ce84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 19:09:26 +0000 Subject: [PATCH] Version Packages (beta) --- .changeset/pre.json | 12 ++++++++++++ packages/astro/CHANGELOG.md | 11 +++++++++++ packages/astro/package.json | 2 +- packages/builders/CHANGELOG.md | 17 +++++++++++++++++ packages/builders/package.json | 2 +- packages/cli/CHANGELOG.md | 17 +++++++++++++++++ packages/cli/package.json | 2 +- packages/core/CHANGELOG.md | 16 ++++++++++++++++ packages/core/package.json | 2 +- packages/errors/CHANGELOG.md | 7 +++++++ packages/errors/package.json | 2 +- packages/nest/CHANGELOG.md | 9 +++++++++ packages/nest/package.json | 2 +- packages/next/CHANGELOG.md | 12 ++++++++++++ packages/next/package.json | 2 +- packages/nitro/CHANGELOG.md | 13 +++++++++++++ packages/nitro/package.json | 2 +- packages/nuxt/CHANGELOG.md | 10 ++++++++++ packages/nuxt/package.json | 2 +- packages/rollup/CHANGELOG.md | 9 +++++++++ packages/rollup/package.json | 2 +- packages/sveltekit/CHANGELOG.md | 13 +++++++++++++ packages/sveltekit/package.json | 2 +- packages/utils/CHANGELOG.md | 8 ++++++++ packages/utils/package.json | 2 +- packages/vite/CHANGELOG.md | 7 +++++++ packages/vite/package.json | 2 +- packages/vitest/CHANGELOG.md | 10 ++++++++++ packages/vitest/package.json | 2 +- packages/web-shared/CHANGELOG.md | 10 ++++++++++ packages/web-shared/package.json | 2 +- packages/web/CHANGELOG.md | 17 +++++++++++++++++ packages/web/package.json | 2 +- packages/workflow/CHANGELOG.md | 20 ++++++++++++++++++++ packages/workflow/package.json | 2 +- packages/world-local/CHANGELOG.md | 14 ++++++++++++++ packages/world-local/package.json | 2 +- packages/world-postgres/CHANGELOG.md | 11 +++++++++++ packages/world-postgres/package.json | 2 +- packages/world-testing/CHANGELOG.md | 11 +++++++++++ packages/world-testing/package.json | 2 +- packages/world-vercel/CHANGELOG.md | 11 +++++++++++ packages/world-vercel/package.json | 2 +- 43 files changed, 286 insertions(+), 21 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c846501d63..0bd07a2806 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -84,6 +84,8 @@ "clever-adults-ask", "clever-spans-search", "clever-wombats-drop", + "cli-analytics-list-reads", + "cli-generic-world-backends", "cli-url-deep-link", "cold-lands-boil", "compression-telemetry-attributes", @@ -154,6 +156,7 @@ "fix-step-vs-wait-race-eager-wait", "fix-step-vs-wait-race", "fix-stream-get-runid", + "fix-sveltekit-filename-chunk-patch", "fix-tarballs-build", "fix-tools-to-model-tools", "fix-turbopack-content-condition-deferred", @@ -184,6 +187,8 @@ "hook-conflict-web-reviver", "hook-get-conflict", "hook-sleep-replay-ordering", + "hook-token-claim-release", + "hook-token-reuse-after-dispose", "idempotency-strategy-e2e", "ignore-generated-manifest", "inline-completion-persistence", @@ -212,6 +217,7 @@ "neat-runs-serialize", "nest-cjs-ast-rewrite", "nest-linked-invocations-under-delivery", + "next-base-path", "next-diagnostics-dist", "next-respect-package-exports", "next-root-detection", @@ -236,6 +242,7 @@ "perf-memoize-step-hydration", "postgres-step-ordering", "pr-comment-stale-banner-via-path", + "precise-timeline-ruler-ticks", "precise-trace-viewer-durations", "preserve-imports-used-by-hoisted-steps", "preserve-step-fn-names", @@ -307,6 +314,7 @@ "stamp-world-run-id-spans", "start-allow-reserved-attributes", "start-in-workflow", + "static-world-target", "step-attributes", "step-bind-preserves-metadata", "step-run-required", @@ -363,7 +371,10 @@ "versioning-docs", "vitest-bundle-local-step-deps", "warn-external-workflow-packages", + "web-analytics-list-reads", "web-h2-noderequire", + "web-hook-token-lazy", + "web-local-world-static-injection", "web-shared-error-family-revivers", "web-vercel-preset", "wet-comics-tell", @@ -382,6 +393,7 @@ "world-vercel-enable-h2", "world-vercel-http-core", "world-vercel-protection-bypass", + "world-vercel-proxy-queue-region", "world-vercel-reject-empty-ref-payload", "world-vercel-retry-parse-failures", "world-vercel-trusted-sources", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index f80f0819de..d851d53224 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,16 @@ # @workflow/astro +## 5.0.0-beta.28 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/rollup@5.0.0-beta.28 + - @workflow/vite@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 75ea184cef..b2c3073609 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/astro", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 b2e5e49e23..9f788df2ee 100644 --- a/packages/builders/CHANGELOG.md +++ b/packages/builders/CHANGELOG.md @@ -1,5 +1,22 @@ # @workflow/builders +## 5.0.0-beta.28 + +### Patch Changes + +- [#2799](https://github.com/vercel/workflow/pull/2799) [`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Fix SvelteKit production server crash at boot if a world package pulls cosmiconfig into the server bundle. + +- [#2732](https://github.com/vercel/workflow/pull/2732) [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Respect framework base paths when routing workflow traffic and expose health checks on generated Next.js workflow routes. + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d), [`03862ed`](https://github.com/vercel/workflow/commit/03862edb651a37767df59c81898a8a4aadbb9d1c)]: + - @workflow/world-local@5.0.0-beta.24 + - @workflow/core@5.0.0-beta.28 + - @workflow/utils@5.0.0-beta.6 + - @workflow/world-vercel@5.0.0-beta.24 + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/builders/package.json b/packages/builders/package.json index 1d7daa528a..f8f7c27355 100644 --- a/packages/builders/package.json +++ b/packages/builders/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/builders", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 8bd7d77680..ae3c4d9832 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,22 @@ # @workflow/cli +## 5.0.0-beta.28 + +### Patch Changes + +- [#2648](https://github.com/vercel/workflow/pull/2648) [`17d4ce2`](https://github.com/vercel/workflow/commit/17d4ce225309d83a434cb2e4b1a34e2b647b4e04) Thanks [@karthikscale3](https://github.com/karthikscale3)! - `inspect` list views (runs, steps, events, sleeps) now read from the optional `world.analytics` namespace when the backend provides one, falling back to the runtime storage APIs otherwise. Hook listing stays on the runtime storage APIs (the analytics rows omit `ownerId` and the hook token). Payload/detail views are unchanged. The `--withData` flag is deprecated for list views; use `workflow inspect ` to view payloads for a single resource. + +- [#2806](https://github.com/vercel/workflow/pull/2806) [`54f46f9`](https://github.com/vercel/workflow/commit/54f46f976da8d8d5a646bceab60cfab7f0ae47e9) Thanks [@karthikscale3](https://github.com/karthikscale3)! - Ensure the CLI can resolve community world packages if not statically injected. Fixes "Unsupported workflow backend" error. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d), [`1518c48`](https://github.com/vercel/workflow/commit/1518c4860822986436711ec14b1b5b16192fefb5), [`ae51f45`](https://github.com/vercel/workflow/commit/ae51f45166298e855885330b2f1d4e1f8d729faa), [`cdfac39`](https://github.com/vercel/workflow/commit/cdfac39e07e2d15c95f7ab9ff8d244b8677931bd), [`03862ed`](https://github.com/vercel/workflow/commit/03862edb651a37767df59c81898a8a4aadbb9d1c)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/world-local@5.0.0-beta.24 + - @workflow/core@5.0.0-beta.28 + - @workflow/utils@5.0.0-beta.6 + - @workflow/world-vercel@5.0.0-beta.24 + - @workflow/web@5.0.0-beta.28 + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index ad114d82e7..affd1ef6c1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/cli", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "description": "Command-line interface for Workflow SDK", "type": "module", "bin": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 66f4cb4491..78b1a7360b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,21 @@ # @workflow/core +## 5.0.0-beta.28 + +### Patch Changes + +- [#2779](https://github.com/vercel/workflow/pull/2779) [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Fix `createHook()` conflicting with the run's own disposed hook when a token is reused after `dispose()` within the same run + +- [#2732](https://github.com/vercel/workflow/pull/2732) [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Respect framework base paths when routing workflow traffic and expose health checks on generated Next.js workflow routes. + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d), [`03862ed`](https://github.com/vercel/workflow/commit/03862edb651a37767df59c81898a8a4aadbb9d1c)]: + - @workflow/world-local@5.0.0-beta.24 + - @workflow/utils@5.0.0-beta.6 + - @workflow/world-vercel@5.0.0-beta.24 + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.27 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index cb853a9a30..9197165d48 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/core", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "description": "Core runtime and engine for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index af5b373430..28ab03ff42 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/errors +## 5.0.0-beta.10 + +### Patch Changes + +- Updated dependencies [[`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/utils@5.0.0-beta.6 + ## 5.0.0-beta.9 ### Patch Changes diff --git a/packages/errors/package.json b/packages/errors/package.json index 00559927cc..639a95c3e6 100644 --- a/packages/errors/package.json +++ b/packages/errors/package.json @@ -1,7 +1,7 @@ { "name": "@workflow/errors", "description": "A package for standardizing errors in Workflow SDK", - "version": "5.0.0-beta.9", + "version": "5.0.0-beta.10", "type": "module", "main": "dist/index.js", "files": [ diff --git a/packages/nest/CHANGELOG.md b/packages/nest/CHANGELOG.md index 9004902c07..59306d660b 100644 --- a/packages/nest/CHANGELOG.md +++ b/packages/nest/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/nest +## 5.0.0-beta.28 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/nest/package.json b/packages/nest/package.json index fd02d0b87c..25551a2de9 100644 --- a/packages/nest/package.json +++ b/packages/nest/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/nest", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 ddde84643c..8e4abcaddf 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,17 @@ # @workflow/next +## 5.0.0-beta.28 + +### Patch Changes + +- [#2732](https://github.com/vercel/workflow/pull/2732) [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Respect framework base paths when routing workflow traffic and expose health checks on generated Next.js workflow routes. + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/core@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index 20f699d33f..9fdc83407a 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/next", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 f7d0f786ab..54ed04e9a4 100644 --- a/packages/nitro/CHANGELOG.md +++ b/packages/nitro/CHANGELOG.md @@ -1,5 +1,18 @@ # @workflow/nitro +## 5.0.0-beta.28 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d), [`1518c48`](https://github.com/vercel/workflow/commit/1518c4860822986436711ec14b1b5b16192fefb5), [`ae51f45`](https://github.com/vercel/workflow/commit/ae51f45166298e855885330b2f1d4e1f8d729faa), [`cdfac39`](https://github.com/vercel/workflow/commit/cdfac39e07e2d15c95f7ab9ff8d244b8677931bd)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/core@5.0.0-beta.28 + - @workflow/rollup@5.0.0-beta.28 + - @workflow/web@5.0.0-beta.28 + - @workflow/vite@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/nitro/package.json b/packages/nitro/package.json index 7912f0b08b..2dbb32f1bc 100644 --- a/packages/nitro/package.json +++ b/packages/nitro/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/nitro", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 a78bb35545..7d909dbc9f 100644 --- a/packages/nuxt/CHANGELOG.md +++ b/packages/nuxt/CHANGELOG.md @@ -1,5 +1,15 @@ # @workflow/nuxt +## 5.0.0-beta.28 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/nitro@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index 9b4e391456..e7afb57fe9 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/nuxt", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 08dabeb9f6..fce9e9d99b 100644 --- a/packages/rollup/CHANGELOG.md +++ b/packages/rollup/CHANGELOG.md @@ -1,5 +1,14 @@ # @workflow/rollup +## 5.0.0-beta.28 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/rollup/package.json b/packages/rollup/package.json index 0d9104d697..62075da37a 100644 --- a/packages/rollup/package.json +++ b/packages/rollup/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/rollup", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 f657c81f99..5f2f9a9599 100644 --- a/packages/sveltekit/CHANGELOG.md +++ b/packages/sveltekit/CHANGELOG.md @@ -1,5 +1,18 @@ # @workflow/sveltekit +## 5.0.0-beta.28 + +### Patch Changes + +- [#2799](https://github.com/vercel/workflow/pull/2799) [`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Fix SvelteKit production server crash at boot if a world package pulls cosmiconfig into the server bundle. + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/rollup@5.0.0-beta.28 + - @workflow/vite@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/sveltekit/package.json b/packages/sveltekit/package.json index 8b4774a3d5..4ba7de8d06 100644 --- a/packages/sveltekit/package.json +++ b/packages/sveltekit/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/sveltekit", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "description": "SvelteKit integration for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index fc07ac94fa..0f4c2f0cef 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,13 @@ # @workflow/utils +## 5.0.0-beta.6 + +### Patch Changes + +- [#2732](https://github.com/vercel/workflow/pull/2732) [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Respect framework base paths when routing workflow traffic and expose health checks on generated Next.js workflow routes. + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + ## 5.0.0-beta.5 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index e89d420c6b..6304101746 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@workflow/utils", "description": "Utility functions for Workflow SDK", - "version": "5.0.0-beta.5", + "version": "5.0.0-beta.6", "type": "module", "main": "dist/index.js", "files": [ diff --git a/packages/vite/CHANGELOG.md b/packages/vite/CHANGELOG.md index eaee5ecdfc..64f011d212 100644 --- a/packages/vite/CHANGELOG.md +++ b/packages/vite/CHANGELOG.md @@ -1,5 +1,12 @@ # @workflow/vite +## 5.0.0-beta.28 + +### Patch Changes + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/vite/package.json b/packages/vite/package.json index 6630ed0903..31c3b8bec9 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": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "type": "module", "main": "dist/index.js", "files": [ diff --git a/packages/vitest/CHANGELOG.md b/packages/vitest/CHANGELOG.md index f24e7f9e51..fda783fd77 100644 --- a/packages/vitest/CHANGELOG.md +++ b/packages/vitest/CHANGELOG.md @@ -1,5 +1,15 @@ # @workflow/vitest +## 5.0.0-beta.28 + +### Patch Changes + +- Updated dependencies [[`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/builders@5.0.0-beta.28 + - @workflow/world-local@5.0.0-beta.24 + - @workflow/core@5.0.0-beta.28 + - @workflow/rollup@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/vitest/package.json b/packages/vitest/package.json index 20170a1775..9b608dbd1f 100644 --- a/packages/vitest/package.json +++ b/packages/vitest/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/vitest", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "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 c8c11aaae7..1caab0c11c 100644 --- a/packages/web-shared/CHANGELOG.md +++ b/packages/web-shared/CHANGELOG.md @@ -1,5 +1,15 @@ # @workflow/web-shared +## 5.0.0-beta.28 + +### Patch Changes + +- [#2775](https://github.com/vercel/workflow/pull/2775) [`8a76688`](https://github.com/vercel/workflow/commit/8a766884cf5df20872b6a516008f854f407fe259) Thanks [@mitul-s](https://github.com/mitul-s)! - Fix duplicate sub-second tick labels on the trace viewer timeline ruler, and trim trailing zeros from precise duration labels ("2.00s" → "2s"). + +- Updated dependencies [[`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/core@5.0.0-beta.28 + - @workflow/utils@5.0.0-beta.6 + ## 5.0.0-beta.27 ### Minor Changes diff --git a/packages/web-shared/package.json b/packages/web-shared/package.json index d3da250cd8..2300c23deb 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": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "private": false, "files": [ "dist", diff --git a/packages/web/CHANGELOG.md b/packages/web/CHANGELOG.md index 272b86667a..b31db0acd3 100644 --- a/packages/web/CHANGELOG.md +++ b/packages/web/CHANGELOG.md @@ -1,5 +1,22 @@ # @workflow/web +## 5.0.0-beta.28 + +### Patch Changes + +- [#2647](https://github.com/vercel/workflow/pull/2647) [`1518c48`](https://github.com/vercel/workflow/commit/1518c4860822986436711ec14b1b5b16192fefb5) Thanks [@karthikscale3](https://github.com/karthikscale3)! - The runs, steps, and events observability list views now read from the + metadata-only `world.analytics` namespace when the configured backend provides + one, and fall back to the runtime storage APIs otherwise. Event payloads are + still loaded lazily per event on the runtime path. Hooks listing, detail views, + payload resolution, streams, and mutations are unchanged. + +- [#2652](https://github.com/vercel/workflow/pull/2652) [`ae51f45`](https://github.com/vercel/workflow/commit/ae51f45166298e855885330b2f1d4e1f8d729faa) Thanks [@karthikscale3](https://github.com/karthikscale3)! - The hooks list now reads from the metadata-only `world.analytics` namespace when the backend provides one (falling back to the runtime storage APIs otherwise). A hook's secret token is no longer included in list rows — it is fetched one hook at a time via `world.hooks.get` only when the user copies the token or resumes the hook. + +- [#2804](https://github.com/vercel/workflow/pull/2804) [`cdfac39`](https://github.com/vercel/workflow/commit/cdfac39e07e2d15c95f7ab9ff8d244b8677931bd) Thanks [@karthikscale3](https://github.com/karthikscale3)! - Fix `workflow web` for local and postgres backends after static world-target injection. The web server now constructs the local world directly and resolves other world packages from the inspected project, instead of calling the `createWorld()` static-injection stub (which throws when no build plugin aliased it). + +- Updated dependencies [[`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/world-local@5.0.0-beta.24 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/web/package.json b/packages/web/package.json index 3c019166a3..2c89ad6e96 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,7 +1,7 @@ { "name": "@workflow/web", "description": "Workflow Observability UI", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "type": "module", "private": false, "files": [ diff --git a/packages/workflow/CHANGELOG.md b/packages/workflow/CHANGELOG.md index 1f144c61f5..421acc2bb5 100644 --- a/packages/workflow/CHANGELOG.md +++ b/packages/workflow/CHANGELOG.md @@ -1,5 +1,25 @@ # workflow +## 5.0.0-beta.28 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`17d4ce2`](https://github.com/vercel/workflow/commit/17d4ce225309d83a434cb2e4b1a34e2b647b4e04), [`54f46f9`](https://github.com/vercel/workflow/commit/54f46f976da8d8d5a646bceab60cfab7f0ae47e9), [`2ca34ac`](https://github.com/vercel/workflow/commit/2ca34ac69c5c201ef85a61fe3a10cc75ca3c22c4), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/cli@5.0.0-beta.28 + - @workflow/sveltekit@5.0.0-beta.28 + - @workflow/core@5.0.0-beta.28 + - @workflow/next@5.0.0-beta.28 + - @workflow/utils@5.0.0-beta.6 + - @workflow/astro@5.0.0-beta.28 + - @workflow/nest@5.0.0-beta.28 + - @workflow/nitro@5.0.0-beta.28 + - @workflow/nuxt@5.0.0-beta.28 + - @workflow/rollup@5.0.0-beta.28 + - @workflow/typescript-plugin@5.0.0-beta.5 + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/workflow/package.json b/packages/workflow/package.json index ea1199b7d5..52442119c3 100644 --- a/packages/workflow/package.json +++ b/packages/workflow/package.json @@ -1,6 +1,6 @@ { "name": "workflow", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "description": "Workflow SDK - Build durable, resilient, and observable workflows", "main": "dist/typescript-plugin.cjs", "type": "module", diff --git a/packages/world-local/CHANGELOG.md b/packages/world-local/CHANGELOG.md index 567510dbce..ed7cdd5b3e 100644 --- a/packages/world-local/CHANGELOG.md +++ b/packages/world-local/CHANGELOG.md @@ -1,5 +1,19 @@ # @workflow/world-local +## 5.0.0-beta.24 + +### Patch Changes + +- [#2779](https://github.com/vercel/workflow/pull/2779) [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Fix hook token claims of disposed hooks and finished runs not being released to the next claimant + +- [#2732](https://github.com/vercel/workflow/pull/2732) [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Respect framework base paths when routing workflow traffic and expose health checks on generated Next.js workflow routes. + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- Updated dependencies [[`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/utils@5.0.0-beta.6 + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.23 ### Patch Changes diff --git a/packages/world-local/package.json b/packages/world-local/package.json index a15da19d2c..b6385b6d16 100644 --- a/packages/world-local/package.json +++ b/packages/world-local/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/world-local", - "version": "5.0.0-beta.23", + "version": "5.0.0-beta.24", "description": "Local development World implementation for Workflow SDK", "type": "module", "main": "dist/index.js", diff --git a/packages/world-postgres/CHANGELOG.md b/packages/world-postgres/CHANGELOG.md index cb4209b0cc..14ce16537c 100644 --- a/packages/world-postgres/CHANGELOG.md +++ b/packages/world-postgres/CHANGELOG.md @@ -1,5 +1,16 @@ # @workflow/world-postgres +## 5.0.0-beta.22 + +### Patch Changes + +- [#2732](https://github.com/vercel/workflow/pull/2732) [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff) Thanks [@NathanColosimo](https://github.com/NathanColosimo)! - Respect framework base paths when routing workflow traffic and expose health checks on generated Next.js workflow routes. + +- Updated dependencies [[`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/world-local@5.0.0-beta.24 + - @workflow/utils@5.0.0-beta.6 + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.21 ### Minor Changes diff --git a/packages/world-postgres/package.json b/packages/world-postgres/package.json index 66f1249469..a06f6c32b5 100644 --- a/packages/world-postgres/package.json +++ b/packages/world-postgres/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/world-postgres", - "version": "5.0.0-beta.21", + "version": "5.0.0-beta.22", "description": "A reference World implementation based on PostgreSQL", "type": "module", "main": "dist/index.js", diff --git a/packages/world-testing/CHANGELOG.md b/packages/world-testing/CHANGELOG.md index 1acb4f4ca3..e2f8b257ad 100644 --- a/packages/world-testing/CHANGELOG.md +++ b/packages/world-testing/CHANGELOG.md @@ -1,5 +1,16 @@ # @workflow/world-testing +## 5.0.0-beta.28 + +### Patch Changes + +- Updated dependencies [[`17d4ce2`](https://github.com/vercel/workflow/commit/17d4ce225309d83a434cb2e4b1a34e2b647b4e04), [`54f46f9`](https://github.com/vercel/workflow/commit/54f46f976da8d8d5a646bceab60cfab7f0ae47e9), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`7637196`](https://github.com/vercel/workflow/commit/7637196cf0f605ce62243bf8c7762a26153dcd36), [`239031a`](https://github.com/vercel/workflow/commit/239031ad9e1d27942f8e30a59fd6fef254544fff), [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d)]: + - @workflow/cli@5.0.0-beta.28 + - @workflow/world-local@5.0.0-beta.24 + - @workflow/core@5.0.0-beta.28 + - @workflow/utils@5.0.0-beta.6 + - workflow@5.0.0-beta.28 + ## 5.0.0-beta.27 ### Patch Changes diff --git a/packages/world-testing/package.json b/packages/world-testing/package.json index 59eb0a797b..7d15e790e2 100644 --- a/packages/world-testing/package.json +++ b/packages/world-testing/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/world-testing", - "version": "5.0.0-beta.27", + "version": "5.0.0-beta.28", "description": "Testing utilities and World implementation for Workflow SDK", "main": "dist/src/index.mjs", "files": [ diff --git a/packages/world-vercel/CHANGELOG.md b/packages/world-vercel/CHANGELOG.md index c143a51fbc..54708b0bae 100644 --- a/packages/world-vercel/CHANGELOG.md +++ b/packages/world-vercel/CHANGELOG.md @@ -1,5 +1,16 @@ # @workflow/world-vercel +## 5.0.0-beta.24 + +### Patch Changes + +- [#2752](https://github.com/vercel/workflow/pull/2752) [`0f557d5`](https://github.com/vercel/workflow/commit/0f557d5ae4b5ede07fd371988c6d0afda194555d) Thanks [@ijjk](https://github.com/ijjk)! - Statically inject the configured world package into host bundles instead of selecting worlds dynamically at runtime. + +- [#2789](https://github.com/vercel/workflow/pull/2789) [`03862ed`](https://github.com/vercel/workflow/commit/03862edb651a37767df59c81898a8a4aadbb9d1c) Thanks [@TooTallNate](https://github.com/TooTallNate)! - Send the `x-vercel-queue-region` header on proxy-mode queue sends so they route to the region's VQS dataplane host like direct in-function sends do. + +- Updated dependencies []: + - @workflow/errors@5.0.0-beta.10 + ## 5.0.0-beta.23 ### Minor Changes diff --git a/packages/world-vercel/package.json b/packages/world-vercel/package.json index 0df30bbedf..c11e373473 100644 --- a/packages/world-vercel/package.json +++ b/packages/world-vercel/package.json @@ -1,6 +1,6 @@ { "name": "@workflow/world-vercel", - "version": "5.0.0-beta.23", + "version": "5.0.0-beta.24", "description": "Vercel platform World implementation for Workflow SDK", "type": "module", "main": "dist/index.js",