Skip to content

Commit 8f756fe

Browse files
author
workflow-devkit-release-bot[bot]
committed
Version Packages (beta)
1 parent 443a9e6 commit 8f756fe

33 files changed

Lines changed: 161 additions & 16 deletions

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@
160160
"cyan-ducks-wonder",
161161
"cyan-ravens-eat",
162162
"cyan-toes-wash",
163+
"dark-olives-fix",
163164
"dark-toys-melt",
164165
"deduplicate-configs",
165166
"deep-brooms-exist",
@@ -242,6 +243,7 @@
242243
"fix-project-config",
243244
"fix-provider-metadata-tool-calls",
244245
"fix-pseudo-package-bundling",
246+
"fix-public-manifest-dev",
245247
"fix-readme-header-svg-404",
246248
"fix-run-failed-schema",
247249
"fix-runtime-option",
@@ -551,6 +553,7 @@
551553
"stale-eagles-pay",
552554
"stale-towns-marry",
553555
"standardize-naming",
556+
"start-deploymentid-unknown-types",
554557
"step-handler-parallelization",
555558
"step-queue-idempotency-fix",
556559
"stream-chunk-bin-extension",
@@ -664,6 +667,7 @@
664667
"wide-wombats-poke",
665668
"wire-workflow-version",
666669
"wise-hornets-fetch",
670+
"wise-inks-ripe",
667671
"witty-jars-like",
668672
"witty-phones-doubt",
669673
"witty-toys-open",

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+
## 4.0.0-beta.51
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`443a9e6`](https://github.com/vercel/workflow/commit/443a9e62f938b91cd818106155d384329cf5c82c)]:
8+
- @workflow/builders@4.0.1-beta.68
9+
- @workflow/rollup@4.0.0-beta.34
10+
- @workflow/vite@4.0.0-beta.27
11+
312
## 4.0.0-beta.50
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": "4.0.0-beta.50",
3+
"version": "4.0.0-beta.51",
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+
## 4.0.1-beta.68
4+
5+
### Patch Changes
6+
7+
- [#1598](https://github.com/vercel/workflow/pull/1598) [`443a9e6`](https://github.com/vercel/workflow/commit/443a9e62f938b91cd818106155d384329cf5c82c) Thanks [@TooTallNate](https://github.com/TooTallNate)! - Override `"sideEffects": false` from `package.json` for discovered workflow/step/serde entries so esbuild does not drop their bare imports from the virtual entry
8+
9+
- Updated dependencies [[`047c01b`](https://github.com/vercel/workflow/commit/047c01bc1545845b4251a58a380e627ef164e6d5)]:
10+
- @workflow/core@4.2.0-beta.77
11+
312
## 4.0.1-beta.67
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": "4.0.1-beta.67",
3+
"version": "4.0.1-beta.68",
44
"description": "Shared builder infrastructure for Workflow SDK",
55
"type": "module",
66
"main": "./dist/index.js",

packages/cli/CHANGELOG.md

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

3+
## 4.2.0-beta.77
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`760ebf1`](https://github.com/vercel/workflow/commit/760ebf161b0382cd430657cd1d172e8861660c30), [`047c01b`](https://github.com/vercel/workflow/commit/047c01bc1545845b4251a58a380e627ef164e6d5), [`443a9e6`](https://github.com/vercel/workflow/commit/443a9e62f938b91cd818106155d384329cf5c82c)]:
8+
- @workflow/world-vercel@4.1.0-beta.48
9+
- @workflow/core@4.2.0-beta.77
10+
- @workflow/builders@4.0.1-beta.68
11+
- @workflow/web@4.1.0-beta.47
12+
313
## 4.2.0-beta.76
414

515
### 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": "4.2.0-beta.76",
3+
"version": "4.2.0-beta.77",
44
"description": "Command-line interface for Workflow SDK",
55
"type": "module",
66
"bin": {

packages/core/CHANGELOG.md

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

3+
## 4.2.0-beta.77
4+
5+
### Patch Changes
6+
7+
- [#1367](https://github.com/vercel/workflow/pull/1367) [`047c01b`](https://github.com/vercel/workflow/commit/047c01bc1545845b4251a58a380e627ef164e6d5) Thanks [@pranaygp](https://github.com/pranaygp)! - Make `start()` return `Run<unknown>` with `unknown[]` args when `deploymentId` is provided, since the deployed workflow version may have different types
8+
9+
- Updated dependencies [[`760ebf1`](https://github.com/vercel/workflow/commit/760ebf161b0382cd430657cd1d172e8861660c30)]:
10+
- @workflow/world-vercel@4.1.0-beta.48
11+
312
## 4.2.0-beta.76
413

514
### 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": "4.2.0-beta.76",
3+
"version": "4.2.0-beta.77",
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+
## 0.0.0-beta.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`443a9e6`](https://github.com/vercel/workflow/commit/443a9e62f938b91cd818106155d384329cf5c82c)]:
8+
- @workflow/builders@4.0.1-beta.68
9+
310
## 0.0.0-beta.25
411

512
### Patch Changes

0 commit comments

Comments
 (0)