@sap/cds-compiler 4.3.0 → 4.3.2
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
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
Note: `beta` fixes, changes and features are usually not listed in this ChangeLog but [here](doc/CHANGELOG_BETA.md).
|
|
8
8
|
The compiler behavior concerning `beta` features can change at any time without notice.
|
|
9
9
|
|
|
10
|
+
## Version 4.3.2 - 2023-10-25
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- compiler: Fix auto-exposure of composition target entities inside anonymous composition target aspects.
|
|
15
|
+
- to.hana: Fix a bug in association to join translation, expect ON condition operand to be a function without arguments.
|
|
16
|
+
|
|
10
17
|
## Version 4.3.0 - 2023-09-29
|
|
11
18
|
|
|
12
19
|
### Added
|
|
@@ -733,7 +733,8 @@ function translateAssocsToJoins(model, inputOptions = {})
|
|
|
733
733
|
// this will substitute multiple backlink conditions ($self = ... AND $self = ...AND ...)
|
|
734
734
|
if(expr.op) {
|
|
735
735
|
let x = clone(expr);
|
|
736
|
-
|
|
736
|
+
if(expr.args)
|
|
737
|
+
x.args = expr.args.map(cloneOnCondition);
|
|
737
738
|
return x;
|
|
738
739
|
}
|
|
739
740
|
|