@ui5/mcp-server 0.2.3 → 0.2.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 +13 -0
- package/lib/utils/ui5Manifest.js +2 -2
- package/npm-shrinkwrap.json +459 -423
- package/package.json +15 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.4](https://github.com/UI5/mcp-server/compare/v0.2.3...v0.2.4) (2026-01-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **run_manifest_validation:** Declare manifest schema version 1.68.0 as unsupported ([c477fd9](https://github.com/UI5/mcp-server/commit/c477fd9f197f8093938018b1e8d0ea1f41a00d2c))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* Bump @modelcontextprotocol/sdk from 1.25.2 to 1.25.3 ([ddf6c05](https://github.com/UI5/mcp-server/commit/ddf6c053d6c760176fec9df37170e2722dcbb1f3))
|
|
14
|
+
* Bump tar from 6.2.1 to 7.5.6 ([87ef280](https://github.com/UI5/mcp-server/commit/87ef280c0c500e3effce2ab72f573b4207a3b1fa))
|
|
15
|
+
|
|
3
16
|
## [0.2.3](https://github.com/UI5/mcp-server/compare/v0.2.2...v0.2.3) (2026-01-19)
|
|
4
17
|
|
|
5
18
|
|
package/lib/utils/ui5Manifest.js
CHANGED
|
@@ -8,8 +8,8 @@ const fetchSchemaMutex = new Mutex();
|
|
|
8
8
|
let UI5ToManifestVersionMapping = null;
|
|
9
9
|
const MAPPING_URL = "https://raw.githubusercontent.com/UI5/manifest/main/mapping.json";
|
|
10
10
|
const ui5ToManifestVersionMappingMutex = new Mutex();
|
|
11
|
-
// Manifests prior to 1.
|
|
12
|
-
const LOWEST_SUPPORTED_MANIFEST_VERSION = "1.
|
|
11
|
+
// Manifests prior to 1.69.0 use older meta-schema, which is not supported by the current implementation
|
|
12
|
+
const LOWEST_SUPPORTED_MANIFEST_VERSION = "1.69.0";
|
|
13
13
|
function getSchemaURL(manifestVersion) {
|
|
14
14
|
return `https://raw.githubusercontent.com/UI5/manifest/v${manifestVersion}/schema.json`;
|
|
15
15
|
}
|