@walkeros/cli 4.3.0-next-1781171238534 → 4.3.0-next-1783517345197

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 CHANGED
@@ -1,14 +1,47 @@
1
1
  # @walkeros/cli
2
2
 
3
- ## 4.3.0-next-1781171238534
3
+ ## 4.3.0-next-1783517345197
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - 5cbcd23: `walkeros run` reads two new environment variables.
8
- `WALKEROS_OBSERVE_LEVEL` sets the runtime's baseline telemetry level (`off`,
9
- `standard`, or `trace`). `WALKEROS_CONFIG_FROZEN` (`1` or `true`) serves the
10
- bundle as an immutable snapshot: secrets are still injected at boot, but
11
- config hot-swap and heartbeat are disabled.
7
+ - e01036e: Web bundles no longer assign `window.elb`; the browser source owns
8
+ that global. The `windowElb` setting is deprecated: its value is forwarded to
9
+ the browser source's `config.settings.elb` with a warning, so custom global
10
+ names keep working.
11
+ - e01036e: Flow observation records now carry per-event journey correlation: a
12
+ W3C `traceparent` links a web send to the server flow that receives it, plus
13
+ the originating source id and a monotonic sequence that makes dropped
14
+ telemetry visible. At trace level, destinations can opt in to recording their
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.
28
+
29
+ ### Patch Changes
30
+
31
+ - 06c93b4: Update the runtime Docker base image to Node.js 22.23.0, which
32
+ patches the Node.js June 2026 security release. The `walkeros/flow` and
33
+ `walkeros/cli` images now pin a fixed, digest-locked Node version.
34
+ - Updated dependencies [e01036e]
35
+ - Updated dependencies [e01036e]
36
+ - Updated dependencies [98801c9]
37
+ - Updated dependencies [9506e3e]
38
+ - @walkeros/collector@4.3.0-next-1783517345197
39
+ - @walkeros/core@4.3.0-next-1783517345197
40
+ - @walkeros/server-core@4.3.0-next-1783517345197
41
+ - @walkeros/server-destination-api@4.3.0-next-1783517345197
42
+ - @walkeros/transformer-validate@4.3.0-next-1783517345197
43
+
44
+ ## 4.2.1
12
45
 
13
46
  ### Patch Changes
14
47
 
@@ -19,18 +52,44 @@
19
52
  Failures print a stable, machine-readable error code (with a `Retry-After`
20
53
  hint on rate limits), and `deploy create` no longer prints an empty token
21
54
  placeholder.
55
+ - ec84331: The managed flow runner now retries its bundle, config, and secret
56
+ fetches on transient failures (timeouts, network errors, 5xx) with bounded,
57
+ jittered backoff capped well inside the container health window, and the
58
+ secret fetch is now bounded by a timeout. A brief outage while a flow
59
+ container starts no longer hard-fails the run.
60
+ - 4809699: The managed flow runner now reports its recent errors and recent log
61
+ output in its heartbeat, so deployed flows can surface runtime errors and logs
62
+ in the app without any external log tooling. Secrets are redacted before
63
+ leaving the runner.
64
+ - 5cbcd23: `walkeros run` reads two new environment variables.
65
+ `WALKEROS_OBSERVE_LEVEL` sets the runtime's baseline telemetry level (`off`,
66
+ `standard`, or `trace`). `WALKEROS_CONFIG_FROZEN` (`1` or `true`) serves the
67
+ bundle as an immutable snapshot: secrets are still injected at boot, but
68
+ config hot-swap and heartbeat are disabled.
22
69
  - 5cbcd23: All four simulate functions (`simulateSource`, `simulateTransformer`,
23
70
  `simulateCollector`, `simulateDestination`) accept a new `data` option to run
24
71
  an existing bundle with updated configuration values, without rebundling. The
25
72
  new `buildDataPayload`, `classifyStepProperties`, and `containsCodeMarkers`
26
73
  exports build and inspect that payload. Destination simulation results now
27
74
  include `mappingKey`, the entity-action key of the matched mapping rule.
75
+ - 8afb7cc: The runner registers its process-error guards before startup and
76
+ degrades its readiness check after repeated out-of-band errors, so a wedged
77
+ container is recycled instead of silently hot-looping. Heartbeats now flush
78
+ immediately on a new error and on shutdown, persist errors to disk so a
79
+ failure cause survives a restart, and report their configured interval.
80
+ - Updated dependencies [bd9188d]
81
+ - Updated dependencies [d8aebd1]
28
82
  - Updated dependencies [5cbcd23]
29
- - @walkeros/core@4.3.0-next-1781171238534
30
- - @walkeros/collector@4.3.0-next-1781171238534
31
- - @walkeros/server-core@4.3.0-next-1781171238534
32
- - @walkeros/server-destination-api@4.3.0-next-1781171238534
33
- - @walkeros/transformer-validate@4.3.0-next-1781171238534
83
+ - Updated dependencies [31c6858]
84
+ - Updated dependencies [d1b41ca]
85
+ - Updated dependencies [0a8a08b]
86
+ - Updated dependencies [8afb7cc]
87
+ - Updated dependencies [8afb7cc]
88
+ - @walkeros/collector@4.2.1
89
+ - @walkeros/core@4.2.1
90
+ - @walkeros/server-core@4.2.1
91
+ - @walkeros/server-destination-api@4.2.1
92
+ - @walkeros/transformer-validate@4.2.1
34
93
 
35
94
  ## 4.2.0
36
95