@walkeros/cli 4.3.0-next-1781171238534 → 4.3.0-next-1783413963899
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 +56 -11
- package/dist/cli.js +3214 -2203
- package/dist/examples/flow-complete.json +0 -4
- package/dist/examples/index.js +0 -4
- package/dist/examples/index.js.map +1 -1
- package/dist/examples/web-serve.json +0 -4
- package/dist/index.d.ts +1114 -154
- package/dist/index.js +1314 -535
- package/dist/index.js.map +1 -1
- package/examples/flow-complete.json +0 -4
- package/examples/web-serve.json +0 -4
- package/openapi/spec.json +3285 -1735
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.3.0-next-
|
|
3
|
+
## 4.3.0-next-1783413963899
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
`
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 06c93b4: Update the runtime Docker base image to Node.js 22.23.0, which
|
|
20
|
+
patches the Node.js June 2026 security release. The `walkeros/flow` and
|
|
21
|
+
`walkeros/cli` images now pin a fixed, digest-locked Node version.
|
|
22
|
+
- Updated dependencies [e01036e]
|
|
23
|
+
- Updated dependencies [e01036e]
|
|
24
|
+
- @walkeros/collector@4.3.0-next-1783413963899
|
|
25
|
+
- @walkeros/core@4.3.0-next-1783413963899
|
|
26
|
+
- @walkeros/server-core@4.3.0-next-1783413963899
|
|
27
|
+
- @walkeros/server-destination-api@4.3.0-next-1783413963899
|
|
28
|
+
- @walkeros/transformer-validate@4.3.0-next-1783413963899
|
|
29
|
+
|
|
30
|
+
## 4.2.1
|
|
12
31
|
|
|
13
32
|
### Patch Changes
|
|
14
33
|
|
|
@@ -19,18 +38,44 @@
|
|
|
19
38
|
Failures print a stable, machine-readable error code (with a `Retry-After`
|
|
20
39
|
hint on rate limits), and `deploy create` no longer prints an empty token
|
|
21
40
|
placeholder.
|
|
41
|
+
- ec84331: The managed flow runner now retries its bundle, config, and secret
|
|
42
|
+
fetches on transient failures (timeouts, network errors, 5xx) with bounded,
|
|
43
|
+
jittered backoff capped well inside the container health window, and the
|
|
44
|
+
secret fetch is now bounded by a timeout. A brief outage while a flow
|
|
45
|
+
container starts no longer hard-fails the run.
|
|
46
|
+
- 4809699: The managed flow runner now reports its recent errors and recent log
|
|
47
|
+
output in its heartbeat, so deployed flows can surface runtime errors and logs
|
|
48
|
+
in the app without any external log tooling. Secrets are redacted before
|
|
49
|
+
leaving the runner.
|
|
50
|
+
- 5cbcd23: `walkeros run` reads two new environment variables.
|
|
51
|
+
`WALKEROS_OBSERVE_LEVEL` sets the runtime's baseline telemetry level (`off`,
|
|
52
|
+
`standard`, or `trace`). `WALKEROS_CONFIG_FROZEN` (`1` or `true`) serves the
|
|
53
|
+
bundle as an immutable snapshot: secrets are still injected at boot, but
|
|
54
|
+
config hot-swap and heartbeat are disabled.
|
|
22
55
|
- 5cbcd23: All four simulate functions (`simulateSource`, `simulateTransformer`,
|
|
23
56
|
`simulateCollector`, `simulateDestination`) accept a new `data` option to run
|
|
24
57
|
an existing bundle with updated configuration values, without rebundling. The
|
|
25
58
|
new `buildDataPayload`, `classifyStepProperties`, and `containsCodeMarkers`
|
|
26
59
|
exports build and inspect that payload. Destination simulation results now
|
|
27
60
|
include `mappingKey`, the entity-action key of the matched mapping rule.
|
|
61
|
+
- 8afb7cc: The runner registers its process-error guards before startup and
|
|
62
|
+
degrades its readiness check after repeated out-of-band errors, so a wedged
|
|
63
|
+
container is recycled instead of silently hot-looping. Heartbeats now flush
|
|
64
|
+
immediately on a new error and on shutdown, persist errors to disk so a
|
|
65
|
+
failure cause survives a restart, and report their configured interval.
|
|
66
|
+
- Updated dependencies [bd9188d]
|
|
67
|
+
- Updated dependencies [d8aebd1]
|
|
28
68
|
- Updated dependencies [5cbcd23]
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
69
|
+
- Updated dependencies [31c6858]
|
|
70
|
+
- Updated dependencies [d1b41ca]
|
|
71
|
+
- Updated dependencies [0a8a08b]
|
|
72
|
+
- Updated dependencies [8afb7cc]
|
|
73
|
+
- Updated dependencies [8afb7cc]
|
|
74
|
+
- @walkeros/collector@4.2.1
|
|
75
|
+
- @walkeros/core@4.2.1
|
|
76
|
+
- @walkeros/server-core@4.2.1
|
|
77
|
+
- @walkeros/server-destination-api@4.2.1
|
|
78
|
+
- @walkeros/transformer-validate@4.2.1
|
|
34
79
|
|
|
35
80
|
## 4.2.0
|
|
36
81
|
|