@sap/cds 6.8.3 → 6.8.4
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
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
5
5
|
- This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## Version 6.8.4 - 2023-06-14
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- `$metadata` requests for multitenant applications
|
|
12
|
+
|
|
7
13
|
## Version 6.8.3 - 2023-06-13
|
|
8
14
|
|
|
9
15
|
### Fixed
|
|
@@ -22,7 +22,7 @@ const metadata = service => {
|
|
|
22
22
|
const { 'cds.xt.ModelProviderService': mps } = cds.services
|
|
23
23
|
let edmx = mps
|
|
24
24
|
? await mps.getEdmx({ tenant, model: service.model, service: service.definition.name, locale })
|
|
25
|
-
: cds.mtx && cds.mtx.isExtended(tenant)
|
|
25
|
+
: cds.mtx && (await cds.mtx.isExtended(tenant))
|
|
26
26
|
? await cds.mtx.getEdmx(tenant, service.definition.name, locale)
|
|
27
27
|
: cds.localize(
|
|
28
28
|
service.model,
|