Skip to content

Commit be05464

Browse files
committed
chore: update to UI5 version 1.132.1
- 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)
1 parent ad71230 commit be05464

File tree

184 files changed

+699
-632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+699
-632
lines changed

package-lock.json

Lines changed: 449 additions & 382 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

steps/01/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The manifest serves as a crucial configuration file for applications, components
6161

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

64-
- 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.
64+
- 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.
6565

6666
> 💡 **Tip:** <br>
6767
> To find the appropriate `_version` for each OpenUI5 release, see [Descriptor for Applications, Components, and Libraries \(manifest.json\)](https://sdk.openui5.org/topic/be0cf40f61184b358b5faedaec98b2da).

steps/02/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Next, we have to configure the tooling extension we installed from npm to our U
200200
```yaml
201201
framework:
202202
name: OpenUI5
203-
version: "1.131.1"
203+
version: "1.132.1"
204204
libraries:
205205
- name: sap.ui.core
206206
- name: themelib_sap_horizon

steps/02/ui5.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
type: application
55
framework:
66
name: OpenUI5
7-
version: "1.131.1"
7+
version: "1.132.1"
88
libraries:
99
- name: sap.ui.core
1010
- name: themelib_sap_horizon

steps/02/webapp/index-cdn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>UI5 TypeScript Walkthrough</title>
66
<script
77
id="sap-ui-bootstrap"
8-
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
8+
src="https://sdk.openui5.org/1.132.1/resources/sap-ui-core.js"
99
data-sap-ui-theme="sap_horizon"
1010
data-sap-ui-compat-version="edge"
1111
data-sap-ui-async="true"

steps/03/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"start": "ui5 serve -o index.html"
99
},
1010
"devDependencies": {
11-
"@types/openui5": "^1.131.0",
12-
"@ui5/cli": "^4.0.12",
13-
"typescript": "^5.7.2",
11+
"@types/openui5": "^1.132.0",
12+
"@ui5/cli": "^4.0.13",
13+
"typescript": "^5.7.3",
1414
"ui5-middleware-livereload": "^3.1.0",
1515
"ui5-middleware-serveframework": "^3.5.0",
1616
"ui5-tooling-transpile": "^3.7.1"

steps/03/ui5.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
type: application
55
framework:
66
name: OpenUI5
7-
version: "1.131.1"
7+
version: "1.132.1"
88
libraries:
99
- name: sap.m
1010
- name: sap.ui.core

steps/03/webapp/index-cdn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>UI5 TypeScript Walkthrough</title>
66
<script
77
id="sap-ui-bootstrap"
8-
src="https://sdk.openui5.org/1.131.1/resources/sap-ui-core.js"
8+
src="https://sdk.openui5.org/1.132.1/resources/sap-ui-core.js"
99
data-sap-ui-theme="sap_horizon"
1010
data-sap-ui-compat-version="edge"
1111
data-sap-ui-async="true"

steps/04/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"start": "ui5 serve -o index.html"
99
},
1010
"devDependencies": {
11-
"@types/openui5": "^1.131.0",
12-
"@ui5/cli": "^4.0.12",
13-
"typescript": "^5.7.2",
11+
"@types/openui5": "^1.132.0",
12+
"@ui5/cli": "^4.0.13",
13+
"typescript": "^5.7.3",
1414
"ui5-middleware-livereload": "^3.1.0",
1515
"ui5-middleware-serveframework": "^3.5.0",
1616
"ui5-tooling-transpile": "^3.7.1"

steps/04/ui5.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
type: application
55
framework:
66
name: OpenUI5
7-
version: "1.131.1"
7+
version: "1.132.1"
88
libraries:
99
- name: sap.m
1010
- name: sap.ui.core

0 commit comments

Comments
 (0)