@sap/cds-compiler 6.6.0 → 6.6.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
@@ -13,6 +13,12 @@ we might not list every change in its behavior here.
13
13
  Productive code should never require a `beta` flag to be set, and
14
14
  might use a deprecated flag only for a limited period of time.
15
15
 
16
+ ## Version 6.6.2 - 2026-01-16
17
+
18
+ ### Fixed
19
+
20
+ - for.effective: Don't resolve backlinks in aspects
21
+
16
22
  ## Version 6.6.0 - 2025-12-12
17
23
 
18
24
  ### Added
@@ -72,7 +72,7 @@ function turnAssociationsIntoUnmanaged( csn, options, transformerUtils, messageF
72
72
  * @param {object} messageFunctions
73
73
  */
74
74
  function transformBacklinks( csn, options, { csnUtils }, messageFunctions ) {
75
- forEachDefinition(csn, backlinks.getBacklinkTransformer(csnUtils, messageFunctions, options, '_', true));
75
+ forEachDefinition(csn, backlinks.getBacklinkTransformer(csnUtils, messageFunctions, options, '_', true), { skip: [ 'aspect' ] });
76
76
  }
77
77
 
78
78
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/cds-compiler",
3
- "version": "6.6.0",
3
+ "version": "6.6.2",
4
4
  "description": "CDS (Core Data Services) compiler and backends",
5
5
  "homepage": "https://cap.cloud.sap/",
6
6
  "author": "SAP SE (https://www.sap.com)",