Skip to content

Commit

Permalink
chore: update to UI5 version 1.132.1
Browse files Browse the repository at this point in the history
- Upgrade UI5 version to 1.132.1
- Upgrade minVersion of UI5 to 1.132
- Upgrade @types/openui5 to 1.132.0 (Currently, for @types/openui5 no patch releases are created)
  • Loading branch information
flovogt committed Feb 10, 2025
1 parent 3637eda commit 69c9732
Show file tree
Hide file tree
Showing 184 changed files with 1,512 additions and 2,567 deletions.
3,711 changes: 1,328 additions & 2,383 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion steps/01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The manifest file, also known as the "descriptor" or "app descriptor," serves as

Hence, we create a new file called `manifest.json` in the webapp folder and define its essential attributes:

- 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.
- 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.132. Therefore, we specify the descriptor format version as 1.68.0, aligning it with the appropriate OpenUI5 version.

> 💡 **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).
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.131.1"
version: "1.132.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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/03/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/04/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/05/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/06/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/07/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/08/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/09/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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 @@ -115,7 +115,7 @@ In our current scenario, we only have one model called `i18n`, which is a resour
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.131",
"minUI5Version": "1.132",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand Down
2 changes: 1 addition & 1 deletion steps/10/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.131",
"minUI5Version": "1.132",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand Down
2 changes: 1 addition & 1 deletion steps/11/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/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.131",
"minUI5Version": "1.132",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand Down
2 changes: 1 addition & 1 deletion steps/12/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
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.131.1"
version: "1.132.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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/12/webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.131",
"minUI5Version": "1.132",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand Down
2 changes: 1 addition & 1 deletion steps/13/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion steps/13/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.131.1"
version: "1.132.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
2 changes: 1 addition & 1 deletion steps/13/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.131.1/resources/sap-ui-core.js"
src="https://sdk.openui5.org/1.132.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/13/webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.131",
"minUI5Version": "1.132",
"libs": {
"sap.ui.core": {},
"sap.m": {}
Expand Down
2 changes: 1 addition & 1 deletion steps/14/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ui5 serve -o index.html"
},
"devDependencies": {
"@types/openui5": "^1.131.0",
"@types/openui5": "^1.132.0",
"@ui5/cli": "^4.0.12",
"typescript": "^5.7.2",
"ui5-middleware-livereload": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion steps/14/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.131.1"
version: "1.132.1"
libraries:
- name: sap.m
- name: sap.ui.core
Expand Down
Loading

0 comments on commit 69c9732

Please sign in to comment.