@saptools/service-flow 0.1.57 → 0.1.59
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 +12 -0
- package/dist/{chunk-DCOFNDKS.js → chunk-GLZSDBRG.js} +580 -154
- package/dist/chunk-GLZSDBRG.js.map +1 -0
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/linker/003-package-import-symbol-resolver.ts +195 -0
- package/src/linker/cross-repo-linker.ts +2 -0
- package/src/parsers/000-direct-query-execution.ts +2 -0
- package/src/parsers/001-query-entity-resolution.ts +622 -0
- package/src/parsers/outbound-call-parser.ts +7 -94
- package/dist/chunk-DCOFNDKS.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.59
|
|
4
|
+
|
|
5
|
+
- Fixed RC-A by making local DB query entities lexical-binding-aware: parameters, simple mutable locals, runtime const aliases, destructuring from runtime or reassigned sources, and direct `this.<field>` targets now remain dynamic at the existing low-confidence warning path instead of becoming fabricated entities.
|
|
6
|
+
- Preserved concrete imported/global and string entities, bounded immutable aliases, literal element access, `<x>.entities.Name`, and P1/P2/P3 entity destructuring from CAP entity collections or `#cds-models`; aliased destructuring records the public source property. Direct `this.<field>` entity caches deliberately pay the fail-closed compatibility cost, including in isolated remote-query hints, while remote identifier reparsing remains a known follow-up.
|
|
7
|
+
- Fixed RC-B by recognizing `SELECT.distinct.from` and `SELECT.distinct.one.from` as CAP query-builder roots for both direct and `cds.run(...)` execution, retaining one fact per fluent statement without schema, linker, trace, or output-shape changes.
|
|
8
|
+
|
|
9
|
+
## 0.1.58
|
|
10
|
+
|
|
11
|
+
- Completed RC5 with a deterministic link-phase workspace pass that resolves package-import symbol calls to uniquely matching exported symbols in uniquely identified indexed sibling packages, including package subpath imports and receiver-qualified member calls.
|
|
12
|
+
- Kept external packages, same-repository imports, missing or non-exported names, unsafe aliases/default imports, deeper member chains, duplicate package mappings, and duplicate exported targets fail-closed as unresolved or ambiguous.
|
|
13
|
+
- Recomputed owned package-import rows on every link without a schema, edge, trace-engine, or CLI output change, preserving bounded evidence and cross-package `local_symbol_call` trace descent across repeated link and force-index/relink runs.
|
|
14
|
+
|
|
3
15
|
## 0.1.57
|
|
4
16
|
|
|
5
17
|
- Made local executable symbol-call resolution import-binding-aware: relative helper shadowing now bypasses same-file methods (RC1), namespace members resolve within their imported module (RC2), duplicate exports use fail-closed path disambiguation while barrels remain ambiguous (RC3), and singleton-accessor chains reach non-exported instance methods in the imported class module (RC4).
|