@saptools/service-flow 0.1.42 → 0.1.44
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 +14 -1
- package/dist/{chunk-RP3BJ64F.js → chunk-UKNPHTUS.js} +466 -323
- package/dist/chunk-UKNPHTUS.js.map +1 -0
- package/dist/cli.js +466 -485
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/cli/doctor.ts +398 -0
- package/src/cli.ts +9 -452
- package/src/indexer/cds-extension-resolver.ts +58 -19
- package/src/indexer/repository-indexer.ts +52 -26
- package/src/indexer/workspace-indexer.ts +17 -5
- package/src/linker/cross-repo-linker.ts +22 -2
- package/src/parsers/outbound-call-parser.ts +33 -20
- package/src/parsers/service-binding-parser-helpers.ts +160 -0
- package/src/parsers/service-binding-parser.ts +57 -242
- package/src/trace/evidence.ts +205 -0
- package/src/trace/trace-engine.ts +57 -106
- package/dist/chunk-RP3BJ64F.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.44
|
|
4
|
+
|
|
5
|
+
- Separated trace-time effective resolution evidence from persisted graph resolution, including runtime substitution details and missing `--var` suggestions.
|
|
6
|
+
- Added duplicate package-name implementation ambiguity evidence plus trace-time implementation repo hints for guided traversal.
|
|
7
|
+
- Aggregated strict doctor implementation candidate noise into actionable categories with capped examples.
|
|
8
|
+
- Tightened contextual binding, nested wrapper, OData invocation, and incremental publication atomicity regression coverage.
|
|
9
|
+
|
|
10
|
+
## 0.1.43
|
|
11
|
+
|
|
12
|
+
- Reconciled inherited CDS operation search rows from the exact effective-operation set during extension materialization.
|
|
13
|
+
- Invalidated concrete extension repositories when derived inherited operations or base resolution semantics change, while preserving no-op generations.
|
|
14
|
+
- Tightened lexical binding scope so nested block declarations inside catch and loop bodies do not escape their real blocks.
|
|
15
|
+
- Classified proven CAP `send(operationName, payload)` calls, including immutable aliases, without applying the rule to generic `send()` receivers.
|
|
16
|
+
|
|
3
17
|
## 0.1.42
|
|
4
18
|
|
|
5
19
|
- Continued inherited CDS extension operations into the selected base implementation while retaining concrete routing evidence.
|
|
@@ -281,4 +295,3 @@
|
|
|
281
295
|
## 0.1.0
|
|
282
296
|
|
|
283
297
|
- Initial `@saptools/service-flow` CLI package for indexing and tracing SAP CAP service flows.
|
|
284
|
-
|