Skip to content

Commit e2d963f

Browse files
Version Packages (beta)
1 parent 5b5a926 commit e2d963f

33 files changed

Lines changed: 158 additions & 16 deletions

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
"calm-geese-observe",
115115
"calm-geese-share",
116116
"cancel-v4-frame-stream",
117+
"catchable-step-arg-serialization-errors",
117118
"centralize-event-semantics",
118119
"chatty-walls-appear",
119120
"ci-runtime-fast-paths",
@@ -443,6 +444,7 @@
443444
"remove-obsolete-world-factory-aliases",
444445
"remove-old-trace-viewer",
445446
"remove-private-subpath",
447+
"remove-release-app-dispatch",
446448
"remove-safe-mode",
447449
"remove-sdk-serde-exclusion",
448450
"remove-step-file-copy",
@@ -492,6 +494,7 @@
492494
"serialization-refactor",
493495
"setup-graphile-worker-schema",
494496
"sharp-points-occur",
497+
"short-step-trace-names",
495498
"shy-frogs-juggle",
496499
"shy-turtles-decide",
497500
"sidebar-request-id",
@@ -503,6 +506,7 @@
503506
"sixty-plants-shout",
504507
"skip-changeset-release-deploys",
505508
"skip-community-worlds-main",
509+
"skip-unchanged-generated-writes",
506510
"skip-world-local-nov-ghosts",
507511
"slot-event-ids",
508512
"slot-ids-are-required",

packages/astro/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @workflow/astro
22

3+
## 5.0.0-beta.44
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8a2648e`](https://github.com/vercel/workflow/commit/8a2648e35f3ccfdffd275bc37470dd3396981773)]:
8+
- @workflow/builders@5.0.0-beta.44
9+
- @workflow/rollup@5.0.0-beta.44
10+
- @workflow/vite@5.0.0-beta.44
11+
312
## 5.0.0-beta.43
413

514
### Patch Changes

packages/astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workflow/astro",
3-
"version": "5.0.0-beta.43",
3+
"version": "5.0.0-beta.44",
44
"description": "Astro integration for Workflow SDK",
55
"type": "module",
66
"main": "dist/index.js",

packages/builders/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @workflow/builders
22

3+
## 5.0.0-beta.44
4+
5+
### Patch Changes
6+
7+
- [#3454](https://github.com/vercel/workflow/pull/3454) [`8a2648e`](https://github.com/vercel/workflow/commit/8a2648e35f3ccfdffd275bc37470dd3396981773) Thanks [@josuediazflores](https://github.com/josuediazflores)! - Emit `manifest.json` in a stable order and remove a redundant compilation round per no-op rebuild in Next dev.
8+
9+
- Updated dependencies [[`5b5a926`](https://github.com/vercel/workflow/commit/5b5a926f8850ec5d967e090cc0500028fd53e2ef)]:
10+
- @workflow/core@5.0.0-beta.44
11+
312
## 5.0.0-beta.43
413

514
### Patch Changes

packages/builders/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workflow/builders",
3-
"version": "5.0.0-beta.43",
3+
"version": "5.0.0-beta.44",
44
"description": "Shared builder infrastructure for Workflow SDK",
55
"type": "module",
66
"main": "./dist/index.js",

packages/cli/CHANGELOG.md

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

3+
## 5.0.0-beta.44
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`5b5a926`](https://github.com/vercel/workflow/commit/5b5a926f8850ec5d967e090cc0500028fd53e2ef), [`8a2648e`](https://github.com/vercel/workflow/commit/8a2648e35f3ccfdffd275bc37470dd3396981773)]:
8+
- @workflow/core@5.0.0-beta.44
9+
- @workflow/builders@5.0.0-beta.44
10+
- @workflow/web@5.0.0-beta.44
11+
312
## 5.0.0-beta.43
413

514
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workflow/cli",
3-
"version": "5.0.0-beta.43",
3+
"version": "5.0.0-beta.44",
44
"description": "Command-line interface for Workflow SDK",
55
"type": "module",
66
"bin": {

packages/core/CHANGELOG.md

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

3+
## 5.0.0-beta.44
4+
5+
### Patch Changes
6+
7+
- [#3675](https://github.com/vercel/workflow/pull/3675) [`5b5a926`](https://github.com/vercel/workflow/commit/5b5a926f8850ec5d967e090cc0500028fd53e2ef) Thanks [@TooTallNate](https://github.com/TooTallNate)! - Step-argument serialization failures now fail the step with a catchable `SerializationError` (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.
8+
39
## 5.0.0-beta.43
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workflow/core",
3-
"version": "5.0.0-beta.43",
3+
"version": "5.0.0-beta.44",
44
"description": "Core runtime and engine for Workflow SDK",
55
"type": "module",
66
"main": "dist/index.js",

packages/nest/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @workflow/nest
22

3+
## 5.0.0-beta.44
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8a2648e`](https://github.com/vercel/workflow/commit/8a2648e35f3ccfdffd275bc37470dd3396981773)]:
8+
- @workflow/builders@5.0.0-beta.44
9+
310
## 5.0.0-beta.43
411

512
### Patch Changes

0 commit comments

Comments
 (0)