@sap/cds-mtxs
Advanced tools
Comparing version 2.4.1 to 2.4.2
@@ -9,2 +9,8 @@ # Change Log | ||
## Version 2.4.2 - 2024-12-18 | ||
### Fixed | ||
- The annotation check of the extension linter can now properly handle extensions like `extend service CatalogService with @cds.query.limit;` | ||
## Version 2.4.1 - 2024-12-05 | ||
@@ -11,0 +17,0 @@ |
{ | ||
"name": "@sap/cds-mtxs", | ||
"version": "2.4.1", | ||
"version": "2.4.2", | ||
"description": "SAP Cloud Application Programming Model - Multitenancy library", | ||
@@ -5,0 +5,0 @@ "homepage": "https://cap.cloud.sap/", |
@@ -130,3 +130,3 @@ const LinterMessage = require('./message') | ||
const entityOrService = annotation.element.annotate ?? annotation.parent?.annotate ?? annotation.parent?.extend | ||
const entityOrService = annotation.element.annotate ?? annotation.element.extend ?? annotation.parent?.annotate ?? annotation.parent?.extend | ||
@@ -133,0 +133,0 @@ if (!extCsn.definitions[entityOrService]) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
262187