@ui5/manifest 2.3.0 → 2.3.1

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 CHANGED
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
5
5
  <a name="Unreleased"></a>
6
6
  ## [Unreleased]
7
7
 
8
+ <a name="v2.3.1"></a>
9
+ ## [v2.3.1] - 2025-12-09 (UI5 1.142)
10
+
11
+ ### Added
12
+ - sap.app: new value "4.01" for setting/odataVersion added
13
+
8
14
  <a name="v2.3.0"></a>
9
15
  ## [v2.3.0] - 2025-12-08 (UI5 1.142)
10
16
 
@@ -195,7 +201,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
195
201
  <a name="v1.48.1"></a>
196
202
  ## v1.48.1 - 2022-11-10
197
203
 
198
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...HEAD
204
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.3.1...HEAD
205
+ [v2.3.1]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...v2.3.1
199
206
  [v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
200
207
  [v2.2.0]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...v2.2.0
201
208
  [v2.1.1]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...v2.1.1
package/mapping.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "latest": "2.3.0",
3
- "1.142": "2.3.0",
2
+ "latest": "2.3.1",
3
+ "1.142": "2.3.1",
4
4
  "1.141": "2.2.0",
5
5
  "1.140": "2.1.1",
6
6
  "1.139": "2.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "This project contains the flattend json schema for the ui5 manifest.",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -94,7 +94,8 @@
94
94
  "2.1.0",
95
95
  "2.1.1",
96
96
  "2.2.0",
97
- "2.3.0"
97
+ "2.3.0",
98
+ "2.3.1"
98
99
  ]
99
100
  },
100
101
  "start_url": {
@@ -8582,7 +8583,8 @@
8582
8583
  "type": "string",
8583
8584
  "enum": [
8584
8585
  "2.0",
8585
- "4.0"
8586
+ "4.0",
8587
+ "4.01"
8586
8588
  ]
8587
8589
  },
8588
8590
  "localUri": {
package/schema_cil.json CHANGED
@@ -47,7 +47,8 @@
47
47
  "1.27.0",
48
48
  "1.28.0",
49
49
  "2.0.0",
50
- "2.1.0"
50
+ "2.1.0",
51
+ "2.1.1"
51
52
  ]
52
53
  },
53
54
  "start_url": {
@@ -3070,7 +3071,8 @@
3070
3071
  "type": "string",
3071
3072
  "enum": [
3072
3073
  "2.0",
3073
- "4.0"
3074
+ "4.0",
3075
+ "4.01"
3074
3076
  ]
3075
3077
  },
3076
3078
  "localUri": {
@@ -723,7 +723,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
723
723
  | "2.1.0"
724
724
  | "2.1.1"
725
725
  | "2.2.0"
726
- | "2.3.0";
726
+ | "2.3.0"
727
+ | "2.3.1";
727
728
  /**
728
729
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
729
730
  */
@@ -967,7 +968,7 @@ export interface Setting {
967
968
  /**
968
969
  * Represents version of OData: 2.0 is default
969
970
  */
970
- odataVersion?: "2.0" | "4.0";
971
+ odataVersion?: "2.0" | "4.0" | "4.01";
971
972
  /**
972
973
  * Represents path to local meta data document or annotation uri
973
974
  */
@@ -1022,7 +1023,7 @@ export interface Setting1 {
1022
1023
  /**
1023
1024
  * Represents version of OData: 2.0 is default
1024
1025
  */
1025
- odataVersion?: "2.0" | "4.0";
1026
+ odataVersion?: "2.0" | "4.0" | "4.01";
1026
1027
  /**
1027
1028
  * Represents path to local meta data document or annotation uri
1028
1029
  */