@walkeros/cli 4.6.1 → 4.7.0-next-1790245733116
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 +62 -0
- package/dist/cli.js +10104 -11209
- package/dist/dev.d.ts +4 -25
- package/dist/dev.js +38 -47
- package/dist/dev.js.map +1 -1
- package/dist/examples/README.md +1 -0
- package/dist/examples/flow-complete.json +2 -4
- package/dist/examples/index.js +2 -4
- package/dist/examples/index.js.map +1 -1
- package/dist/index.d.ts +393 -262
- package/dist/index.js +1167 -3560
- package/dist/index.js.map +1 -1
- package/examples/README.md +1 -0
- package/examples/flow-complete.json +2 -4
- package/openapi/spec.json +10 -162
- package/package.json +11 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 4.7.0-next-1790245733116
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 06b498a: `walkeros bundle --manifest <url|path>` builds every artifact a build
|
|
8
|
+
manifest lists and uploads each one with a result. Declare build values in
|
|
9
|
+
`config.bundle.env`; they must be literal strings and supply `$env` in web
|
|
10
|
+
bundles. Step packages, overrides and their dependencies must now come from
|
|
11
|
+
the npm registry: git, file and URL specs are rejected.
|
|
12
|
+
- 06b498a: `@walkeros/cli` no longer depends on `express`, `cors` or `p-limit`.
|
|
13
|
+
Nothing in the CLI imported them, so an install is smaller and pulls fewer
|
|
14
|
+
transitive packages into your project. Commands and options are unchanged.
|
|
15
|
+
- ef02916: The `findExample` and `compareOutput` exports and the
|
|
16
|
+
`ExampleLookupResult` type were removed from `@walkeros/cli`.
|
|
17
|
+
- f5a1cfd: `walkeros validate` now reports unknown route targets as
|
|
18
|
+
`UNKNOWN_ROUTE_TARGET` errors and warns about entries after an unconditional
|
|
19
|
+
`stop` and about arrays that only pick the first match.
|
|
20
|
+
`walkeros push --simulate collector.default` runs enrichment plus
|
|
21
|
+
`collector.next`, `--mock collector.next.<id>` mocks one of its steps, and
|
|
22
|
+
simulating a transformer now continues through its `next`.
|
|
23
|
+
- ef02916: `walkeros validate` now reports a file path that does not exist or
|
|
24
|
+
does not contain valid JSON as an input error with exit code 3, instead of
|
|
25
|
+
validating the path string and failing the schema with exit code 1. Cross-step
|
|
26
|
+
example checks now include an object `out`, such as a source example that
|
|
27
|
+
produces a single walkerOS event, so incompatible connections are reported as
|
|
28
|
+
errors.
|
|
29
|
+
- 06b498a: `walkeros run` is removed, with no alias. Build a flow with
|
|
30
|
+
`walkeros bundle`, then start the prebuilt artifact with
|
|
31
|
+
`runneros start dist/flow.mjs`. The new `@walkeros/runner` package ships the
|
|
32
|
+
`runneros` binary without esbuild, pacote, jsdom or nft, and the
|
|
33
|
+
`walkeros/flow` image now runs it.
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- ef02916: `walkeros validate --path` no longer fails with
|
|
38
|
+
`unknown format "uri" ignored` for packages whose settings use URL or email
|
|
39
|
+
fields. Settings are still checked for structure, types and patterns; string
|
|
40
|
+
formats such as `uri` are not checked.
|
|
41
|
+
- 8f8aea6: Every step field now survives bundling. A transformer with only
|
|
42
|
+
`state` or `mapping`, and inline code steps with `cache` or `state`, were
|
|
43
|
+
silently dropped from the bundle before and did nothing at runtime. `mapping`
|
|
44
|
+
is now a typed transformer field, and bundles no longer carry `variables`.
|
|
45
|
+
- Updated dependencies [57788bc]
|
|
46
|
+
- Updated dependencies [06b498a]
|
|
47
|
+
- Updated dependencies [2aebc53]
|
|
48
|
+
- Updated dependencies [f5a1cfd]
|
|
49
|
+
- Updated dependencies [ef02916]
|
|
50
|
+
- Updated dependencies [06b498a]
|
|
51
|
+
- Updated dependencies [ef02916]
|
|
52
|
+
- Updated dependencies [2aebc53]
|
|
53
|
+
- Updated dependencies [f5a1cfd]
|
|
54
|
+
- Updated dependencies [f5a1cfd]
|
|
55
|
+
- Updated dependencies [2aebc53]
|
|
56
|
+
- Updated dependencies [8f8aea6]
|
|
57
|
+
- Updated dependencies [2aebc53]
|
|
58
|
+
- Updated dependencies [2aebc53]
|
|
59
|
+
- @walkeros/core@4.7.0-next-1790245733116
|
|
60
|
+
- @walkeros/server-core@4.7.0-next-1790245733116
|
|
61
|
+
- @walkeros/collector@4.7.0-next-1790245733116
|
|
62
|
+
- @walkeros/transformer-validate@4.7.0-next-1790245733116
|
|
63
|
+
- @walkeros/server-destination-api@4.7.0-next-1790245733116
|
|
64
|
+
|
|
3
65
|
## 4.6.1
|
|
4
66
|
|
|
5
67
|
### Patch Changes
|