@sap/ux-specification 1.71.150 → 1.71.151
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 +367 -330
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ListReportNew.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/index-min.js +192 -190
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/AnalyticalListPageConfig.json +3 -3
- package/dist/schemas/v2/ListReportConfig.json +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +1 -1
- package/dist/schemas/v2/ObjectPageConfig.json +4 -4
- package/dist/specification/package.json +13 -10
- package/dist/specification/scripts/extractDocu.js +18 -1
- package/dist/specification/scripts/extractDocu.js.map +1 -1
- package/dist/specification/src/sync/common/dist_tag.json +8 -3
- package/dist/specification/src/sync/common/utils.d.ts +22 -6
- package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/utils.js +122 -18
- package/dist/specification/src/sync/common/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/analyticalListReport.js +2 -0
- package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/listReport.js +3 -1
- package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/objectPage.js +2 -0
- package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/overviewPage.d.ts +1 -7
- package/dist/specification/src/sync/v2/generate/overviewPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/overviewPage.js +30 -1
- package/dist/specification/src/sync/v2/generate/overviewPage.js.map +1 -1
- package/dist/specification/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/app/appProvider.js +2 -0
- package/dist/specification/src/sync/v2/import/app/appProvider.js.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/analyticalListPage.d.ts +2 -1
- package/dist/specification/src/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/analyticalListPage.js +5 -0
- package/dist/specification/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/listReport.d.ts +2 -1
- package/dist/specification/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/listReport.js +5 -0
- package/dist/specification/src/sync/v2/import/pages/listReport.js.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/objectPage.js +2 -1
- package/dist/specification/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v2/import/utils.d.ts +28 -1
- package/dist/specification/src/sync/v2/import/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/utils.js +37 -0
- package/dist/specification/src/sync/v2/import/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +12 -2
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +19 -2
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/types/src/apiTypes.d.ts +2 -3
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/v2/controls/ObjectPageTable.d.ts +1 -1
- package/dist/types/src/v2/controls/Table.d.ts +1 -1
- package/package.json +14 -11
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,40 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
|
|
|
6
6
|
|
|
7
7
|
## Prerequisites
|
|
8
8
|
|
|
9
|
-
[Node.js](https://nodejs.org/en/download/) version `20.14.0` or higher
|
|
9
|
+
You have [Node.js](https://nodejs.org/en/download/) version `20.14.0` or higher installed
|
|
10
|
+
|
|
11
|
+
## [1.71.151] - 2026-03-05
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Enhanced the page schema by adding `manifestPath` support for overview page properties in OData V2 applications
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Fixed an issue with the `useExportToExcel` and other flex properties where two flex changes were created instead of one for object pages in OData V2 applications
|
|
20
|
+
- Enhanced the `manifestPath` to support relative paths for sections with shared reference.
|
|
21
|
+
|
|
22
|
+
### Quality
|
|
23
|
+
|
|
24
|
+
Upgrades:
|
|
25
|
+
|
|
26
|
+
| Package | Change |
|
|
27
|
+
| -------------------------------------------------------------------- | ------------------------ |
|
|
28
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.27.2` -> `0.27.3`] |
|
|
29
|
+
| [eslint](https://eslint.org) | [`9.39.2` -> `9.39.3`] |
|
|
30
|
+
| [i18next](https://www.i18next.com) | [`25.8.0` -> `25.8.13`] |
|
|
31
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) | [`1.35.2` -> `1.35.10`] |
|
|
32
|
+
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) | [`0.14.6` -> `0.15.0`] |
|
|
33
|
+
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) | [`0.9.8` -> `0.10.0`] |
|
|
34
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) | [`0.10.20` -> `0.10.21`] |
|
|
35
|
+
| [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped) | [`3.5.33` -> `3.5.34`] |
|
|
36
|
+
| [axios](https://axios-http.com) | [`1.13.5` -> `1.13.6`] |
|
|
37
|
+
| [tar](https://github.com/npm/node-tar) | [`7.5.9` -> `7.5.11`] |
|
|
10
38
|
|
|
11
39
|
## [1.71.150] - 2026-02-04
|
|
12
40
|
|
|
13
41
|
### Fixed
|
|
42
|
+
|
|
14
43
|
- Fixed multiple issues for the `manifestPath` calculation in the schema
|
|
15
44
|
- Fixed page support for the analytical list page in OData V2 applications
|
|
16
45
|
|
|
@@ -18,106 +47,113 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
|
|
|
18
47
|
|
|
19
48
|
Upgrades:
|
|
20
49
|
|
|
21
|
-
| Package
|
|
22
|
-
|
|
23
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
24
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter))
|
|
25
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
26
|
-
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types))
|
|
27
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | `8.53.1` → `8.54.0`
|
|
28
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
29
|
-
| [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint))
|
|
30
|
-
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
|
|
31
|
-
| [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser)
|
|
32
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
33
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
34
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
50
|
+
| Package | Change |
|
|
51
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- |
|
|
52
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | `1.12.0` → `1.13.5` |
|
|
53
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter)) | `0.10.19` → `0.10.20` |
|
|
54
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | `1.34.2` → `1.35.2` |
|
|
55
|
+
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | `0.14.5` → `0.14.6` |
|
|
56
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | `8.53.1` → `8.54.0` |
|
|
57
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | `8.53.1` → `8.54.0` |
|
|
58
|
+
| [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | `9.26.0` → `9.39.2` |
|
|
59
|
+
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.5` → `10.1.8` |
|
|
60
|
+
| [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) | `5.3.4` → `5.3.6` |
|
|
61
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | `25.7.4` → `25.8.0` |
|
|
62
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | `3.8.0` → `3.8.1` |
|
|
63
|
+
| [tar](https://github.com/isaacs/node-tar) | `7.5.7` → `7.5.9` |
|
|
35
64
|
|
|
36
65
|
## [1.71.149] - 2026-01-21
|
|
37
66
|
|
|
38
67
|
### Added
|
|
68
|
+
|
|
39
69
|
- Enhanced the page schema by adding `manifestPath` support for table properties and static nodes (such as the header and the root page level) for OData V2 applications
|
|
40
70
|
- Added support for the `CreateMode` property at the page level and application level for OData V2 applications
|
|
41
71
|
|
|
42
72
|
### Fixed
|
|
73
|
+
|
|
43
74
|
- Fixed an issue where the empty `sap.ui.generic.app` property was removed and an empty `chartSettings` property was added to the `manifest.json` file when exporting an overview page for OData V2 applications
|
|
44
75
|
|
|
45
76
|
### Quality
|
|
46
77
|
|
|
47
78
|
Upgrades:
|
|
48
79
|
|
|
49
|
-
| Package
|
|
50
|
-
|
|
51
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter))
|
|
52
|
-
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/edmx-parser))
|
|
53
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
54
|
-
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types))
|
|
55
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.51.0` -> `8.53.1`]
|
|
56
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
57
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
58
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
59
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
60
|
-
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema)
|
|
80
|
+
| Package | Change |
|
|
81
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
82
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter)) | [`0.10.9` -> `0.10.19`] |
|
|
83
|
+
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/edmx-parser)) | [`0.9.6` -> `0.9.8`] |
|
|
84
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.33.0` -> `1.34.2`] |
|
|
85
|
+
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | [`0.13.2` -> `0.14.5`] |
|
|
86
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.51.0` -> `8.53.1`] |
|
|
87
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.51.0` -> `8.53.1`] |
|
|
88
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.4` → `5.5.5`] |
|
|
89
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.7.3` -> `25.7.4`] |
|
|
90
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.6.2` → `3.8.0`] |
|
|
91
|
+
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.65.1` -> `0.67.1`] |
|
|
61
92
|
|
|
62
93
|
## [1.71.148] - 2026-01-07
|
|
63
94
|
|
|
64
95
|
### Added
|
|
96
|
+
|
|
65
97
|
- Introduced `manifestPath` property in v2/v4 App.json schemas to represent JSON path reference pointing to path in manifest.json file.
|
|
66
98
|
|
|
67
99
|
### Fixed
|
|
100
|
+
|
|
68
101
|
OData V2:
|
|
102
|
+
|
|
69
103
|
- OVP. Export issue - not possible to remove not allowed chart card properties
|
|
70
104
|
|
|
71
105
|
### Quality
|
|
72
106
|
|
|
73
107
|
Upgrades:
|
|
74
108
|
|
|
75
|
-
| Package
|
|
76
|
-
|
|
77
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
78
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
79
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
80
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.49.0` -> `8.51.0`]
|
|
81
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
109
|
+
| Package | Change |
|
|
110
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
111
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.32.12` -> `1.33.0`] |
|
|
112
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.3` -> `25.7.3`] |
|
|
113
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.27.1` → `0.27.2`] |
|
|
114
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.49.0` -> `8.51.0`] |
|
|
115
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.49.0` -> `8.51.0`] |
|
|
82
116
|
|
|
83
117
|
## [1.71.147] - 2025-11-26
|
|
84
118
|
|
|
85
119
|
### Added
|
|
120
|
+
|
|
86
121
|
- Enhanced the `readApp` API method:
|
|
87
|
-
|
|
88
|
-
|
|
122
|
+
- The method now returns an `applicationModel` where each page includes its own `TreeModel`
|
|
123
|
+
- Added the `skipParsing` option (default: false) to allow skipping page parsing and model generation
|
|
89
124
|
|
|
90
125
|
### Quality
|
|
91
126
|
|
|
92
127
|
Upgrades:
|
|
93
128
|
|
|
94
|
-
| Package
|
|
95
|
-
|
|
96
|
-
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types))
|
|
129
|
+
| Package | Change |
|
|
130
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
131
|
+
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | [`0.12.0` -> `0.13.2`] |
|
|
97
132
|
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.7` -> `0.10.9`] |
|
|
98
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
99
|
-
| [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery)
|
|
100
|
-
| [@types/mem-fs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mem-fs)
|
|
101
|
-
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema)
|
|
102
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
133
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.32.8` -> `1.32.9`] |
|
|
134
|
+
| [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery) | [`3.5.32` -> `3.5.33`] |
|
|
135
|
+
| [@types/mem-fs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mem-fs) | [`1.1.2` -> `1.1.5`] |
|
|
136
|
+
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema) | [-> `7.0.5`] |
|
|
137
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.0` -> `25.6.3`] |
|
|
103
138
|
|
|
104
139
|
## [1.71.146] - 2025-11-12
|
|
105
140
|
|
|
106
141
|
### Added
|
|
142
|
+
|
|
107
143
|
- Added the new API method `readApp`: a simpler wrapper around `importProject` that only requires the app parameter (path or `ApplicationAccess` instance)
|
|
108
144
|
|
|
109
145
|
### Quality
|
|
110
146
|
|
|
111
147
|
Upgrades:
|
|
112
148
|
|
|
113
|
-
| Package
|
|
114
|
-
|
|
115
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
116
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
117
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`]
|
|
118
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
119
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
120
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
149
|
+
| Package | Change |
|
|
150
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
151
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.0` -> `25.6.2`] |
|
|
152
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.11` -> `0.27.0`] |
|
|
153
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`] |
|
|
154
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.0` -> `8.46.2`] |
|
|
155
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.12.0` -> `1.13.2`] |
|
|
156
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.5.1` -> `7.5.2`] |
|
|
121
157
|
|
|
122
158
|
## [1.71.145] - 2025-10-29
|
|
123
159
|
|
|
@@ -125,12 +161,12 @@ Upgrades:
|
|
|
125
161
|
|
|
126
162
|
Upgrades:
|
|
127
163
|
|
|
128
|
-
| Package
|
|
129
|
-
|
|
130
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`]
|
|
131
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
132
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
133
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
164
|
+
| Package | Change |
|
|
165
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
|
|
166
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`] |
|
|
167
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.0` -> `8.46.2`] |
|
|
168
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.10` -> `0.25.11`] |
|
|
169
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.6` -> `0.10.7`] |
|
|
134
170
|
|
|
135
171
|
## [1.71.144] - 2025-10-15
|
|
136
172
|
|
|
@@ -138,16 +174,16 @@ Upgrades:
|
|
|
138
174
|
|
|
139
175
|
Upgrades:
|
|
140
176
|
|
|
141
|
-
| Package
|
|
142
|
-
|
|
143
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
144
|
-
| [patch-package](https://github.com/ds300/patch-package)
|
|
145
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
146
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
147
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
148
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
149
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.45.0` -> `8.46.0`] |
|
|
150
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
177
|
+
| Package | Change |
|
|
178
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
179
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.5.2` -> `25.6.0`] |
|
|
180
|
+
| [patch-package](https://github.com/ds300/patch-package) | [`8.0.0` -> `8.0.1`] |
|
|
181
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.9.2` -> `5.9.3`] |
|
|
182
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.5` -> `0.10.6`] |
|
|
183
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.4` -> `29.4.5`] |
|
|
184
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
|
|
185
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.45.0` -> `8.46.0`] |
|
|
186
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.45.0` -> `8.46.0`] |
|
|
151
187
|
|
|
152
188
|
## [1.71.143] - 2025-10-01
|
|
153
189
|
|
|
@@ -157,14 +193,14 @@ Upgrades:
|
|
|
157
193
|
|
|
158
194
|
- Upgraded TS target to `ES2023`
|
|
159
195
|
|
|
160
|
-
| Package
|
|
161
|
-
|
|
162
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
163
|
-
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser))
|
|
164
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
165
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.44.0` -> `8.45.0`]
|
|
166
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
167
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
196
|
+
| Package | Change |
|
|
197
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
198
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.1` -> `29.4.4`] |
|
|
199
|
+
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser)) | [`0.9.5` -> `0.9.6`] |
|
|
200
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.9` -> `0.25.10`] |
|
|
201
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.44.0` -> `8.45.0`] |
|
|
202
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.44.0` -> `8.45.0`] |
|
|
203
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
|
|
168
204
|
|
|
169
205
|
## [1.71.142] - 2025-09-17
|
|
170
206
|
|
|
@@ -172,14 +208,14 @@ Upgrades:
|
|
|
172
208
|
|
|
173
209
|
Upgrades:
|
|
174
210
|
|
|
175
|
-
| Package
|
|
176
|
-
|
|
177
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.42.0` -> `8.44.0`] |
|
|
178
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
179
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
180
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
181
|
-
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser))
|
|
182
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
211
|
+
| Package | Change |
|
|
212
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
213
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.42.0` -> `8.44.0`] |
|
|
214
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.42.0` -> `8.44.0`] |
|
|
215
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.11.0` -> `1.12.0`] |
|
|
216
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.3` -> `0.10.5`] |
|
|
217
|
+
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser)) | [`0.8.2` -> `0.9.5`] |
|
|
218
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.2` -> `25.5.2`] |
|
|
183
219
|
|
|
184
220
|
## [1.71.141] - 2025-09-03
|
|
185
221
|
|
|
@@ -191,11 +227,11 @@ OVP page. Properties from different card types on the OVP page were not imported
|
|
|
191
227
|
|
|
192
228
|
Upgrades:
|
|
193
229
|
|
|
194
|
-
| Package
|
|
195
|
-
|
|
196
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.40.0` -> `8.42.0`] |
|
|
197
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
198
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
230
|
+
| Package | Change |
|
|
231
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
232
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.40.0` -> `8.42.0`] |
|
|
233
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.40.0` -> `8.42.0`] |
|
|
234
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.0` -> `25.4.2`] |
|
|
199
235
|
|
|
200
236
|
## [1.71.140] - 2025-08-20
|
|
201
237
|
|
|
@@ -203,13 +239,13 @@ Upgrades:
|
|
|
203
239
|
|
|
204
240
|
Upgrades:
|
|
205
241
|
|
|
206
|
-
| Package
|
|
207
|
-
|
|
208
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.39.0` -> `8.40.0`] |
|
|
209
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
210
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
211
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
212
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
242
|
+
| Package | Change |
|
|
243
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
244
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.39.0` -> `8.40.0`] |
|
|
245
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.39.0` -> `8.40.0`] |
|
|
246
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.8` -> `0.25.9`] |
|
|
247
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.3` -> `5.5.4`] |
|
|
248
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.3.0` -> `25.4.0`] |
|
|
213
249
|
|
|
214
250
|
## [1.71.139] - 2025-08-06
|
|
215
251
|
|
|
@@ -217,13 +253,13 @@ Upgrades:
|
|
|
217
253
|
|
|
218
254
|
Upgrades:
|
|
219
255
|
|
|
220
|
-
| Package
|
|
221
|
-
|
|
222
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.37.0` -> `8.39.0`] |
|
|
223
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
224
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
225
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
226
|
-
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema)
|
|
256
|
+
| Package | Change |
|
|
257
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
258
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.37.0` -> `8.39.0`] |
|
|
259
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.37.0` -> `8.39.0`] |
|
|
260
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.8.3` -> `5.9.2`] |
|
|
261
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.0` -> `29.4.1`] |
|
|
262
|
+
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.57.0` -> `0.65.1`] |
|
|
227
263
|
|
|
228
264
|
## [1.71.138] - 2025-07-23
|
|
229
265
|
|
|
@@ -231,14 +267,14 @@ Upgrades:
|
|
|
231
267
|
|
|
232
268
|
Upgrades:
|
|
233
269
|
|
|
234
|
-
| Package
|
|
235
|
-
|
|
236
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
237
|
-
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
|
|
238
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
239
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.35.1` -> `8.37.0`] |
|
|
240
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
241
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
270
|
+
| Package | Change |
|
|
271
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
272
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.10.0` -> `1.11.0`] |
|
|
273
|
+
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | [`9.1.0` -> `9.1.2`] |
|
|
274
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.1` -> `5.5.3`] |
|
|
275
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.35.1` -> `8.37.0`] |
|
|
276
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.35.1` -> `8.37.0`] |
|
|
277
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.5` -> `0.25.8`] |
|
|
242
278
|
|
|
243
279
|
## [1.71.137] - 2025-07-09
|
|
244
280
|
|
|
@@ -246,12 +282,12 @@ Upgrades:
|
|
|
246
282
|
|
|
247
283
|
Upgrades:
|
|
248
284
|
|
|
249
|
-
| Package
|
|
250
|
-
|
|
285
|
+
| Package | Change |
|
|
286
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
251
287
|
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.35.0` -> `8.35.1`] |
|
|
252
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
253
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
254
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
288
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.35.0` -> `8.35.1`] |
|
|
289
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.5.3` -> `3.6.2`] |
|
|
290
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.0` -> `5.5.1`] |
|
|
255
291
|
|
|
256
292
|
## [1.71.136] - 2025-06-25
|
|
257
293
|
|
|
@@ -259,38 +295,40 @@ Upgrades:
|
|
|
259
295
|
|
|
260
296
|
Upgrades:
|
|
261
297
|
|
|
262
|
-
| Package
|
|
263
|
-
|
|
264
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
265
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
266
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
267
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
268
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.34.0` -> `8.35.0`] |
|
|
269
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
298
|
+
| Package | Change |
|
|
299
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
300
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.9.0` -> `1.10.0`] |
|
|
301
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | [`50.7.1` -> `50.8.0`] |
|
|
302
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.4.1` -> `5.5.0`] |
|
|
303
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.3.4` -> `29.4.0`] |
|
|
304
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.34.0` -> `8.35.0`] |
|
|
305
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.34.0` -> `8.35.0`] |
|
|
270
306
|
|
|
271
307
|
## [1.71.135] - 2025-06-11
|
|
272
308
|
|
|
273
309
|
### Added
|
|
274
310
|
|
|
275
311
|
OData V2:
|
|
312
|
+
|
|
276
313
|
- Schema generation - add link to documentation for "flexibleColumnLayout" property
|
|
277
314
|
|
|
278
315
|
### Fixed
|
|
279
316
|
|
|
280
317
|
OData V2:
|
|
318
|
+
|
|
281
319
|
- Schema generation - update description for "flexibleColumnLayout" property
|
|
282
320
|
|
|
283
321
|
### Quality
|
|
284
322
|
|
|
285
323
|
Upgrades:
|
|
286
324
|
|
|
287
|
-
| Package
|
|
288
|
-
|
|
289
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
290
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
291
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
292
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
293
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
325
|
+
| Package | Type | Update | Change |
|
|
326
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ----------------------- |
|
|
327
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.4` -> `0.25.5`] |
|
|
328
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | minor | [`50.6.17` -> `50.7.1`] |
|
|
329
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.4.0` -> `5.4.1`] |
|
|
330
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.32.1` -> `8.34.0`] |
|
|
331
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.32.1` -> `8.34.0`] |
|
|
294
332
|
|
|
295
333
|
## [1.71.134] - 2025-05-28
|
|
296
334
|
|
|
@@ -298,10 +336,10 @@ Upgrades:
|
|
|
298
336
|
|
|
299
337
|
Upgrades:
|
|
300
338
|
|
|
301
|
-
| Package
|
|
302
|
-
|
|
303
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
304
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch
|
|
339
|
+
| Package | Type | Update | Change |
|
|
340
|
+
| ------------------------------------------------------------------------------------------------- | --------------- | ------ | ------------------------ |
|
|
341
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.14` -> `50.6.17`] |
|
|
342
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch | [`29.3.2` -> `29.3.4`] |
|
|
305
343
|
|
|
306
344
|
## [1.71.133] - 2025-05-14
|
|
307
345
|
|
|
@@ -309,13 +347,13 @@ Upgrades:
|
|
|
309
347
|
|
|
310
348
|
Upgrades:
|
|
311
349
|
|
|
312
|
-
| Package
|
|
313
|
-
|
|
314
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
315
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
316
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
317
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
318
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
350
|
+
| Package | Type | Update | Change |
|
|
351
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ------------------------ |
|
|
352
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.11` -> `50.6.14`] |
|
|
353
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | minor | [`5.2.6` -> `5.4.0`] |
|
|
354
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.3` -> `0.25.4`] |
|
|
355
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.31.0` -> `8.32.1`] |
|
|
356
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.31.0` -> `8.32.1`] |
|
|
319
357
|
|
|
320
358
|
## [1.71.132] - 2025-04-30
|
|
321
359
|
|
|
@@ -323,14 +361,14 @@ Upgrades:
|
|
|
323
361
|
|
|
324
362
|
Upgrades:
|
|
325
363
|
|
|
326
|
-
| Package
|
|
327
|
-
|
|
328
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
329
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
330
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
331
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
332
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
333
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
364
|
+
| Package | Type | Update | Change |
|
|
365
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ----------------------- | --- | -------------------------------------------------------------------------- | --------------- | ----- | -------------------- |
|
|
366
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | minor | [`1.8.4` -> `1.9.0`] | | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | minor | [`1.8.4` -> `1.9.0`] |
|
|
367
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.9` -> `50.6.11`] |
|
|
368
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.2` -> `0.25.3`] |
|
|
369
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.29.1` -> `8.31.0`]) |
|
|
370
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.29.1` -> `8.31.0`] |
|
|
371
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch | [`29.3.1` -> `29.3.2`] |
|
|
334
372
|
|
|
335
373
|
## [1.71.131] - 2025-04-17
|
|
336
374
|
|
|
@@ -350,14 +388,13 @@ Upgrades:
|
|
|
350
388
|
|
|
351
389
|
Upgrades:
|
|
352
390
|
|
|
353
|
-
| Package
|
|
354
|
-
|
|
355
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
356
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
357
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | patch
|
|
358
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
359
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
360
|
-
|
|
391
|
+
| Package | Type | Update | Change |
|
|
392
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
393
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.8` -> `50.6.9`] |
|
|
394
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.2.5` -> `5.2.6`] |
|
|
395
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | patch | [`8.29.0` -> `8.29.1`] |
|
|
396
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | patch | [`8.29.0` -> `8.29.1`] |
|
|
397
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | patch | [`5.8.2` -> `5.8.3`] |
|
|
361
398
|
|
|
362
399
|
## [1.71.130] - 2025-04-02
|
|
363
400
|
|
|
@@ -365,15 +402,14 @@ Upgrades:
|
|
|
365
402
|
|
|
366
403
|
Upgrades:
|
|
367
404
|
|
|
368
|
-
| Package
|
|
369
|
-
|
|
370
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
371
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
372
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
373
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
374
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
375
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
376
|
-
|
|
405
|
+
| Package | Type | Update | Change |
|
|
406
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
407
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | patch | [`1.8.2` -> `1.8.4`] |
|
|
408
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.2.3` -> `5.2.5`] |
|
|
409
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | minor | [`29.2.6` -> `29.3.1`] |
|
|
410
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.1` -> `0.25.2`] |
|
|
411
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.26.1` -> `8.29.0`] |
|
|
412
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.26.1` -> `8.29.0`] |
|
|
377
413
|
|
|
378
414
|
## [1.71.129] - 2025-03-19
|
|
379
415
|
|
|
@@ -393,20 +429,20 @@ Upgrades:
|
|
|
393
429
|
|
|
394
430
|
Upgrades:
|
|
395
431
|
|
|
396
|
-
| Package
|
|
397
|
-
|
|
398
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
399
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
400
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | patch
|
|
401
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
402
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
403
|
-
|
|
432
|
+
| Package | Type | Update | Change |
|
|
433
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
434
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | devDependencies | minor | [`0.9.11` -> `0.10.3`] |
|
|
435
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | patch | [`1.8.1` -> `1.8.2`] |
|
|
436
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | patch | [`8.26.0` -> `8.26.1`] |
|
|
437
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | patch | [`8.26.0` -> `8.26.1`] |
|
|
438
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.0` -> `0.25.1`] |
|
|
404
439
|
|
|
405
440
|
## [1.71.128] - 2025-03-05
|
|
406
441
|
|
|
407
442
|
### Added
|
|
408
443
|
|
|
409
444
|
OData V2:
|
|
445
|
+
|
|
410
446
|
- Support of `cloudDevAdaptionStatus` internal setting
|
|
411
447
|
|
|
412
448
|
### Changed
|
|
@@ -421,14 +457,14 @@ OData V2:
|
|
|
421
457
|
|
|
422
458
|
Upgrades:
|
|
423
459
|
|
|
424
|
-
| Package
|
|
425
|
-
|
|
426
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
427
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
428
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
429
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
430
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
431
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
460
|
+
| Package | Type | Update | Change |
|
|
461
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
462
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.24.0` -> `8.26.0`] |
|
|
463
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.24.0` -> `8.26.0`] |
|
|
464
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | minor | [`1.7.9` -> `1.8.1`] |
|
|
465
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | patch | [`3.5.1` -> `3.5.3`] |
|
|
466
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch | [`29.2.5` -> `29.2.6`] |
|
|
467
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | minor | [`5.7.3` -> `5.8.2`] |
|
|
432
468
|
|
|
433
469
|
## [1.71.127] - 2025-02-19
|
|
434
470
|
|
|
@@ -448,12 +484,12 @@ Upgrades:
|
|
|
448
484
|
|
|
449
485
|
Upgrades:
|
|
450
486
|
|
|
451
|
-
| Package
|
|
452
|
-
|
|
453
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
454
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
455
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
456
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
487
|
+
| Package | Type | Update | Change |
|
|
488
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
489
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | minor | [`3.4.2` -> `3.5.1`] |
|
|
490
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | minor | [`0.24.2` -> `0.25.0`] |
|
|
491
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.23.0` -> `8.24.0`] |
|
|
492
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.23.0` -> `8.24.0`] |
|
|
457
493
|
|
|
458
494
|
## [1.71.126] - 2025-02-05
|
|
459
495
|
|
|
@@ -493,13 +529,12 @@ Upgrades:
|
|
|
493
529
|
|
|
494
530
|
Upgrades:
|
|
495
531
|
|
|
496
|
-
| Package
|
|
497
|
-
|
|
498
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
499
|
-
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor
|
|
500
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
501
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
502
|
-
|
|
532
|
+
| Package | Type | Update | Change |
|
|
533
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------------------------------------------------------------------------------------------- |
|
|
534
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | patch | [`5.7.2` -> `5.7.3`](https://renovatebot.com/diffs/npm/typescript/5.7.2/5.7.3) |
|
|
535
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.19.1` -> `8.20.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.19.1/8.20.0) |
|
|
536
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.19.1` -> `8.20.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.19.1/8.20.0) |
|
|
537
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.2.1` -> `5.2.3`](https://renovatebot.com/diffs/npm/eslint-plugin-prettier/5.2.1/5.2.3) |
|
|
503
538
|
|
|
504
539
|
## [1.71.124] - 2025-01-08
|
|
505
540
|
|
|
@@ -518,8 +553,9 @@ Upgrades:
|
|
|
518
553
|
### Quality
|
|
519
554
|
|
|
520
555
|
Upgrades:
|
|
521
|
-
|
|
522
|
-
- @typescript-eslint/
|
|
556
|
+
|
|
557
|
+
- @typescript-eslint/eslint-plugin (source) devDependencies minor 8.18.2 -> 8.19.1
|
|
558
|
+
- @typescript-eslint/parser (source) devDependencies minor 8.18.2 -> 8.19.1
|
|
523
559
|
- prettier to 3.4.2
|
|
524
560
|
- esbuild to 0.24.2
|
|
525
561
|
- npm-run-all2 to 7.0.2
|
|
@@ -533,7 +569,7 @@ Upgrades:
|
|
|
533
569
|
- @sap-ux/annotation-converter 0.9.9 -> 0.9.11
|
|
534
570
|
- @sap-ux/vocabularies-types 0.11.6 -> 0.12.0
|
|
535
571
|
- @sap-ux/vocabularies-types 0.11.6 -> 0.12.0
|
|
536
|
-
- @sap-ux/vocabularies-types 0.11.6 -> 0.12.0
|
|
572
|
+
- @sap-ux/vocabularies-types 0.11.6 -> 0.12.0
|
|
537
573
|
- typescript 5.6.3 -> 5.7.2
|
|
538
574
|
- i18next 23.16.5 -> 23.16.8
|
|
539
575
|
- @typescript-eslint/eslint-plugin 8.13.0 -> 8.15.0
|
|
@@ -566,7 +602,7 @@ Upgrades:
|
|
|
566
602
|
|
|
567
603
|
### Fixed
|
|
568
604
|
|
|
569
|
-
- An exception occurred if a view fragment was completely empty. This is now caught, leading to an error message in the log that better describes the root cause.
|
|
605
|
+
- An exception occurred if a view fragment was completely empty. This is now caught, leading to an error message in the log that better describes the root cause.
|
|
570
606
|
|
|
571
607
|
### Quality
|
|
572
608
|
|
|
@@ -623,10 +659,10 @@ Upgrades:
|
|
|
623
659
|
|
|
624
660
|
- Table views: new error handling for undefined keys.
|
|
625
661
|
- Corrections for API functions exportConfigEntityByPath and deleteConfigEntityByPath:
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
662
|
+
- change indicator was not set for manifest.json in v4.
|
|
663
|
+
- entityPath was not forwarded at overview pages.
|
|
664
|
+
- the check against entityPathArray did not consider intermediate anyOf definitions, and thus exited without executing the property change.
|
|
665
|
+
- FPM custom pages had not been considered by function `exportConfigEntityByPathV4`.
|
|
630
666
|
|
|
631
667
|
### Quality
|
|
632
668
|
|
|
@@ -784,7 +820,7 @@ Upgrades
|
|
|
784
820
|
### Changed
|
|
785
821
|
|
|
786
822
|
- In a previous version, the tag `descriptionSrcUrl` (link to the UI5 documentation) was added in form of a JSDoc annotation. It became evident that this annotation was not transferred correctly in all cases to the JSON schema by the to-json-schema generator.
|
|
787
|
-
To overcome this problem, `descriptionSrcUrl` is now placed in form of reflect metadata at all sync classes, and added to the schema by an own post-processing routine `processMetadata` that evaluates the reflect metadata.
|
|
823
|
+
To overcome this problem, `descriptionSrcUrl` is now placed in form of reflect metadata at all sync classes, and added to the schema by an own post-processing routine `processMetadata` that evaluates the reflect metadata.
|
|
788
824
|
|
|
789
825
|
### Removed
|
|
790
826
|
|
|
@@ -803,7 +839,7 @@ The logic that determines the LineItem and the Chart annotation to be used by AL
|
|
|
803
839
|
### Changed
|
|
804
840
|
|
|
805
841
|
- OData V2:
|
|
806
|
-
|
|
842
|
+
- Fragment templates for custom column extensions for AnalyticalTable, GridTable, TreeTable, ResponsiveTable
|
|
807
843
|
|
|
808
844
|
### Quality
|
|
809
845
|
|
|
@@ -893,9 +929,9 @@ Upgrades
|
|
|
893
929
|
### Added
|
|
894
930
|
|
|
895
931
|
- OData V2:
|
|
896
|
-
|
|
932
|
+
- Support of header facets on Object Page
|
|
897
933
|
- UX adjustments of inplace documentation:
|
|
898
|
-
|
|
934
|
+
- Support for screen readers and arrow navigation
|
|
899
935
|
|
|
900
936
|
### Quality
|
|
901
937
|
|
|
@@ -941,25 +977,25 @@ Upgrades
|
|
|
941
977
|
### Added
|
|
942
978
|
|
|
943
979
|
- UX adjustments of inplace documentation:
|
|
944
|
-
|
|
980
|
+
- Support of Keyboard Navigation
|
|
945
981
|
- OData V2: Support of global table settings for object pages
|
|
946
982
|
|
|
947
983
|
### Changed
|
|
948
984
|
|
|
949
985
|
- Alignment of settings for sap.ovp:
|
|
950
|
-
The global settings and card specific settings have been compared with the actual status of the documentation and the subschema as available at <https://www.npmjs.com/package/@ui5/manifest>. Missing settings have been added, obsolete settings have been eliminated.
|
|
951
|
-
The assignment of settings to the specific card types has been revised and adjusted.
|
|
986
|
+
The global settings and card specific settings have been compared with the actual status of the documentation and the subschema as available at <https://www.npmjs.com/package/@ui5/manifest>. Missing settings have been added, obsolete settings have been eliminated.
|
|
987
|
+
The assignment of settings to the specific card types has been revised and adjusted.
|
|
952
988
|
- Increased api version
|
|
953
|
-
- OData V2:
|
|
989
|
+
- OData V2: ALP root properties order
|
|
954
990
|
|
|
955
991
|
### Fixed
|
|
956
992
|
|
|
957
993
|
- Prevent exception in case of illegal annotationPath references of fields or columns
|
|
958
|
-
- OData V2:
|
|
994
|
+
- OData V2: ALP not displaying chart and properties
|
|
959
995
|
- OVP:
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
996
|
+
- In case of unknown properties, other card settings like listFlavor or listFlavor could get deleted.
|
|
997
|
+
- Property "Category" was shown with an initial value as object, although being of type string.
|
|
998
|
+
- Properties enableAddToInsights, imageSupported, showLineItemDetail, valueSelectionInfo might not have been exported correctly to the manifest.
|
|
963
999
|
|
|
964
1000
|
### Quality
|
|
965
1001
|
|
|
@@ -981,12 +1017,12 @@ Upgrades
|
|
|
981
1017
|
### Changed
|
|
982
1018
|
|
|
983
1019
|
- OVP card settings:
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
1020
|
+
- Added missing properties
|
|
1021
|
+
- Removed irrelevant settings from custom card settings
|
|
1022
|
+
- Assignment of settings to card types has been generally aligned with the given capabilities of SAP Fiori elements
|
|
987
1023
|
|
|
988
1024
|
- If problems had been posted to the log with regards to annotations, they normally ended with the information `location: webapp/localService/metadata.xml`. This location information might be misleading for edmx projects, as annotation may reside in a different file. It was always wrong for CAP projects.
|
|
989
|
-
Thus the location information is removed for annotation problems
|
|
1025
|
+
Thus the location information is removed for annotation problems
|
|
990
1026
|
|
|
991
1027
|
### Fixed
|
|
992
1028
|
|
|
@@ -1036,19 +1072,19 @@ Upgrades:
|
|
|
1036
1072
|
### Changed
|
|
1037
1073
|
|
|
1038
1074
|
- UX adjustments of inplace documentation:
|
|
1039
|
-
|
|
1075
|
+
- Harmonized the zoom behavior and removed the ability to scroll via the mouse wheel
|
|
1040
1076
|
|
|
1041
1077
|
### Removed
|
|
1042
1078
|
|
|
1043
|
-
- OData V2:
|
|
1044
|
-
|
|
1079
|
+
- OData V2:
|
|
1080
|
+
- Removed the `visibility` property for _addresses_ on subsections of the object page, as flexibility changes are not supported on this level
|
|
1045
1081
|
|
|
1046
1082
|
### Deprecated
|
|
1047
1083
|
|
|
1048
1084
|
### Fixed
|
|
1049
1085
|
|
|
1050
|
-
- OData V2:
|
|
1051
|
-
|
|
1086
|
+
- OData V2:
|
|
1087
|
+
- Fixed an issue with the selector ID of flexibility changes generated for **contacts** on the subsection level of object pages
|
|
1052
1088
|
|
|
1053
1089
|
### Quality
|
|
1054
1090
|
|
|
@@ -1091,12 +1127,12 @@ Upgrades:
|
|
|
1091
1127
|
### Added
|
|
1092
1128
|
|
|
1093
1129
|
- OData V2:
|
|
1094
|
-
|
|
1130
|
+
- Added support for standard header actions `Share` and `Up and Down Navigation`, and footer action `Save and Edit`
|
|
1095
1131
|
|
|
1096
1132
|
### Fixed
|
|
1097
1133
|
|
|
1098
1134
|
- OData V2:
|
|
1099
|
-
|
|
1135
|
+
- A missing entitySet definition for a page in manifest was not indicated correctly in the returned log. Even worse, the export deleted the related page in such a scenario. This is fixed now, the schema generation as well as the import are more fault-tolerant now with regards to this situation.
|
|
1100
1136
|
|
|
1101
1137
|
### Quality
|
|
1102
1138
|
|
|
@@ -1143,12 +1179,12 @@ Upgrades:
|
|
|
1143
1179
|
### Added
|
|
1144
1180
|
|
|
1145
1181
|
- OData V2:
|
|
1146
|
-
|
|
1182
|
+
- Added support for the binding pattern to `showHeaderContent` property
|
|
1147
1183
|
|
|
1148
1184
|
### Fixed
|
|
1149
1185
|
|
|
1150
1186
|
- OData V2:
|
|
1151
|
-
|
|
1187
|
+
- Schema was not completely filled for custom columns, enum values for fragmentName and cellsFragmentName had been partially missing
|
|
1152
1188
|
|
|
1153
1189
|
### Quality
|
|
1154
1190
|
|
|
@@ -1225,7 +1261,7 @@ Upgrades:
|
|
|
1225
1261
|
### Fixed
|
|
1226
1262
|
|
|
1227
1263
|
- OData V2:
|
|
1228
|
-
|
|
1264
|
+
- Fixed type of variant key for QuickVariantSelection (X) on tables to `string`.
|
|
1229
1265
|
|
|
1230
1266
|
### Quality
|
|
1231
1267
|
|
|
@@ -1268,9 +1304,9 @@ Upgrades:
|
|
|
1268
1304
|
### Added
|
|
1269
1305
|
|
|
1270
1306
|
- General:
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1307
|
+
- Enhancement of error handling, more explicit messages are passed to the logger.
|
|
1308
|
+
Fix of error handling of exceptions from annotation parser.
|
|
1309
|
+
- Fix for List Report with multiple views and Object pages on second level in Page map
|
|
1274
1310
|
|
|
1275
1311
|
### Quality
|
|
1276
1312
|
|
|
@@ -1306,6 +1342,7 @@ Upgrades:
|
|
|
1306
1342
|
- Update transitive dependencies
|
|
1307
1343
|
|
|
1308
1344
|
Upgrades:
|
|
1345
|
+
|
|
1309
1346
|
- @typescript-eslint/eslint-plugin and @typescript-eslint/parser to 5.58.0
|
|
1310
1347
|
|
|
1311
1348
|
## [1.71.82] - 2023-04-05
|
|
@@ -1315,6 +1352,7 @@ Upgrades:
|
|
|
1315
1352
|
- Update transitive dependencies
|
|
1316
1353
|
|
|
1317
1354
|
Upgrades:
|
|
1355
|
+
|
|
1318
1356
|
- excel4node to 1.8.1
|
|
1319
1357
|
- eslint-config-prettier to 8.8.0
|
|
1320
1358
|
- prettier to 2.8.7
|
|
@@ -1340,13 +1378,13 @@ Upgrades:
|
|
|
1340
1378
|
### Fixed
|
|
1341
1379
|
|
|
1342
1380
|
- OData V2:
|
|
1343
|
-
|
|
1381
|
+
- Fixed deletion issues for Custom Columns that appeared after positions were changed
|
|
1344
1382
|
|
|
1345
1383
|
### Quality
|
|
1346
1384
|
|
|
1347
1385
|
- Upgrade "typescript" to "4.9.4"
|
|
1348
|
-
- Upgrade "@typescript-eslint/eslint-plugin" and
|
|
1349
|
-
- Upgrade "ts-node" to "10.9.1"
|
|
1386
|
+
- Upgrade "@typescript-eslint/eslint-plugin" and "@typescript-eslint/parser" to "5.52.0"
|
|
1387
|
+
- Upgrade "ts-node" to "10.9.1"
|
|
1350
1388
|
- Revert "typescript-json-schema" to "0.53.0" in types package
|
|
1351
1389
|
|
|
1352
1390
|
## [1.71.79] - 2023-02-22
|
|
@@ -1379,7 +1417,7 @@ Upgrades:
|
|
|
1379
1417
|
### Added
|
|
1380
1418
|
|
|
1381
1419
|
- OData V2:
|
|
1382
|
-
|
|
1420
|
+
- Generation of `propertyIndex` property in schemas for root properties
|
|
1383
1421
|
|
|
1384
1422
|
### Quality
|
|
1385
1423
|
|
|
@@ -1390,12 +1428,12 @@ Upgrades:
|
|
|
1390
1428
|
### Changed
|
|
1391
1429
|
|
|
1392
1430
|
- API for OData V2:
|
|
1393
|
-
|
|
1431
|
+
- Inner functions for the generation of app schmas hav ben adapted, i.e. generateAnalyticalListReportSchemaV2, generateListReportSchemaV2, generateObjectPageSchemaV2: the entityTypeName is not passed as an input parameter anymore, as the entity set cannot be uniquely determined from it. Instead, the functions now rely on generateParameters.entitySet, the entityType is derived from this information. The api version is increased to 7.
|
|
1394
1432
|
|
|
1395
1433
|
### Fixed
|
|
1396
1434
|
|
|
1397
1435
|
- OData V2:
|
|
1398
|
-
|
|
1436
|
+
- Fixed deletion of fragment cells contents in case last element is deleted
|
|
1399
1437
|
|
|
1400
1438
|
### Quality
|
|
1401
1439
|
|
|
@@ -1408,11 +1446,11 @@ Upgrades:
|
|
|
1408
1446
|
### Changed
|
|
1409
1447
|
|
|
1410
1448
|
- UI adjustments of inplace documentation:
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1449
|
+
- moved label of specification and odata version to tree canvas
|
|
1450
|
+
- aligned behavior of tree buttons to expand (+) and collapse (-) with given design
|
|
1451
|
+
- removed all hard coded colors
|
|
1452
|
+
- fixed hover on search results
|
|
1453
|
+
- aligned tooltip with given design
|
|
1416
1454
|
|
|
1417
1455
|
### Fixed
|
|
1418
1456
|
|
|
@@ -1437,7 +1475,7 @@ Upgrades:
|
|
|
1437
1475
|
|
|
1438
1476
|
### Changed
|
|
1439
1477
|
|
|
1440
|
-
- General: the schema tag `key` (concatenated string) got replaced by the schema tag `keys` that is defined as an array of objects with `name`and `value`.
|
|
1478
|
+
- General: the schema tag `key` (concatenated string) got replaced by the schema tag `keys` that is defined as an array of objects with `name`and `value`. Reasons are the support of different CSS styles for `name` and `value` as well as globalization (bi-directional languages).
|
|
1441
1479
|
|
|
1442
1480
|
### Quality
|
|
1443
1481
|
|
|
@@ -1448,14 +1486,14 @@ Upgrades:
|
|
|
1448
1486
|
### Added
|
|
1449
1487
|
|
|
1450
1488
|
- Applications that show content from schemas may want to also display the technical key - this simplifies identification of the corresponding element in the original source file. To this aim, the tag `key` is used for properties. `key` is a concatenated string that also sows a prefix following one of the patterns:
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
In case of Target, an additional schema tag `target` is added: it not only represents the namespace but potentially also the target within the namespace (entity container, entity type, ...)
|
|
1458
|
-
|
|
1489
|
+
- Value for DataFields
|
|
1490
|
+
- Key for custom columns etc. where it is a key in the manifest. Only exception are views: they have no prefix as there is logic that programs against the key.
|
|
1491
|
+
- ID for facets
|
|
1492
|
+
- Action for any action
|
|
1493
|
+
- Instance-based navigation: Property + SemanticObject + Action
|
|
1494
|
+
- Target for DataFieldForAnnotation.
|
|
1495
|
+
In case of Target, an additional schema tag `target` is added: it not only represents the namespace but potentially also the target within the namespace (entity container, entity type, ...)
|
|
1496
|
+
|
|
1459
1497
|
### Changed
|
|
1460
1498
|
|
|
1461
1499
|
- Common dependencies have been moved to the root level.
|
|
@@ -1506,27 +1544,27 @@ In case of Target, an additional schema tag `target` is added: it not only repre
|
|
|
1506
1544
|
### Changed
|
|
1507
1545
|
|
|
1508
1546
|
- The specification module is now build with esbuild instead of webpack.
|
|
1509
|
-
The new build generates all type information into a types folder, which makes it easier to consume (but the consumption must be adapted). Examples:
|
|
1547
|
+
The new build generates all type information into a types folder, which makes it easier to consume (but the consumption must be adapted). Examples:
|
|
1510
1548
|
|
|
1511
|
-
|
|
1512
|
-
import { PageType } from '@sap/ux-specification/dist/src/specification/common/';
|
|
1549
|
+
```
|
|
1550
|
+
import { PageType } from '@sap/ux-specification/dist/src/specification/common/';
|
|
1513
1551
|
==> import { PageType } from '@sap/ux-specification/types';
|
|
1514
1552
|
|
|
1515
1553
|
import type { TableCustomColumns, TableCustomColumn } from '@sap/ux-specification/dist/src/v2';
|
|
1516
1554
|
==> import type { TableCustomColumns, TableCustomColumn } from '@sap/ux-specification/types/v2';
|
|
1517
|
-
|
|
1555
|
+
```
|
|
1518
1556
|
|
|
1519
1557
|
### Fixed
|
|
1520
1558
|
|
|
1521
1559
|
- OData V2:
|
|
1522
|
-
|
|
1560
|
+
- OP: Fixed incorrect generation of flexChanges in case of Form, Form Fields and Form Fields referenced from a navigation entity
|
|
1523
1561
|
|
|
1524
1562
|
## [1.71.65] - 2022-08-11
|
|
1525
1563
|
|
|
1526
1564
|
### Changed
|
|
1527
1565
|
|
|
1528
1566
|
- OData V2:
|
|
1529
|
-
|
|
1567
|
+
- Mark custom column 'columnIndex' property as hidden
|
|
1530
1568
|
|
|
1531
1569
|
## [1.71.64] - 2022-07-28
|
|
1532
1570
|
|
|
@@ -1548,12 +1586,12 @@ import type { TableCustomColumns, TableCustomColumn } from '@sap/ux-specificatio
|
|
|
1548
1586
|
### Fixed
|
|
1549
1587
|
|
|
1550
1588
|
- OData V2:
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1589
|
+
- OVP: LSP for `model` property of a card now lists models from sap.ui5 section of manifest.json
|
|
1590
|
+
- Table type property is now set to blank in case not maintained in manifest.json
|
|
1591
|
+
- If two sections of object page referred to an element (e.g. action, table column) of the same name, they had been sync'd by the program logic: changes of one property had also been reflected in the other.
|
|
1592
|
+
- One UI adaptation or flexibility change may have been shown multiple times in the config, at different sections.
|
|
1593
|
+
- No sorting by time took place before for flexibility changes, as a result an older change of the same property may have shown up instead of the newer one.
|
|
1594
|
+
- If several flexibility changes existed for the same control property, secondary ones had not been imported correctly: you could find them under a wrong property name in the config JSON file.
|
|
1557
1595
|
|
|
1558
1596
|
### Quality
|
|
1559
1597
|
|
|
@@ -1597,8 +1635,8 @@ Upgrade node & node-version to 14.x
|
|
|
1597
1635
|
### Fixed
|
|
1598
1636
|
|
|
1599
1637
|
- OData V2:
|
|
1600
|
-
|
|
1601
|
-
|
|
1638
|
+
- Sections and subsections with a reference to Communication.Contact or Communication.Address had not been shown, support of flexibility changes for them.
|
|
1639
|
+
- Facet or section references with multi-level navigation had not been handled correctly.
|
|
1602
1640
|
|
|
1603
1641
|
## [1.71.57] - 2022-04-21
|
|
1604
1642
|
|
|
@@ -1609,8 +1647,8 @@ Upgrade node & node-version to 14.x
|
|
|
1609
1647
|
### Fixed
|
|
1610
1648
|
|
|
1611
1649
|
- OData V2:
|
|
1612
|
-
|
|
1613
|
-
|
|
1650
|
+
- After an entry of quickVariantSelectionX got deleted, the entry still was present in manifest.json.
|
|
1651
|
+
- Sections of subordinate object pages had not been added correctly to the app schema in all cases.
|
|
1614
1652
|
|
|
1615
1653
|
### Quality
|
|
1616
1654
|
|
|
@@ -1626,8 +1664,8 @@ Upgrade node & node-version to 14.x
|
|
|
1626
1664
|
### Fixed
|
|
1627
1665
|
|
|
1628
1666
|
- OData V2:
|
|
1629
|
-
|
|
1630
|
-
|
|
1667
|
+
- Extensions - empty "extensions" object was created in "sap.ui5/"extends"/"extensions"/"sap.ui.viewExtensions"/"sap.suite.ui.generic.template.ListReport.view.ListReport".
|
|
1668
|
+
- Sections of subordinate object pages had not been added correctly to the app schema in all cases.
|
|
1631
1669
|
|
|
1632
1670
|
### Quality
|
|
1633
1671
|
|
|
@@ -1651,7 +1689,7 @@ minimist upgrade
|
|
|
1651
1689
|
### Fixed
|
|
1652
1690
|
|
|
1653
1691
|
- OData V2:
|
|
1654
|
-
|
|
1692
|
+
- duplicated fragment columns were written if table namespace was not found, and unknown custom data in fragment was not considered.
|
|
1655
1693
|
|
|
1656
1694
|
### Quality
|
|
1657
1695
|
|
|
@@ -1666,12 +1704,12 @@ minimist upgrade
|
|
|
1666
1704
|
### Added
|
|
1667
1705
|
|
|
1668
1706
|
- OData V2:
|
|
1669
|
-
|
|
1707
|
+
- visible property is now also available for facets without annotation Id
|
|
1670
1708
|
|
|
1671
1709
|
### Fixed
|
|
1672
1710
|
|
|
1673
1711
|
- OData V2:
|
|
1674
|
-
|
|
1712
|
+
- Creation of new flexChanges now considers resolved Id from pom.xml
|
|
1675
1713
|
|
|
1676
1714
|
### Quality
|
|
1677
1715
|
|
|
@@ -1683,7 +1721,7 @@ minimist upgrade
|
|
|
1683
1721
|
|
|
1684
1722
|
- Metadata information `dataType` added to various places in V2 and V4 schemas
|
|
1685
1723
|
- OData V2:
|
|
1686
|
-
|
|
1724
|
+
- display selection fields on LR/ALP
|
|
1687
1725
|
|
|
1688
1726
|
### Quality
|
|
1689
1727
|
|
|
@@ -1694,13 +1732,13 @@ minimist upgrade
|
|
|
1694
1732
|
### Added
|
|
1695
1733
|
|
|
1696
1734
|
- OData V2:
|
|
1697
|
-
|
|
1735
|
+
- Support column and footer action properties on LR
|
|
1698
1736
|
|
|
1699
1737
|
### Fixed
|
|
1700
1738
|
|
|
1701
1739
|
- OData V2:
|
|
1702
|
-
|
|
1703
|
-
|
|
1740
|
+
- OP: Fix generation of flexChanges for sections with or without ID in annotations
|
|
1741
|
+
- Fix issues with sync logic in case of sub object page
|
|
1704
1742
|
|
|
1705
1743
|
### Quality
|
|
1706
1744
|
|
|
@@ -1711,7 +1749,7 @@ minimist upgrade
|
|
|
1711
1749
|
### Added
|
|
1712
1750
|
|
|
1713
1751
|
- OData V2:
|
|
1714
|
-
|
|
1752
|
+
- `exportType` property can now be configured to specify the type of export to be used in the SmartTable control.
|
|
1715
1753
|
|
|
1716
1754
|
### Quality
|
|
1717
1755
|
|
|
@@ -1722,28 +1760,28 @@ minimist upgrade
|
|
|
1722
1760
|
### Added
|
|
1723
1761
|
|
|
1724
1762
|
- OData V2:
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1763
|
+
- OP: properties of footer actions are displayed and supported in side panel
|
|
1764
|
+
- properties of toolbar actions are displayed and supported in side panel
|
|
1765
|
+
- OVP: The property `showLineItemDetail` is now supported for List and Table cards
|
|
1766
|
+
- OP: Schema now supports column extensions for TreeTable
|
|
1729
1767
|
|
|
1730
1768
|
### Changed
|
|
1731
1769
|
|
|
1732
1770
|
- OData V2:
|
|
1733
|
-
|
|
1734
|
-
|
|
1771
|
+
- property `filterDefaultsFromSelectionVariant` is now only supported for AnalyticalListPage floorplan
|
|
1772
|
+
- OVP: The property `tabs` and `addOdataSelect` can now be confirued for all cards
|
|
1735
1773
|
|
|
1736
1774
|
### Removed
|
|
1737
1775
|
|
|
1738
1776
|
- OData V2:
|
|
1739
|
-
|
|
1777
|
+
- OVP: removed `tabs` property from card level
|
|
1740
1778
|
|
|
1741
1779
|
### Fixed
|
|
1742
1780
|
|
|
1743
1781
|
- OData V2:
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1782
|
+
- correct schema generation in case multiple facets are referring to lineitem annotation of same entity
|
|
1783
|
+
- Facet Id is considered for import and export of manifest settings
|
|
1784
|
+
- Fixed sync issues in case no text is provided for custom columns
|
|
1747
1785
|
|
|
1748
1786
|
### Quality
|
|
1749
1787
|
|
|
@@ -1794,22 +1832,22 @@ minimist upgrade
|
|
|
1794
1832
|
### Added
|
|
1795
1833
|
|
|
1796
1834
|
- OData V2:
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1835
|
+
- Support for (Sub)Section properties: `visible`.
|
|
1836
|
+
- Footer actions are now part of the schema. A node for header actions is visible even if there are no actions yet.
|
|
1837
|
+
- ALP: Schema now comprises of entity properties for config `createWithParameterDialog`->`fields`
|
|
1838
|
+
- OP: Added support for multiple flex changes in Form and Header Actions
|
|
1801
1839
|
|
|
1802
1840
|
### Removed
|
|
1803
1841
|
|
|
1804
1842
|
- OData V2:
|
|
1805
|
-
|
|
1843
|
+
- OVP: Removed `tab` property from `Stack` and `Link List` cards as view switch control is not supported
|
|
1806
1844
|
|
|
1807
1845
|
### Fixed
|
|
1808
1846
|
|
|
1809
1847
|
- OData V2:
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1848
|
+
- Add `visible` property to DataField types
|
|
1849
|
+
- Replace alias of namespace definitions of header actions even for references that are not related to OData vocabularies.
|
|
1850
|
+
- annotationPath definitions of header and footer actions.
|
|
1813
1851
|
|
|
1814
1852
|
### Quality
|
|
1815
1853
|
|
|
@@ -1822,14 +1860,14 @@ minimist upgrade
|
|
|
1822
1860
|
- Annotation path `com.sap.vocabularies.UI.v1.HeaderInfo` added to ObjectPageHeader schema.
|
|
1823
1861
|
- `i18nClassification` for `title`, `description` properties for `App.json` schema in V2.
|
|
1824
1862
|
- OData V2:
|
|
1825
|
-
|
|
1826
|
-
|
|
1863
|
+
- OVP: Added support for property `annotationPath` in Linklist card settings.
|
|
1864
|
+
- OVP: property `requireAppAuthorization` is now supported for all card types.
|
|
1827
1865
|
|
|
1828
1866
|
### Changed
|
|
1829
1867
|
|
|
1830
1868
|
- README was updated.
|
|
1831
1869
|
- Order and naming of view nodes for the V2 Object Page adapted.
|
|
1832
|
-
- Pattern for binding changes in V2: there are now two different patterns for List Report and Object Page; the one for the Object Page
|
|
1870
|
+
- Pattern for binding changes in V2: there are now two different patterns for List Report and Object Page; the one for the Object Page provides the additional enum values "{ui>/editable}" and "{= !${ui>/editable}}".
|
|
1833
1871
|
|
|
1834
1872
|
### Quality
|
|
1835
1873
|
|
|
@@ -1854,7 +1892,7 @@ The default for titles and labels of schema nodes - in case of missing annotatio
|
|
|
1854
1892
|
### Fixed
|
|
1855
1893
|
|
|
1856
1894
|
- OData V2:
|
|
1857
|
-
|
|
1895
|
+
- Invalid flexChanges are now ignored during sync, hence configs and pages files are created.
|
|
1858
1896
|
|
|
1859
1897
|
### Quality
|
|
1860
1898
|
|
|
@@ -1865,7 +1903,7 @@ The default for titles and labels of schema nodes - in case of missing annotatio
|
|
|
1865
1903
|
### Added
|
|
1866
1904
|
|
|
1867
1905
|
- OData V2:
|
|
1868
|
-
|
|
1906
|
+
- OVP: Added support for property `dataPointAnnotationPath` in ListCard settings
|
|
1869
1907
|
|
|
1870
1908
|
## [1.71.40] - 2021-08-25
|
|
1871
1909
|
|
|
@@ -1888,9 +1926,9 @@ The default for titles and labels of schema nodes - in case of missing annotatio
|
|
|
1888
1926
|
### Added
|
|
1889
1927
|
|
|
1890
1928
|
- OData V2:
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1929
|
+
- Added description property to header actions in schema
|
|
1930
|
+
- Table toolbar as structure node
|
|
1931
|
+
- Added properties showClearOnFB, showFilterConfiguration and showRestoreOnFB to the FilterBar
|
|
1894
1932
|
|
|
1895
1933
|
- Developer guide for contributors to this module
|
|
1896
1934
|
|
|
@@ -1899,8 +1937,8 @@ The default for titles and labels of schema nodes - in case of missing annotatio
|
|
|
1899
1937
|
- Enhanced error handling of API functions.
|
|
1900
1938
|
|
|
1901
1939
|
- The generic schema is enhanced by the following information:
|
|
1902
|
-
|
|
1903
|
-
|
|
1940
|
+
- artifact type (manifest setting, flex change or annotation)
|
|
1941
|
+
- in case of flex change: control name
|
|
1904
1942
|
|
|
1905
1943
|
### Changed
|
|
1906
1944
|
|
|
@@ -1913,7 +1951,7 @@ The default for titles and labels of schema nodes - in case of missing annotatio
|
|
|
1913
1951
|
- A common function was introduced to resolve path references of Common.Label annotations; endless loop references are interjected, the variable value or key is returned in this case.
|
|
1914
1952
|
- Enhance function determineTableType to also check for presence of old tableType flag in manifest.json
|
|
1915
1953
|
- OData V2:
|
|
1916
|
-
|
|
1954
|
+
- ALP: Use correct Id for flex changes generated in case of Filter Bar
|
|
1917
1955
|
|
|
1918
1956
|
### Quality
|
|
1919
1957
|
|
|
@@ -1961,9 +1999,9 @@ The default for titles and labels of schema nodes - in case of missing annotatio
|
|
|
1961
1999
|
|
|
1962
2000
|
- In the annotationPath information of the generated JSON schemas all alias definitions are now replaced by the full vocabulary name.
|
|
1963
2001
|
- Descriptions in the schema now follow the following paradigm:
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
2002
|
+
- For facets we need use title and description, the export logic takes the title and extracts the facet key from it for concatenating the stable ID. The text that shall be shown in the Page Editor shall be the description.
|
|
2003
|
+
- Thus we now generalise: all view nodes (isViewNode = true) have a description (but do not necessarily need a title).
|
|
2004
|
+
- Properties (no isViewNode tag) are not listed in the outline, but in the properties panel. Here, the title shall be used as a label, and the description shall be shown on hover (old UI) or rendered directly (new UI).
|
|
1967
2005
|
|
|
1968
2006
|
### Fixed
|
|
1969
2007
|
|
|
@@ -2150,7 +2188,7 @@ Added resolutions for
|
|
|
2150
2188
|
### Added
|
|
2151
2189
|
|
|
2152
2190
|
- The specification API now allows passing a logger, i.e. an instance of the new interface ExtensionLogger.
|
|
2153
|
-
If supplied, all messages resulting from the API processing will be passed to the logger instance instead of console.log.
|
|
2191
|
+
If supplied, all messages resulting from the API processing will be passed to the logger instance instead of console.log.
|
|
2154
2192
|
- OData V2: Support for Custom Columns in Object Page tables.
|
|
2155
2193
|
- OData V2: New extensionType property is added to Custom Column definition.
|
|
2156
2194
|
|
|
@@ -2180,7 +2218,7 @@ If supplied, all messages resulting from the API processing will be passed to th
|
|
|
2180
2218
|
### Added
|
|
2181
2219
|
|
|
2182
2220
|
- Support of custom columns for List Report and Analytical List Page of Fiori Elements V2: this includes read and write
|
|
2183
|
-
capabilities for both the manifest extension section and the fragment files; the API is enhanced by optional parameters so that the extension fragments can be passed.
|
|
2221
|
+
capabilities for both the manifest extension section and the fragment files; the API is enhanced by optional parameters so that the extension fragments can be passed.
|
|
2184
2222
|
- Support keyPerformanceIndicators(KPI) cards in Analytical list page
|
|
2185
2223
|
|
|
2186
2224
|
### Changed
|
|
@@ -2218,15 +2256,15 @@ capabilities for both the manifest extension section and the fragment files; the
|
|
|
2218
2256
|
### Added
|
|
2219
2257
|
|
|
2220
2258
|
- Full support for binding changes as an option for the property values of
|
|
2221
|
-
|
|
2222
|
-
|
|
2259
|
+
List report + ALP: hAlign of table columns, popinLayout
|
|
2260
|
+
Object page: popinLayout, displayShape, header actions, hAlign of table columns
|
|
2223
2261
|
|
|
2224
2262
|
### Changed
|
|
2225
2263
|
|
|
2226
2264
|
- Dependencies updated:
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2265
|
+
"@sap-ux/annotation-converter": "0.2.37",
|
|
2266
|
+
"@sap-ux/edmx-parser": "0.2.33,
|
|
2267
|
+
"@sap-ux/vocabularies-types": "0.2.33"
|
|
2230
2268
|
- OData V2: `showDraftToggle` property is now only part of List Report schema
|
|
2231
2269
|
|
|
2232
2270
|
### Fixed
|
|
@@ -2251,7 +2289,7 @@ capabilities for both the manifest extension section and the fragment files; the
|
|
|
2251
2289
|
### Added
|
|
2252
2290
|
|
|
2253
2291
|
- Table columns now have a description that appears on hover, showing the column header title as visible in the application at run-time.
|
|
2254
|
-
|
|
2292
|
+
This description is also visible at the input help (LSP) when chosing a column at any configuration file.
|
|
2255
2293
|
|
|
2256
2294
|
### Changed
|
|
2257
2295
|
|
|
@@ -2262,7 +2300,7 @@ capabilities for both the manifest extension section and the fragment files; the
|
|
|
2262
2300
|
- Property displayShape of Analytical List Page was not imported correctly.
|
|
2263
2301
|
- Generate correct app specific schema for ALP in V4
|
|
2264
2302
|
- Generation of app specific schemas generally ran into exceptions for apps without LineItem or Facet annotation.
|
|
2265
|
-
|
|
2303
|
+
To fix this, the schema generation got changed so that it runs over the existing pages as registered in manifest.json, instead of being based on the LineItem and Facet annotations.
|
|
2266
2304
|
|
|
2267
2305
|
### Quality
|
|
2268
2306
|
|
|
@@ -2361,7 +2399,6 @@ Test coverage increased
|
|
|
2361
2399
|
- New API `importProjectNoConfig` for generation of all schemas without generation of configs
|
|
2362
2400
|
- Fault-tolerance in case of incomplete app projects
|
|
2363
2401
|
- New properties for V2 applications:
|
|
2364
|
-
|
|
2365
2402
|
1. `tableColumnVerticalAlignment` (on app level)
|
|
2366
2403
|
2. Possibility to define different tableSettings per variant in case of multiple tabs
|
|
2367
2404
|
|
|
@@ -2386,7 +2423,7 @@ Test coverage increased
|
|
|
2386
2423
|
- Exception occured in case of free-style pages as part of the manifest
|
|
2387
2424
|
- Exception occured during the import of invalid UI flexibility changes
|
|
2388
2425
|
- Wrong ID's had been written to UI flexibility changes in case of (complex) annotation paths like columns of type DataFieldForAnnotation;
|
|
2389
|
-
|
|
2426
|
+
the changes then either disappeared after reload or had still been visible but without any implication on the app
|
|
2390
2427
|
|
|
2391
2428
|
## [1.71.8] - 2020-07-06
|
|
2392
2429
|
|
|
@@ -2425,7 +2462,7 @@ Test coverage increased
|
|
|
2425
2462
|
- Existing manifest settings now remain unaffected during export
|
|
2426
2463
|
- Handle partial deletion of a page from app.json
|
|
2427
2464
|
- Switch to annotation-vocabularies-tools to parse, merge and convert annotations.
|
|
2428
|
-
|
|
2465
|
+
This fixes issues with merged annotations.
|
|
2429
2466
|
- Added bundled dependency
|
|
2430
2467
|
|
|
2431
2468
|
## [1.71.5] - 2020-05-20
|
|
@@ -2455,7 +2492,7 @@ Test coverage increased
|
|
|
2455
2492
|
- Table type specific flex changes. For example: includeItemInSelection and popinLayout are only available for the responsive table
|
|
2456
2493
|
- Table type specific manifest changes. For example: createWithFilters is available for all the table types except tree table and condensedTableLayout is available in all object page table except responsive table
|
|
2457
2494
|
- Flex changes have no dedicated format in the API interface anymore, but are passed as an array of strings to importConfig, i.e. any file content can be passed immediately. The structure of a flex change thus is only known to the specification module and can change over time (aka UI5 release).
|
|
2458
|
-
|
|
2495
|
+
exportConfig is enhanced the same way.
|
|
2459
2496
|
- No need to supply annotations anymore while calling importConfig or exportConfig: the annotations are only evaluated during the generation of the app schema, all data which is necessary for subsequent import o export of config files will be comprised in this schema.
|
|
2460
2497
|
- Support export/import for OVP custom card.
|
|
2461
2498
|
|
|
@@ -2525,10 +2562,10 @@ Test coverage increased
|
|
|
2525
2562
|
### Added
|
|
2526
2563
|
|
|
2527
2564
|
- Specification for Fiori Element V2:
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2565
|
+
- List report
|
|
2566
|
+
- Object Page
|
|
2567
|
+
- Overview Page
|
|
2531
2568
|
- Specification for Fiori Elements V4:
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2569
|
+
- List Report
|
|
2570
|
+
- Object Page
|
|
2571
|
+
- Support of custom pages
|