Skip to content

Commit 4a9774b

Browse files
Version Packages (beta)
1 parent e436242 commit 4a9774b

39 files changed

+208
-19
lines changed

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@
5151
},
5252
"changesets": [
5353
"ast-directive-validation",
54+
"esm-builders",
5455
"fix-builtin-externalize",
56+
"fix-community-world-specversion",
57+
"fix-next-esm-compat",
5558
"getter-step-support",
5659
"old-towns-make"
5760
]

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.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e436242`](https://github.com/vercel/workflow/commit/e4362421abf9c864c9c1064866ddfc16560649cb)]:
8+
- @workflow/builders@5.0.0-beta.1
9+
- @workflow/rollup@5.0.0-beta.1
10+
- @workflow/vite@5.0.0-beta.1
11+
312
## 5.0.0-beta.0
413

514
### Major 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.0",
3+
"version": "5.0.0-beta.1",
44
"description": "Astro integration for Workflow SDK",
55
"type": "module",
66
"main": "dist/index.js",

packages/builders/CHANGELOG.md

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

3+
## 5.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#1562](https://github.com/vercel/workflow/pull/1562) [`e436242`](https://github.com/vercel/workflow/commit/e4362421abf9c864c9c1064866ddfc16560649cb) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Switch Vercel Build Output API and standalone builder output from CJS to ESM. Step bundles, workflow bundles, and webhook bundles now emit ESM format by default, preserving native `import.meta.url` support and eliminating the need for CJS polyfills. Fully-bundled ESM output includes a `createRequire` banner to support CJS dependencies that use `require()` for Node.js builtins. The intermediate workflow bundle (which runs inside `vm.runInContext`) remains CJS as required by the VM execution model.
8+
9+
- Updated dependencies [[`a5c90ce`](https://github.com/vercel/workflow/commit/a5c90cefba01070aa4bc12a696334ee4c1061f92)]:
10+
- @workflow/core@5.0.0-beta.1
11+
- @workflow/errors@5.0.0-beta.0
12+
313
## 5.0.0-beta.0
414

515
### Major 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.0",
3+
"version": "5.0.0-beta.1",
44
"description": "Shared builder infrastructure for Workflow SDK",
55
"type": "module",
66
"main": "./dist/index.js",

packages/cli/CHANGELOG.md

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

3+
## 5.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#1562](https://github.com/vercel/workflow/pull/1562) [`e436242`](https://github.com/vercel/workflow/commit/e4362421abf9c864c9c1064866ddfc16560649cb) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Switch Vercel Build Output API and standalone builder output from CJS to ESM. Step bundles, workflow bundles, and webhook bundles now emit ESM format by default, preserving native `import.meta.url` support and eliminating the need for CJS polyfills. Fully-bundled ESM output includes a `createRequire` banner to support CJS dependencies that use `require()` for Node.js builtins. The intermediate workflow bundle (which runs inside `vm.runInContext`) remains CJS as required by the VM execution model.
8+
9+
- Updated dependencies [[`e436242`](https://github.com/vercel/workflow/commit/e4362421abf9c864c9c1064866ddfc16560649cb), [`a5c90ce`](https://github.com/vercel/workflow/commit/a5c90cefba01070aa4bc12a696334ee4c1061f92)]:
10+
- @workflow/builders@5.0.0-beta.1
11+
- @workflow/core@5.0.0-beta.1
12+
- @workflow/world@5.0.0-beta.1
13+
- @workflow/world-vercel@5.0.0-beta.1
14+
- @workflow/world-local@5.0.0-beta.1
15+
- @workflow/web@5.0.0-beta.0
16+
- @workflow/errors@5.0.0-beta.0
17+
318
## 5.0.0-beta.0
419

520
### Major 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.0",
3+
"version": "5.0.0-beta.1",
44
"description": "Command-line interface for Workflow SDK",
55
"type": "module",
66
"bin": {

packages/core/CHANGELOG.md

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

3+
## 5.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#1658](https://github.com/vercel/workflow/pull/1658) [`a5c90ce`](https://github.com/vercel/workflow/commit/a5c90cefba01070aa4bc12a696334ee4c1061f92) Thanks [@VaguelySerious](https://github.com/VaguelySerious)! - Fix community world E2E tests by adding `specVersion` to the World interface so `start()` uses the safe baseline (v2) for worlds that don't declare their supported version
8+
9+
- Updated dependencies [[`a5c90ce`](https://github.com/vercel/workflow/commit/a5c90cefba01070aa4bc12a696334ee4c1061f92)]:
10+
- @workflow/world@5.0.0-beta.1
11+
- @workflow/world-vercel@5.0.0-beta.1
12+
- @workflow/world-local@5.0.0-beta.1
13+
- @workflow/errors@5.0.0-beta.0
14+
315
## 5.0.0-beta.0
416

517
### Major 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.0",
3+
"version": "5.0.0-beta.1",
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.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e436242`](https://github.com/vercel/workflow/commit/e4362421abf9c864c9c1064866ddfc16560649cb)]:
8+
- @workflow/builders@5.0.0-beta.1
9+
310
## 5.0.0-beta.0
411

512
### Major Changes

0 commit comments

Comments
 (0)