@walkeros/cli 4.3.0-next-1783517345197 → 4.3.0-next-1784055686454
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -6
- package/dist/cli.js +956 -673
- package/dist/index.d.ts +162 -8
- package/dist/index.js +289 -107
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +186 -6
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.3.0-next-
|
|
3
|
+
## 4.3.0-next-1784055686454
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
to agents. Batching destinations now emit per-event records, and live-web
|
|
20
20
|
vendor calls are captured when a destination reaches its callable through
|
|
21
21
|
`getEnv`, though batched sends stay uncaptured.
|
|
22
|
+
- f8408fd: Preview links are now app-signed and bound to your site's origin,
|
|
23
|
+
verified locally in the bundle with no server round trip. Bundles that support
|
|
24
|
+
preview activation import a new `browserSwapActivator` from `@walkeros/core`.
|
|
25
|
+
The CLI wrap step's `preview` option replaces `previewOrigin`/`previewScope`,
|
|
26
|
+
and a new `previewGrantTargets` option lets a preview forward its grant to
|
|
27
|
+
server-bound destinations too.
|
|
22
28
|
- 9506e3e: Events now carry per-flow config provenance on
|
|
23
29
|
`event.source.release`, a flow-name to release map that accumulates as an
|
|
24
30
|
event crosses flows (web capture to server processing), so a delivered event
|
|
@@ -28,18 +34,28 @@
|
|
|
28
34
|
|
|
29
35
|
### Patch Changes
|
|
30
36
|
|
|
37
|
+
- 07f0255: Bundling a flow whose step `package` carries an inline version (e.g.
|
|
38
|
+
`@walkeros/web-source-browser@2.1.0`) no longer fails package resolution: the
|
|
39
|
+
version suffix is parsed and honored instead of being treated as part of the
|
|
40
|
+
package name, and an explicit `config.bundle.packages` pin still wins. The
|
|
41
|
+
elbPreview loader now activates previews via a script-element swap instead of
|
|
42
|
+
a CORS-bound fetch probe, so previews work on any site regardless of CDN CORS
|
|
43
|
+
headers. The flow runtime also buffers bundle archives fully before
|
|
44
|
+
extraction, fixing a rare boot crash when the download stream ended while
|
|
45
|
+
extraction had it paused.
|
|
31
46
|
- 06c93b4: Update the runtime Docker base image to Node.js 22.23.0, which
|
|
32
47
|
patches the Node.js June 2026 security release. The `walkeros/flow` and
|
|
33
48
|
`walkeros/cli` images now pin a fixed, digest-locked Node version.
|
|
34
49
|
- Updated dependencies [e01036e]
|
|
35
50
|
- Updated dependencies [e01036e]
|
|
36
51
|
- Updated dependencies [98801c9]
|
|
52
|
+
- Updated dependencies [f8408fd]
|
|
37
53
|
- Updated dependencies [9506e3e]
|
|
38
|
-
- @walkeros/collector@4.3.0-next-
|
|
39
|
-
- @walkeros/core@4.3.0-next-
|
|
40
|
-
- @walkeros/server-core@4.3.0-next-
|
|
41
|
-
- @walkeros/server-destination-api@4.3.0-next-
|
|
42
|
-
- @walkeros/transformer-validate@4.3.0-next-
|
|
54
|
+
- @walkeros/collector@4.3.0-next-1784055686454
|
|
55
|
+
- @walkeros/core@4.3.0-next-1784055686454
|
|
56
|
+
- @walkeros/server-core@4.3.0-next-1784055686454
|
|
57
|
+
- @walkeros/server-destination-api@4.3.0-next-1784055686454
|
|
58
|
+
- @walkeros/transformer-validate@4.3.0-next-1784055686454
|
|
43
59
|
|
|
44
60
|
## 4.2.1
|
|
45
61
|
|