Skip to content

Commit 20bd19a

Browse files
author
workflow-devkit-release-bot[bot]
committed
Version Packages (beta)
1 parent 0a86de3 commit 20bd19a

43 files changed

Lines changed: 242 additions & 22 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/pre.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@
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",
56-
"old-towns-make"
59+
"inline-step-registration",
60+
"old-towns-make",
61+
"remove-private-subpath"
5762
]
5863
}

packages/ai/CHANGELOG.md

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

3+
## 5.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c6b630f`](https://github.com/vercel/workflow/commit/c6b630fc07335e1439752fc4f1122625515d17ce), [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d)]:
8+
- workflow@5.0.0-beta.1
9+
310
## 5.0.0-beta.0
411

512
### Major Changes

packages/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workflow/ai",
3-
"version": "5.0.0-beta.0",
3+
"version": "5.0.0-beta.1",
44
"description": "Workflow SDK compatible helper library for the AI SDK",
55
"type": "module",
66
"main": "dist/index.js",

packages/astro/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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), [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d)]:
8+
- @workflow/builders@5.0.0-beta.1
9+
- @workflow/swc-plugin@5.0.0-beta.1
10+
- @workflow/rollup@5.0.0-beta.1
11+
- @workflow/vite@5.0.0-beta.1
12+
313
## 5.0.0-beta.0
414

515
### 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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
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), [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d), [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d)]:
10+
- @workflow/core@5.0.0-beta.1
11+
- @workflow/swc-plugin@5.0.0-beta.1
12+
- @workflow/errors@5.0.0-beta.0
13+
314
## 5.0.0-beta.0
415

516
### 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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
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), [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d), [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d)]:
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/swc-plugin@5.0.0-beta.1
16+
- @workflow/web@5.0.0-beta.0
17+
- @workflow/errors@5.0.0-beta.0
18+
319
## 5.0.0-beta.0
420

521
### 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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @workflow/core
22

3+
## 5.0.0-beta.1
4+
5+
### Major Changes
6+
7+
- [#1632](https://github.com/vercel/workflow/pull/1632) [`0a86de3`](https://github.com/vercel/workflow/commit/0a86de3afd1b51efff32e1c3cefd7f384d1b2d8d) Thanks [@TooTallNate](https://github.com/TooTallNate)! - **BREAKING CHANGE**: Remove `@workflow/core/private` and `workflow/internal/private` public subpath exports. The SWC compiler plugin no longer generates imports from these paths.
8+
9+
### Patch Changes
10+
11+
- [#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
12+
13+
- Updated dependencies [[`a5c90ce`](https://github.com/vercel/workflow/commit/a5c90cefba01070aa4bc12a696334ee4c1061f92)]:
14+
- @workflow/world@5.0.0-beta.1
15+
- @workflow/world-vercel@5.0.0-beta.1
16+
- @workflow/world-local@5.0.0-beta.1
17+
- @workflow/errors@5.0.0-beta.0
18+
319
## 5.0.0-beta.0
420

521
### Major Changes

0 commit comments

Comments
 (0)