@sap/cds-compiler 2.13.6 → 2.13.8
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 +6 -0
- package/lib/transform/db/flattening.js +1 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@
|
|
|
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 2.13.8 - 2022-03-29
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- to.hdbcds/hdi/sql: Correctly handle `localized` in conjunction with `@cds.persistence.exists` and `@cds.persistence.skip`
|
|
15
|
+
|
|
10
16
|
## Version 2.13.6 - 2022-25-03
|
|
11
17
|
|
|
12
18
|
### Fixed
|
|
@@ -574,10 +574,7 @@ function handleManagedAssociationsAndCreateForeignKeys(csn, options, error, path
|
|
|
574
574
|
if (options.toOdata)
|
|
575
575
|
transformers.params = createFks;
|
|
576
576
|
|
|
577
|
-
|
|
578
|
-
// artifacts that shall still be maintained from outside, filter them away in the rename script)
|
|
579
|
-
iterateOptions.skipIgnore = !(options.toOdata || options.toRename);
|
|
580
|
-
applyTransformations(csn, transformers, [], iterateOptions);
|
|
577
|
+
applyTransformations(csn, transformers, [], Object.assign({ skipIgnore: false }, iterateOptions));
|
|
581
578
|
|
|
582
579
|
/**
|
|
583
580
|
* Process a given .elements or .params dictionary and create foreign key elements
|