Skip to content

Commit

Permalink
chore: update to UI5 version 1.131.1
Browse files Browse the repository at this point in the history
  • Loading branch information
matz3 authored and flovogt committed Feb 10, 2025
1 parent 2b03834 commit ad71230
Show file tree
Hide file tree
Showing 184 changed files with 2,312 additions and 1,724 deletions.
3,439 changes: 2,013 additions & 1,426 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions steps/01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ The manifest serves as a crucial configuration file for applications, components

Let's start by creating a new file named `manifest.json` in the webapp folder and define its essential attributes:

- The `_version` attribute in the root is mandatory in the manifest. It indicates the format version of the manifest, which is crucial for identifying application settings whenever the file is read by various tools. As new features or changes are introduced in future versions, maintaining the correct version number ensures compatibility and precise interpretation of the manifest's contents.
- The `_version` attribute is a mandatory field in the app descriptor that indicates the format version of the descriptor. This attribute is crucial for identifying application settings when the descriptor is read by various tools. As new features or changes are introduced in future versions of the descriptor, the version number helps ensure compatibility and proper interpretation of the descriptor's contents. Consequently, with each new version of OpenUI5 a corresponding version of the app descriptor is released. For this tutorial, we have determined that our app requires a minimum OpenUI5 version of 1.131. Therefore, we specify the descriptor format version as 1.68.0, aligning it with the appropriate OpenUI5 version.

Since we want our app to support not only the latest OpenUI5 version but rather the latest long-term maintenance version, which is OpenUI5 1.120, we set the format version to `1.60.0`.
> 💡 **Tip:** <br>
> To find the appropriate `_version` for each OpenUI5 release, see [Descriptor for Applications, Components, and Libraries \(manifest.json\)](https://sdk.openui5.org/topic/be0cf40f61184b358b5faedaec98b2da).
> 📝 **Note:** <br>
> The manifest version should not necessarily align directly with the OpenUI5 version being used. Instead, choose the descriptor version that matches the requirements or supports the features you intend to use in your application.
Expand Down
2 changes: 1 addition & 1 deletion steps/02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Next, we have to configure the tooling extension we installed from npm to our U
```yaml
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.ui.core
- name: themelib_sap_horizon
Expand Down
2 changes: 1 addition & 1 deletion steps/02/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.ui.core
- name: themelib_sap_horizon
Expand Down
2 changes: 1 addition & 1 deletion steps/02/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/03/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/03/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/03/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/04/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/04/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/04/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/05/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/05/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/05/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/06/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/06/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/06/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/07/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/07/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/07/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/08/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/08/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/08/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
6 changes: 3 additions & 3 deletions steps/09/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/09/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/09/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
2 changes: 1 addition & 1 deletion steps/10/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ In our current scenario, we only have one model called `i18n`, which is a resour
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.120",
"minUI5Version": "1.131",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand Down
6 changes: 3 additions & 3 deletions steps/10/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/10/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/10/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
4 changes: 2 additions & 2 deletions steps/10/webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.120",
"minUI5Version": "1.131",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand All @@ -50,4 +50,4 @@
}
}
}
}
}
6 changes: 3 additions & 3 deletions steps/11/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/11/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/11/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
4 changes: 2 additions & 2 deletions steps/11/webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.120",
"minUI5Version": "1.131",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand All @@ -50,4 +50,4 @@
}
}
}
}
}
6 changes: 3 additions & 3 deletions steps/12/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.120.0",
"@ui5/cli": "^4.0.13",
"typescript": "^5.7.3",
"@types/openui5": "^1.131.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
"ui5-middleware-serveframework": "^3.5.0",
"ui5-tooling-transpile": "^3.7.1"
Expand Down
2 changes: 1 addition & 1 deletion steps/12/ui5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
type: application
framework:
name: OpenUI5
version: "1.129.0"
version: "1.131.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/12/webapp/index-cdn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>UI5 TypeScript Walkthrough</title>
<script
id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.129.0/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
Expand Down
Loading

0 comments on commit ad71230

Please sign in to comment.