@walkeros/cli 4.3.0-next-1783413963899 → 4.3.0-next-1783710078012
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 +29 -6
- package/dist/cli.js +939 -867
- package/dist/index.d.ts +240 -1
- package/dist/index.js +139 -61
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +285 -0
- 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-1783710078012
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -13,19 +13,42 @@
|
|
|
13
13
|
the originating source id and a monotonic sequence that makes dropped
|
|
14
14
|
telemetry visible. At trace level, destinations can opt in to recording their
|
|
15
15
|
outgoing vendor calls.
|
|
16
|
+
- 98801c9: Flow observation records now assemble into per-event journeys
|
|
17
|
+
spanning web and server flows, each hop showing input, output, and status,
|
|
18
|
+
with loss flagged; the `observe_journeys` MCP tool exposes the same journeys
|
|
19
|
+
to agents. Batching destinations now emit per-event records, and live-web
|
|
20
|
+
vendor calls are captured when a destination reaches its callable through
|
|
21
|
+
`getEnv`, though batched sends stay uncaptured.
|
|
22
|
+
- 9506e3e: Events now carry per-flow config provenance on
|
|
23
|
+
`event.source.release`, a flow-name to release map that accumulates as an
|
|
24
|
+
event crosses flows (web capture to server processing), so a delivered event
|
|
25
|
+
shows which config handled it. The collector no longer stamps `source.version`
|
|
26
|
+
(external source emitters may still set it). In this first version, aws and
|
|
27
|
+
gcp crossings are not yet covered.
|
|
16
28
|
|
|
17
29
|
### Patch Changes
|
|
18
30
|
|
|
31
|
+
- 07f0255: Bundling a flow whose step `package` carries an inline version (e.g.
|
|
32
|
+
`@walkeros/web-source-browser@2.1.0`) no longer fails package resolution: the
|
|
33
|
+
version suffix is parsed and honored instead of being treated as part of the
|
|
34
|
+
package name, and an explicit `config.bundle.packages` pin still wins. The
|
|
35
|
+
elbPreview loader now activates previews via a script-element swap instead of
|
|
36
|
+
a CORS-bound fetch probe, so previews work on any site regardless of CDN CORS
|
|
37
|
+
headers. The flow runtime also buffers bundle archives fully before
|
|
38
|
+
extraction, fixing a rare boot crash when the download stream ended while
|
|
39
|
+
extraction had it paused.
|
|
19
40
|
- 06c93b4: Update the runtime Docker base image to Node.js 22.23.0, which
|
|
20
41
|
patches the Node.js June 2026 security release. The `walkeros/flow` and
|
|
21
42
|
`walkeros/cli` images now pin a fixed, digest-locked Node version.
|
|
22
43
|
- Updated dependencies [e01036e]
|
|
23
44
|
- Updated dependencies [e01036e]
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
- @walkeros/
|
|
27
|
-
- @walkeros/
|
|
28
|
-
- @walkeros/
|
|
45
|
+
- Updated dependencies [98801c9]
|
|
46
|
+
- Updated dependencies [9506e3e]
|
|
47
|
+
- @walkeros/collector@4.3.0-next-1783710078012
|
|
48
|
+
- @walkeros/core@4.3.0-next-1783710078012
|
|
49
|
+
- @walkeros/server-core@4.3.0-next-1783710078012
|
|
50
|
+
- @walkeros/server-destination-api@4.3.0-next-1783710078012
|
|
51
|
+
- @walkeros/transformer-validate@4.3.0-next-1783710078012
|
|
29
52
|
|
|
30
53
|
## 4.2.1
|
|
31
54
|
|