You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This extension derives the UI5 version in the following sequence:
43
+
44
+
1. The `minUI5Version` from the manifest.json file (see note)
45
+
2. Lookup in CDN for UI5 version and negotiate to the closest LTS version (see note).
46
+
3. If it is not found or the version is 1.38 or older, then default back to 1.71 (latest patch level). The framework (SAPUI5/OpenUI5) is derived from the ui5.yaml file. This defaults to SAPUI5.
47
+
48
+
Note: If `minUI5Version` not found in the manifest.json or lookup in CDN fails, then fall back to default 1.71.49 version
49
+
38
50
## Support
39
51
40
52
Please open [issues](https://github.com/SAP/ui5-language-assistant/issues) on github.
// version is out of support in LA, using default version
369
+
getLogger().warn(
370
+
`The version specified as minUI5Version in your manifest.json is not supported by Language Assistant, the fallback version ${DEFAULT_UI5_VERSION} is used instead`
371
+
);
372
+
adjustedVersion="1.71";
373
+
isIncorrectVersion=true;
374
+
}
375
+
364
376
if(!version){
365
377
// no version defined, using default version
366
378
getLogger().warn(
367
379
"No version defined! Please check the minUI5Version in your manifest.json!"
0 commit comments