@sap/ux-specification 1.84.130 → 1.84.132
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 +477 -413
- 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/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +193 -185
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/AnalyticalListPageConfig.json +3 -3
- package/dist/schemas/v2/ListReportConfig.json +5 -5
- package/dist/schemas/v2/ListReportNewConfig.json +1 -1
- package/dist/schemas/v2/ObjectPageConfig.json +5 -5
- 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/scripts/generate-validity-report.d.ts +15 -0
- package/dist/specification/scripts/generate-validity-report.d.ts.map +1 -0
- package/dist/specification/scripts/generate-validity-report.js +320 -0
- package/dist/specification/scripts/generate-validity-report.js.map +1 -0
- package/dist/specification/src/i18n/i18n.d.ts.map +1 -1
- package/dist/specification/src/i18n/i18n.js +2 -1
- package/dist/specification/src/i18n/i18n.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +501 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.js +497 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +116 -24
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +308 -78
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.d.ts +1 -0
- package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.js +1 -0
- package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
- package/dist/specification/src/sync/common/dist_tag.json +8 -3
- package/dist/specification/src/sync/common/i18n.json +2 -1
- package/dist/specification/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/specification/src/sync/common/importProject.js +2 -0
- package/dist/specification/src/sync/common/importProject.js.map +1 -1
- 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 +9 -7
- 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 +58 -2
- package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/overviewPage.d.ts +1 -8
- 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/specification/src/sync/v4/application.d.ts +39 -4
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +67 -6
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +2 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js +2 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +2 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +2 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +19 -6
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +24 -8
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/TableColumn.js +2 -2
- package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +2 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +2 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/export.js +28 -5
- package/dist/specification/src/sync/v4/export/export.js.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/index.d.ts +1 -1
- package/dist/specification/src/sync/v4/generate/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/index.js +1 -1
- package/dist/specification/src/sync/v4/generate/index.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +72 -0
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +299 -0
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/{listReport.d.ts → list-report/listReport.d.ts} +24 -14
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/{listReport.js → list-report/listReport.js} +113 -128
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +93 -16
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/listReport.js +15 -9
- package/dist/specification/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts +9 -7
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js +4 -8
- package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -9
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +2 -11
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +219 -96
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +557 -211
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +17 -22
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.js +15 -22
- package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/index.d.ts +5 -0
- package/dist/specification/src/sync/v4/sync-rules/index.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/index.js +21 -0
- package/dist/specification/src/sync/v4/sync-rules/index.js.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/utils.js +4 -0
- package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/index.d.ts +2 -0
- package/dist/specification/src/sync/v4/utils/index.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/utils/index.js +18 -0
- package/dist/specification/src/sync/v4/utils/index.js.map +1 -0
- package/dist/specification/src/sync/v4/utils/utils.d.ts +9 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +19 -4
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/specification/test/test-projects/v2sttaProdMan2/webapp/manifest.json +549 -0
- package/dist/specification/test/test-projects/v4new/webapp/manifest.json +147 -0
- package/dist/specification/test/test-utils/utils.d.ts +55 -0
- package/dist/specification/test/test-utils/utils.d.ts.map +1 -0
- package/dist/specification/test/test-utils/utils.js +346 -0
- package/dist/specification/test/test-utils/utils.js.map +1 -0
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +274 -0
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -0
- package/dist/specification/test/unit/decorators/validity-test-utils.js +583 -0
- package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -0
- 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/common/types.d.ts +119 -13
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.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 +13 -10
- package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts +0 -74
- package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts.map +0 -1
- package/dist/specification/src/sync/v4/generate/ListReportUtils.js +0 -262
- package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +0 -1
- package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +0 -1
- package/dist/specification/src/sync/v4/generate/listReport.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,15 +6,74 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
|
|
|
6
6
|
|
|
7
7
|
## What's new with version 1.84
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
_Official support of OData V4_
|
|
10
10
|
|
|
11
11
|
## Prerequisites
|
|
12
12
|
|
|
13
|
-
[Node.js](https://nodejs.org/en/download/) version `20.14.0` or higher
|
|
13
|
+
You have [Node.js](https://nodejs.org/en/download/) version `20.14.0` or higher installed
|
|
14
|
+
|
|
15
|
+
## [1.84.132] - 2026-03-19
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Enhanced the object page schema by adding `manifestPath` support for chart sections, custom sections, and analytical list pages in OData V2 applications
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Fixed the initialization configuration of `i18next`
|
|
24
|
+
|
|
25
|
+
### Quality
|
|
26
|
+
|
|
27
|
+
Upgrades:
|
|
28
|
+
|
|
29
|
+
| Package | Change |
|
|
30
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
|
|
31
|
+
| [@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.35.10` -> `1.35.13`] |
|
|
32
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.5.9` -> `7.5.11`] |
|
|
33
|
+
| [i18next](https://www.i18next.com) | [`25.8.13` -> `25.8.18`] |
|
|
34
|
+
| [eslint](https://eslint.org) | [`9.39.3` -> `9.39.4`] |
|
|
35
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.27.3` -> `0.27.4`] |
|
|
36
|
+
| [@typescript-eslint/eslint-plugin](https://typescript-eslint.io) | [`8.54.0` -> `8.57.1`] |
|
|
37
|
+
| [@typescript-eslint/parser](https://typescript-eslint.io) | [`8.54.0` -> `8.57.1`] |
|
|
38
|
+
|
|
39
|
+
## [1.84.131] - 2026-03-05
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
|
|
43
|
+
- Enhanced the page schema by adding `manifestPath` support for actions, sections, columns, fields, and filter fields in OData V4 applications
|
|
44
|
+
- Enhanced the page schema by adding `manifestPath` support for overview page properties in OData V2 applications
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- 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
|
|
49
|
+
- Fixed an issue where an empty view setup was defined with `"showCounts": true` which led to a "Cannot read properties of undefined (reading 'length') error"
|
|
50
|
+
- Fixed an issue where the `creationMode/name` property pointed to a table in an incorrect section and the `$ref` schema was incorrectly shared between sections
|
|
51
|
+
- Fixed an issue where views with an entitySet were not imported and couldn't be deleted.
|
|
52
|
+
- Fixed an issue where a crash occurred during schema generation when a selection field has no value. Added a warning message instead.
|
|
53
|
+
- Fixed an issue where `undefined.position` is created in `manifest.json` during view creation/deletion for OData V4 applications.
|
|
54
|
+
- Fixed an issue where wrong `entityType` was resolved for `ListReport` page generation when `NavigationProperty` has `Partner` attribute.
|
|
55
|
+
|
|
56
|
+
### Quality
|
|
57
|
+
|
|
58
|
+
Upgrades:
|
|
59
|
+
|
|
60
|
+
| Package | Change |
|
|
61
|
+
| -------------------------------------------------------------------- | ------------------------ |
|
|
62
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.27.2` -> `0.27.3`] |
|
|
63
|
+
| [eslint](https://eslint.org) | [`9.39.2` -> `9.39.3`] |
|
|
64
|
+
| [i18next](https://www.i18next.com) | [`25.8.0` -> `25.8.13`] |
|
|
65
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) | [`1.35.2` -> `1.35.10`] |
|
|
66
|
+
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) | [`0.14.6` -> `0.15.0`] |
|
|
67
|
+
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) | [`0.9.8` -> `0.10.0`] |
|
|
68
|
+
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) | [`0.10.20` -> `0.10.21`] |
|
|
69
|
+
| [axios](https://axios-http.com) | [`1.13.5` -> `1.13.6`] |
|
|
70
|
+
| [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped) | [`3.5.33` -> `3.5.34`] |
|
|
71
|
+
| [tar](https://github.com/npm/node-tar) | [`7.5.9` -> `7.5.11`] |
|
|
14
72
|
|
|
15
73
|
## [1.84.130] - 2026-02-04
|
|
16
74
|
|
|
17
75
|
### Fixed
|
|
76
|
+
|
|
18
77
|
- Fixed an issue where an empty `[sap.ui5][routing][config]` object was always created in the `manifest.json` file, even when no related changes were made in OData V4 applications
|
|
19
78
|
- Fixed multiple issues for the `manifestPath` calculation in the schema
|
|
20
79
|
- Fixed page support for the analytical list page in OData V2 applications
|
|
@@ -24,31 +83,34 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
|
|
|
24
83
|
|
|
25
84
|
Upgrades:
|
|
26
85
|
|
|
27
|
-
| Package
|
|
28
|
-
|
|
29
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
30
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter))
|
|
31
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
32
|
-
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types))
|
|
33
|
-
| [@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`
|
|
34
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
35
|
-
| [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint))
|
|
36
|
-
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
|
|
37
|
-
| [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser)
|
|
38
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
39
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
40
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
86
|
+
| Package | Change |
|
|
87
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- |
|
|
88
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | `1.12.0` → `1.13.5` |
|
|
89
|
+
| [@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` |
|
|
90
|
+
| [@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` |
|
|
91
|
+
| [@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` |
|
|
92
|
+
| [@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` |
|
|
93
|
+
| [@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` |
|
|
94
|
+
| [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | `9.26.0` → `9.39.2` |
|
|
95
|
+
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.5` → `10.1.8` |
|
|
96
|
+
| [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) | `5.3.5` → `5.3.6` |
|
|
97
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | `25.7.4` → `25.8.0` |
|
|
98
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | `3.8.0` → `3.8.1` |
|
|
99
|
+
| [tar](https://github.com/isaacs/node-tar) | `7.5.7` → `7.5.9` |
|
|
41
100
|
|
|
42
101
|
## [1.84.129] - 2026-01-21
|
|
43
102
|
|
|
44
103
|
### Added
|
|
104
|
+
|
|
45
105
|
- 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
|
|
46
106
|
- Added support for the `CreateMode` property at the page level and application level for OData V2 applications
|
|
47
107
|
|
|
48
108
|
### Changed
|
|
109
|
+
|
|
49
110
|
- Refactored the initial step of generating a list report page for OData V4 applications
|
|
50
111
|
|
|
51
112
|
### Fixed
|
|
113
|
+
|
|
52
114
|
- Ensures compatibility with newer OData v4.01 services while maintaining backward compatibility with existing v4.0 services.
|
|
53
115
|
- 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
|
|
54
116
|
|
|
@@ -56,86 +118,92 @@ Upgrades:
|
|
|
56
118
|
|
|
57
119
|
Upgrades:
|
|
58
120
|
|
|
59
|
-
| Package
|
|
60
|
-
|
|
61
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter))
|
|
62
|
-
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/edmx-parser))
|
|
63
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
64
|
-
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types))
|
|
65
|
-
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema)
|
|
66
|
-
| [@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`]
|
|
67
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
68
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
69
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
70
|
-
| [mem-fs-editor](https://github.com/SBoudrias/mem-fs-editor)
|
|
71
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
72
|
-
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema)
|
|
121
|
+
| Package | Change |
|
|
122
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
123
|
+
| [@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`] |
|
|
124
|
+
| [@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`] |
|
|
125
|
+
| [@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`] |
|
|
126
|
+
| [@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`] |
|
|
127
|
+
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema) | [-> `7.0.15`] |
|
|
128
|
+
| [@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`] |
|
|
129
|
+
| [@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`] |
|
|
130
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.4` → `5.5.5`] |
|
|
131
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.7.3` -> `25.7.4`] |
|
|
132
|
+
| [mem-fs-editor](https://github.com/SBoudrias/mem-fs-editor) | [-> `9.7.0`] |
|
|
133
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.6.2` → `3.8.0`] |
|
|
134
|
+
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.65.1` -> `0.67.1`] |
|
|
73
135
|
|
|
74
136
|
## [1.84.128] - 2026-01-07
|
|
75
137
|
|
|
76
138
|
### Added
|
|
139
|
+
|
|
77
140
|
- Introduced `manifestPath` property in v2/v4 App.json schemas to represent JSON path reference pointing to path in manifest.json file.
|
|
78
141
|
- Enhanced page schema by adding `manifestPath` support for table properties and static nodes (FilterBar, Header).
|
|
79
142
|
|
|
80
143
|
### Fixed
|
|
144
|
+
|
|
81
145
|
OData V2:
|
|
146
|
+
|
|
82
147
|
- OVP. Export issue - not possible to remove not allowed chart card properties
|
|
83
148
|
|
|
84
149
|
### Quality
|
|
85
150
|
|
|
86
151
|
Upgrades:
|
|
87
152
|
|
|
88
|
-
| Package
|
|
89
|
-
|
|
90
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
91
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
92
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
93
|
-
| [@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`]
|
|
94
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
153
|
+
| Package | Change |
|
|
154
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
155
|
+
| [@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`] |
|
|
156
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.3` -> `25.7.3`] |
|
|
157
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.27.1` → `0.27.2`] |
|
|
158
|
+
| [@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`] |
|
|
159
|
+
| [@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`] |
|
|
95
160
|
|
|
96
161
|
## [1.84.127] - 2025-11-26
|
|
97
162
|
|
|
98
163
|
### Added
|
|
164
|
+
|
|
99
165
|
- Enhanced the `readApp` API method:
|
|
100
|
-
|
|
101
|
-
|
|
166
|
+
- The method now returns an `applicationModel` where each page includes its own `TreeModel`
|
|
167
|
+
- Added the `skipParsing` option (default: false) to allow skipping page parsing and model generation
|
|
102
168
|
|
|
103
169
|
### Fixed
|
|
104
170
|
|
|
105
171
|
OData V4:
|
|
172
|
+
|
|
106
173
|
- Avoid unnecessary deletion of `targets.{target}.contextPattern`
|
|
107
174
|
|
|
108
175
|
### Quality
|
|
109
176
|
|
|
110
177
|
Upgrades:
|
|
111
178
|
|
|
112
|
-
| Package
|
|
113
|
-
|
|
114
|
-
| [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types))
|
|
179
|
+
| Package | Change |
|
|
180
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
181
|
+
| [@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`] |
|
|
115
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.7` -> `0.10.9`] |
|
|
116
|
-
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access))
|
|
117
|
-
| [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery)
|
|
118
|
-
| [@types/mem-fs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mem-fs)
|
|
119
|
-
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema)
|
|
120
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
183
|
+
| [@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`] |
|
|
184
|
+
| [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery) | [`3.5.32` -> `3.5.33`] |
|
|
185
|
+
| [@types/mem-fs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mem-fs) | [`1.1.2` -> `1.1.5`] |
|
|
186
|
+
| [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema) | [-> `7.0.5`] |
|
|
187
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.2` -> `25.6.3`] |
|
|
121
188
|
|
|
122
189
|
## [1.84.126] - 2025-11-12
|
|
123
190
|
|
|
124
191
|
### Added
|
|
192
|
+
|
|
125
193
|
- Added the new API method `readApp`: a simpler wrapper around `importProject` that only requires the app parameter (path or `ApplicationAccess` instance)
|
|
126
194
|
|
|
127
195
|
### Quality
|
|
128
196
|
|
|
129
197
|
Upgrades:
|
|
130
198
|
|
|
131
|
-
| Package
|
|
132
|
-
|
|
133
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
134
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
135
|
-
| [@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`]
|
|
136
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
137
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
138
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
199
|
+
| Package | Change |
|
|
200
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
201
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.0` -> `25.6.2`] |
|
|
202
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.11` -> `0.27.0`] |
|
|
203
|
+
| [@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`] |
|
|
204
|
+
| [@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`] |
|
|
205
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.12.0` -> `1.13.2`] |
|
|
206
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.5.1` -> `7.5.2`] |
|
|
139
207
|
|
|
140
208
|
## [1.84.125] - 2025-10-29
|
|
141
209
|
|
|
@@ -143,12 +211,12 @@ Upgrades:
|
|
|
143
211
|
|
|
144
212
|
Upgrades:
|
|
145
213
|
|
|
146
|
-
| Package
|
|
147
|
-
|
|
148
|
-
| [@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`]
|
|
149
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
150
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
151
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
214
|
+
| Package | Change |
|
|
215
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
|
|
216
|
+
| [@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`] |
|
|
217
|
+
| [@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`] |
|
|
218
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.10` -> `0.25.11`] |
|
|
219
|
+
| [@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`] |
|
|
152
220
|
|
|
153
221
|
## [1.84.124] - 2025-10-15
|
|
154
222
|
|
|
@@ -156,16 +224,16 @@ Upgrades:
|
|
|
156
224
|
|
|
157
225
|
Upgrades:
|
|
158
226
|
|
|
159
|
-
| Package
|
|
160
|
-
|
|
161
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
162
|
-
| [patch-package](https://github.com/ds300/patch-package)
|
|
163
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
164
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
165
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
166
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
167
|
-
| [@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`] |
|
|
168
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
227
|
+
| Package | Change |
|
|
228
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
229
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.5.2` -> `25.6.0`] |
|
|
230
|
+
| [patch-package](https://github.com/ds300/patch-package) | [`8.0.0` -> `8.0.1`] |
|
|
231
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.9.2` -> `5.9.3`] |
|
|
232
|
+
| [@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`] |
|
|
233
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.4` -> `29.4.5`] |
|
|
234
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
|
|
235
|
+
| [@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`] |
|
|
236
|
+
| [@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`] |
|
|
169
237
|
|
|
170
238
|
## [1.84.123] - 2025-10-01
|
|
171
239
|
|
|
@@ -175,16 +243,14 @@ Upgrades:
|
|
|
175
243
|
|
|
176
244
|
- Upgraded TS target to `ES2023`
|
|
177
245
|
|
|
178
|
-
| Package
|
|
179
|
-
|
|
180
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
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
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
183
|
-
| [@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`]
|
|
184
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
185
|
-
| [tar](https://github.com/isaacs/node-tar)
|
|
186
|
-
|
|
187
|
-
|
|
246
|
+
| Package | Change |
|
|
247
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
|
|
248
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.1` -> `29.4.4`] |
|
|
249
|
+
| [@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`] |
|
|
250
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.9` -> `0.25.10`] |
|
|
251
|
+
| [@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`] |
|
|
252
|
+
| [@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`] |
|
|
253
|
+
| [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
|
|
188
254
|
|
|
189
255
|
## [1.84.122] - 2025-09-17
|
|
190
256
|
|
|
@@ -192,14 +258,14 @@ Upgrades:
|
|
|
192
258
|
|
|
193
259
|
Upgrades:
|
|
194
260
|
|
|
195
|
-
| Package
|
|
196
|
-
|
|
197
|
-
| [@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`] |
|
|
198
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
199
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
200
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
201
|
-
| [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser))
|
|
202
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
261
|
+
| Package | Change |
|
|
262
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
263
|
+
| [@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`] |
|
|
264
|
+
| [@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`] |
|
|
265
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.11.0` -> `1.12.0`] |
|
|
266
|
+
| [@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`] |
|
|
267
|
+
| [@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`] |
|
|
268
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.2` -> `25.5.2`] |
|
|
203
269
|
|
|
204
270
|
## [1.84.121] - 2025-09-03
|
|
205
271
|
|
|
@@ -211,11 +277,11 @@ OVP page. Properties from different card types on the OVP page were not imported
|
|
|
211
277
|
|
|
212
278
|
Upgrades:
|
|
213
279
|
|
|
214
|
-
| Package
|
|
215
|
-
|
|
216
|
-
| [@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`] |
|
|
217
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
218
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
280
|
+
| Package | Change |
|
|
281
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
282
|
+
| [@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`] |
|
|
283
|
+
| [@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`] |
|
|
284
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.0` -> `25.4.2`] |
|
|
219
285
|
|
|
220
286
|
## [1.84.120] - 2025-08-20
|
|
221
287
|
|
|
@@ -223,13 +289,13 @@ Upgrades:
|
|
|
223
289
|
|
|
224
290
|
Upgrades:
|
|
225
291
|
|
|
226
|
-
| Package
|
|
227
|
-
|
|
228
|
-
| [@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`] |
|
|
229
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
230
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
231
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
232
|
-
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next))
|
|
292
|
+
| Package | Change |
|
|
293
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
294
|
+
| [@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`] |
|
|
295
|
+
| [@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`] |
|
|
296
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.8` -> `0.25.9`] |
|
|
297
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.3` -> `5.5.4`] |
|
|
298
|
+
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.3.0` -> `25.4.0`] |
|
|
233
299
|
|
|
234
300
|
## [1.84.119] - 2025-08-09
|
|
235
301
|
|
|
@@ -237,13 +303,13 @@ Upgrades:
|
|
|
237
303
|
|
|
238
304
|
Upgrades:
|
|
239
305
|
|
|
240
|
-
| Package
|
|
241
|
-
|
|
242
|
-
| [@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`] |
|
|
243
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
244
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
245
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
246
|
-
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema)
|
|
306
|
+
| Package | Change |
|
|
307
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
308
|
+
| [@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`] |
|
|
309
|
+
| [@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`] |
|
|
310
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.8.3` -> `5.9.2`] |
|
|
311
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.0` -> `29.4.1`] |
|
|
312
|
+
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.57.0` -> `0.65.1`] |
|
|
247
313
|
|
|
248
314
|
## [1.84.118] - 2025-07-23
|
|
249
315
|
|
|
@@ -251,14 +317,14 @@ Upgrades:
|
|
|
251
317
|
|
|
252
318
|
Upgrades:
|
|
253
319
|
|
|
254
|
-
| Package
|
|
255
|
-
|
|
256
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
257
|
-
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
|
|
258
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
259
|
-
| [@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`] |
|
|
260
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
261
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
320
|
+
| Package | Change |
|
|
321
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
322
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.10.0` -> `1.11.0`] |
|
|
323
|
+
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | [`9.1.0` -> `9.1.2`] |
|
|
324
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.1` -> `5.5.3`] |
|
|
325
|
+
| [@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`] |
|
|
326
|
+
| [@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`] |
|
|
327
|
+
| [esbuild](https://github.com/evanw/esbuild) | [`0.25.5` -> `0.25.8`] |
|
|
262
328
|
|
|
263
329
|
## [1.84.117] - 2025-07-09
|
|
264
330
|
|
|
@@ -266,13 +332,13 @@ Upgrades:
|
|
|
266
332
|
|
|
267
333
|
Upgrades:
|
|
268
334
|
|
|
269
|
-
| Package
|
|
270
|
-
|
|
271
|
-
|
|
335
|
+
| Package | Change |
|
|
336
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
337
|
+
| --- | --- |
|
|
272
338
|
| [@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`] |
|
|
273
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
274
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
275
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
339
|
+
| [@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`] |
|
|
340
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.5.3` -> `3.6.2`] |
|
|
341
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.0` -> `5.5.1`] |
|
|
276
342
|
|
|
277
343
|
## [1.84.116] - 2025-06-25
|
|
278
344
|
|
|
@@ -284,41 +350,44 @@ Upgrades:
|
|
|
284
350
|
|
|
285
351
|
Upgrades:
|
|
286
352
|
|
|
287
|
-
| Package
|
|
288
|
-
|
|
289
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
290
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
291
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
292
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
293
|
-
| [@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`] |
|
|
294
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
353
|
+
| Package | Change |
|
|
354
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
|
|
355
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.9.0` -> `1.10.0`] |
|
|
356
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | [`50.7.1` -> `50.8.0`] |
|
|
357
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.4.1` -> `5.5.0`] |
|
|
358
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.3.4` -> `29.4.0`] |
|
|
359
|
+
| [@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`] |
|
|
360
|
+
| [@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`] |
|
|
295
361
|
|
|
296
362
|
## [1.84.115] - 2025-06-11
|
|
297
363
|
|
|
298
364
|
### Added
|
|
299
365
|
|
|
300
366
|
OData V4:
|
|
367
|
+
|
|
301
368
|
- Basic support for new SAP Ariba LR/OP templates
|
|
302
369
|
|
|
303
370
|
OData V4/V2:
|
|
371
|
+
|
|
304
372
|
- Schema generation - add link to documentation for "flexibleColumnLayout" property
|
|
305
373
|
|
|
306
374
|
### Fixed
|
|
307
375
|
|
|
308
376
|
OData V4/V2:
|
|
377
|
+
|
|
309
378
|
- Schema generation - update description for "flexibleColumnLayout" property
|
|
310
379
|
|
|
311
380
|
### Quality
|
|
312
381
|
|
|
313
382
|
Upgrades:
|
|
314
383
|
|
|
315
|
-
| Package
|
|
316
|
-
|
|
317
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
318
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
319
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
320
|
-
| [@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
|
|
321
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
384
|
+
| Package | Type | Update | Change |
|
|
385
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ----------------------- |
|
|
386
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.4` -> `0.25.5`] |
|
|
387
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | minor | [`50.6.17` -> `50.7.1`] |
|
|
388
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.4.0` -> `5.4.1`] |
|
|
389
|
+
| [@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`] |
|
|
390
|
+
| [@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`] |
|
|
322
391
|
|
|
323
392
|
## [1.84.114] - 2025-05-28
|
|
324
393
|
|
|
@@ -326,10 +395,10 @@ Upgrades:
|
|
|
326
395
|
|
|
327
396
|
Upgrades:
|
|
328
397
|
|
|
329
|
-
| Package
|
|
330
|
-
|
|
331
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
332
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch
|
|
398
|
+
| Package | Type | Update | Change |
|
|
399
|
+
| ------------------------------------------------------------------------------------------------- | --------------- | ------ | ------------------------ |
|
|
400
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.14` -> `50.6.17`] |
|
|
401
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch | [`29.3.2` -> `29.3.4`] |
|
|
333
402
|
|
|
334
403
|
## [1.84.113] - 2025-05-14
|
|
335
404
|
|
|
@@ -341,14 +410,13 @@ Upgrades:
|
|
|
341
410
|
|
|
342
411
|
Upgrades:
|
|
343
412
|
|
|
344
|
-
| Package
|
|
345
|
-
|
|
346
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
347
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
348
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
349
|
-
| [@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
|
|
350
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
351
|
-
|
|
413
|
+
| Package | Type | Update | Change |
|
|
414
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ------------------------ |
|
|
415
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.11` -> `50.6.14`] |
|
|
416
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | minor | [`5.2.6` -> `5.4.0`] |
|
|
417
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.3` -> `0.25.4`] |
|
|
418
|
+
| [@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`] |
|
|
419
|
+
| [@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`] |
|
|
352
420
|
|
|
353
421
|
## [1.84.112] - 2025-04-30
|
|
354
422
|
|
|
@@ -356,15 +424,14 @@ Upgrades:
|
|
|
356
424
|
|
|
357
425
|
Upgrades:
|
|
358
426
|
|
|
359
|
-
| Package
|
|
360
|
-
|
|
361
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
362
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
363
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
364
|
-
| [@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
|
|
365
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
366
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
367
|
-
|
|
427
|
+
| Package | Type | Update | Change |
|
|
428
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ----------------------- |
|
|
429
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | minor | [`1.8.4` -> `1.9.0`] |
|
|
430
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.9` -> `50.6.11`] |
|
|
431
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.2` -> `0.25.3`] |
|
|
432
|
+
| [@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`]) |
|
|
433
|
+
| [@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`] |
|
|
434
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch | [`29.3.1` -> `29.3.2`] |
|
|
368
435
|
|
|
369
436
|
## [1.84.111] - 2025-04-17
|
|
370
437
|
|
|
@@ -384,14 +451,13 @@ Upgrades:
|
|
|
384
451
|
|
|
385
452
|
Upgrades:
|
|
386
453
|
|
|
387
|
-
| Package
|
|
388
|
-
|
|
389
|
-
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
|
|
390
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
391
|
-
| [@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
|
|
392
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
393
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
394
|
-
|
|
454
|
+
| Package | Type | Update | Change |
|
|
455
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
456
|
+
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | patch | [`50.6.8` -> `50.6.9`] |
|
|
457
|
+
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.2.5` -> `5.2.6`] |
|
|
458
|
+
| [@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`] |
|
|
459
|
+
| [@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`] |
|
|
460
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | patch | [`5.8.2` -> `5.8.3`] |
|
|
395
461
|
|
|
396
462
|
## [1.84.110] - 2025-04-02
|
|
397
463
|
|
|
@@ -407,7 +473,6 @@ Upgrades:
|
|
|
407
473
|
| [@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`] |
|
|
408
474
|
| [@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`] |
|
|
409
475
|
|
|
410
|
-
|
|
411
476
|
## [1.84.109] - 2025-03-19
|
|
412
477
|
|
|
413
478
|
### Added
|
|
@@ -426,21 +491,20 @@ Upgrades:
|
|
|
426
491
|
|
|
427
492
|
Upgrades:
|
|
428
493
|
|
|
429
|
-
| Package
|
|
430
|
-
|
|
431
|
-
| [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter))
|
|
432
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
433
|
-
| [@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
|
|
434
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
435
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
436
|
-
|
|
437
|
-
|
|
494
|
+
| Package | Type | Update | Change |
|
|
495
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
496
|
+
| [@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`] |
|
|
497
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | patch | [`1.8.1` -> `1.8.2`] |
|
|
498
|
+
| [@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`] |
|
|
499
|
+
| [@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`] |
|
|
500
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.0` -> `0.25.1`] |
|
|
438
501
|
|
|
439
502
|
## [1.84.108] - 2025-03-05
|
|
440
503
|
|
|
441
504
|
### Added
|
|
442
505
|
|
|
443
506
|
OData V2:
|
|
507
|
+
|
|
444
508
|
- Support of `cloudDevAdaptionStatus` internal setting
|
|
445
509
|
|
|
446
510
|
### Changed
|
|
@@ -455,14 +519,14 @@ OData V2:
|
|
|
455
519
|
|
|
456
520
|
Upgrades:
|
|
457
521
|
|
|
458
|
-
| Package
|
|
459
|
-
|
|
460
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
461
|
-
| [@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
|
|
462
|
-
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios))
|
|
463
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
464
|
-
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest))
|
|
465
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
522
|
+
| Package | Type | Update | Change |
|
|
523
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
524
|
+
| [@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`] |
|
|
525
|
+
| [@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`] |
|
|
526
|
+
| [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | devDependencies | minor | [`1.7.9` -> `1.8.1`] |
|
|
527
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | patch | [`3.5.1` -> `3.5.3`] |
|
|
528
|
+
| [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | devDependencies | patch | [`29.2.5` -> `29.2.6`] |
|
|
529
|
+
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | minor | [`5.7.3` -> `5.8.2`] |
|
|
466
530
|
|
|
467
531
|
## [1.84.107] - 2025-02-19
|
|
468
532
|
|
|
@@ -482,13 +546,12 @@ Upgrades:
|
|
|
482
546
|
|
|
483
547
|
Upgrades:
|
|
484
548
|
|
|
485
|
-
| Package
|
|
486
|
-
|
|
487
|
-
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier))
|
|
488
|
-
| [esbuild](https://github.com/evanw/esbuild)
|
|
489
|
-
| [@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
|
|
490
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
491
|
-
|
|
549
|
+
| Package | Type | Update | Change |
|
|
550
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------- |
|
|
551
|
+
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | minor | [`3.4.2` -> `3.5.1`] |
|
|
552
|
+
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | minor | [`0.24.2` -> `0.25.0`] |
|
|
553
|
+
| [@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`] |
|
|
554
|
+
| [@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`] |
|
|
492
555
|
|
|
493
556
|
## [1.84.106] - 2025-02-05
|
|
494
557
|
|
|
@@ -530,13 +593,12 @@ Upgrades:
|
|
|
530
593
|
|
|
531
594
|
Upgrades:
|
|
532
595
|
|
|
533
|
-
| Package
|
|
534
|
-
|
|
535
|
-
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript))
|
|
536
|
-
| [@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
|
|
537
|
-
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
|
|
538
|
-
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
|
|
539
|
-
|
|
596
|
+
| Package | Type | Update | Change |
|
|
597
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ---------------------------------------------------------------------------------------------------------- |
|
|
598
|
+
| [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) |
|
|
599
|
+
| [@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) |
|
|
600
|
+
| [@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) |
|
|
601
|
+
| [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) |
|
|
540
602
|
|
|
541
603
|
## [1.84.104] - 2025-01-08
|
|
542
604
|
|
|
@@ -552,14 +614,14 @@ Upgrades:
|
|
|
552
614
|
|
|
553
615
|
### Fixed
|
|
554
616
|
|
|
555
|
-
- General:
|
|
617
|
+
- General: Deletion requests, via the api method deleteConfigEntityByPath, had not been recognized as such in all cases. The path was considered, but then updates happened, per underlying property.
|
|
556
618
|
|
|
557
619
|
### Quality
|
|
558
620
|
|
|
559
621
|
Upgrades:
|
|
560
622
|
|
|
561
|
-
- @typescript-eslint/eslint-plugin (source)
|
|
562
|
-
- @typescript-eslint/parser (source)
|
|
623
|
+
- @typescript-eslint/eslint-plugin (source) devDependencies minor 8.18.2 -> 8.19.1
|
|
624
|
+
- @typescript-eslint/parser (source) devDependencies minor 8.18.2 -> 8.19.1
|
|
563
625
|
- prettier to 3.4.2
|
|
564
626
|
- esbuild to 0.24.2
|
|
565
627
|
- npm-run-all2 to 7.0.2
|
|
@@ -582,7 +644,7 @@ Upgrades:
|
|
|
582
644
|
- i18next devDependencies 23.16.5 -> 23.16.8
|
|
583
645
|
- @typescript-eslint/eslint-plugin 8.13.0 -> 8.15.0
|
|
584
646
|
- @typescript-eslint/parser 8.13.0 -> 8.15.0
|
|
585
|
-
- axios
|
|
647
|
+
- axios `1.7.7` -> `1.7.9`
|
|
586
648
|
|
|
587
649
|
## [1.84.102] - 2024-11-13
|
|
588
650
|
|
|
@@ -610,7 +672,7 @@ Upgrades:
|
|
|
610
672
|
|
|
611
673
|
### Fixed
|
|
612
674
|
|
|
613
|
-
- 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.
|
|
675
|
+
- 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.
|
|
614
676
|
|
|
615
677
|
### Quality
|
|
616
678
|
|
|
@@ -675,10 +737,10 @@ Upgrades:
|
|
|
675
737
|
|
|
676
738
|
- Table views: new error handling for undefined keys.
|
|
677
739
|
- Corrections for API functions exportConfigEntityByPath and deleteConfigEntityByPath:
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
740
|
+
- change indicator was not set for manifest.json in v4.
|
|
741
|
+
- entityPath was not forwarded at overview pages.
|
|
742
|
+
- the check against entityPathArray did not consider intermediate anyOf definitions, and thus exited without executing the property change.
|
|
743
|
+
- FPM custom pages had not been considered by function `exportConfigEntityByPathV4`.
|
|
682
744
|
|
|
683
745
|
### Quality
|
|
684
746
|
|
|
@@ -852,7 +914,7 @@ Upgrades:
|
|
|
852
914
|
### Changed
|
|
853
915
|
|
|
854
916
|
- 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.
|
|
855
|
-
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.
|
|
917
|
+
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.
|
|
856
918
|
|
|
857
919
|
### Removed
|
|
858
920
|
|
|
@@ -868,8 +930,8 @@ OData V4:
|
|
|
868
930
|
- toolbar actions had partially not been considered during the import
|
|
869
931
|
- the export of table properties had overwritten the export from views
|
|
870
932
|
- the export now supports two different constellations for anyOf definitions in schema:
|
|
871
|
-
|
|
872
|
-
|
|
933
|
+
- anyOf directly defined as additionalProperties (of MultiTableMode)
|
|
934
|
+
- anyOf reachable via $ref, properties defined there.
|
|
873
935
|
- empty `sap.ui5/routing/config` object removed from `manifest.json` during export
|
|
874
936
|
|
|
875
937
|
OData V2:
|
|
@@ -885,7 +947,7 @@ OData V2:
|
|
|
885
947
|
### Changed
|
|
886
948
|
|
|
887
949
|
- OData V2:
|
|
888
|
-
|
|
950
|
+
- Fragment templates for custom column extensions for AnalyticalTable, GridTable, TreeTable, ResponsiveTable
|
|
889
951
|
|
|
890
952
|
### Quality
|
|
891
953
|
|
|
@@ -915,7 +977,7 @@ Upgrades:
|
|
|
915
977
|
- reflect-metadata to 0.2.2
|
|
916
978
|
- jest to 29.7.0
|
|
917
979
|
- ts-jest to 29.1.2
|
|
918
|
-
|
|
980
|
+
|
|
919
981
|
## [1.84.85] - 2024-03-20
|
|
920
982
|
|
|
921
983
|
### Added
|
|
@@ -947,7 +1009,7 @@ Upgrades
|
|
|
947
1009
|
- patch-package to 8.0.0
|
|
948
1010
|
- prettier to 3.2.5
|
|
949
1011
|
- npm-run-all2 to 6.1.2
|
|
950
|
-
- ts-jest
|
|
1012
|
+
- ts-jest to 29.1.1
|
|
951
1013
|
- ts-node to 10.9.2
|
|
952
1014
|
- typescript to 5.3.2
|
|
953
1015
|
- resolution of ini to 4.0.0
|
|
@@ -979,9 +1041,9 @@ Upgrades:
|
|
|
979
1041
|
### Added
|
|
980
1042
|
|
|
981
1043
|
- OData V2:
|
|
982
|
-
|
|
1044
|
+
- Support of Header facets on Object Page
|
|
983
1045
|
- UX adjustments of inplace documentation:
|
|
984
|
-
|
|
1046
|
+
- Support for Screen Readers and Arrow Navigation
|
|
985
1047
|
|
|
986
1048
|
### Fixed
|
|
987
1049
|
|
|
@@ -1000,14 +1062,14 @@ Upgrades
|
|
|
1000
1062
|
### Added
|
|
1001
1063
|
|
|
1002
1064
|
- OData V4:
|
|
1003
|
-
|
|
1065
|
+
- View columns set as view nodes
|
|
1004
1066
|
|
|
1005
1067
|
### Fixed
|
|
1006
1068
|
|
|
1007
1069
|
- Invalid object-like descriptions and keys had been generated into the app-specific schemas if DataFieldForIntentBasedNavigation was defined with a path reference
|
|
1008
1070
|
- An exception happened during app schema generation if a NavigationProperty pointed to an invalid target annotation
|
|
1009
1071
|
- OData V4:
|
|
1010
|
-
|
|
1072
|
+
- Invalid '/' in app schema definition names replaced by '::'
|
|
1011
1073
|
|
|
1012
1074
|
### Quality
|
|
1013
1075
|
|
|
@@ -1025,7 +1087,7 @@ Upgrades
|
|
|
1025
1087
|
### Added
|
|
1026
1088
|
|
|
1027
1089
|
- OData V4:
|
|
1028
|
-
|
|
1090
|
+
- View columns set as view nodes
|
|
1029
1091
|
|
|
1030
1092
|
### Quality
|
|
1031
1093
|
|
|
@@ -1042,29 +1104,29 @@ Upgrades
|
|
|
1042
1104
|
### Added
|
|
1043
1105
|
|
|
1044
1106
|
- UX adjustments of inplace documentation:
|
|
1045
|
-
|
|
1107
|
+
- Support of Keyboard Navigation
|
|
1046
1108
|
- OData V2: Support of global table settings for object pages
|
|
1047
1109
|
- OData V4:
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1110
|
+
- OP: Added support for `Edit` and `Delete` standard actions considering draft support and capabilities annotation
|
|
1111
|
+
- OP: Sequence of actions is now based on criticality annotation
|
|
1112
|
+
|
|
1051
1113
|
### Changed
|
|
1052
1114
|
|
|
1053
1115
|
- Alignment of settings for sap.ovp:
|
|
1054
|
-
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.
|
|
1055
|
-
The assignment of settings to the specific card types has been revised and adjusted.
|
|
1056
|
-
- OData V2:
|
|
1116
|
+
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.
|
|
1117
|
+
The assignment of settings to the specific card types has been revised and adjusted.
|
|
1118
|
+
- OData V2: ALP root properties order
|
|
1057
1119
|
- Increased api version
|
|
1058
1120
|
|
|
1059
1121
|
### Fixed
|
|
1060
1122
|
|
|
1061
1123
|
- OData V4: Empty visualization throws unhandled error during sync
|
|
1062
1124
|
- Prevent exception in case of illegal annotationPath references of fields or columns
|
|
1063
|
-
- OData V2:
|
|
1125
|
+
- OData V2: ALP not displaying chart and properties
|
|
1064
1126
|
- OVP:
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1127
|
+
- In case of unknown properties, other card settings like listFlavor or listFlavor could get deleted.
|
|
1128
|
+
- Property "Category" was shown with an initial value as object, although being of type string.
|
|
1129
|
+
- Properties enableAddToInsights, imageSupported, showLineItemDetail, valueSelectionInfo might not have been exported correctly to the manifest.
|
|
1068
1130
|
|
|
1069
1131
|
### Quality
|
|
1070
1132
|
|
|
@@ -1087,12 +1149,12 @@ Upgrades
|
|
|
1087
1149
|
### Changed
|
|
1088
1150
|
|
|
1089
1151
|
- OVP card settings:
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1152
|
+
- Added missing properties
|
|
1153
|
+
- Removed irrelevant settings from custom card settings
|
|
1154
|
+
- Assignment of settings to card types has been generally aligned with the given capabilities of SAP Fiori elements
|
|
1093
1155
|
|
|
1094
1156
|
- 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.
|
|
1095
|
-
Thus the location information is removed for annotation problems
|
|
1157
|
+
Thus the location information is removed for annotation problems
|
|
1096
1158
|
|
|
1097
1159
|
### Fixed
|
|
1098
1160
|
|
|
@@ -1119,8 +1181,8 @@ Upgrades:
|
|
|
1119
1181
|
- Fixed an exception "Cannot read properties of undefined (reading 'includes')" when generating the app schemas
|
|
1120
1182
|
|
|
1121
1183
|
- OData V4:
|
|
1122
|
-
|
|
1123
|
-
|
|
1184
|
+
- If multiple facets refer to target annotations without an ID but with identical labels, only one of the facets was shown in the page editor
|
|
1185
|
+
- An error message was added to the logger if the ID was missing for a reference facet. This was wrong, the ID is optional for reference facets. Instead, the error message is now added for missing IDs of collection facets
|
|
1124
1186
|
|
|
1125
1187
|
### Quality
|
|
1126
1188
|
|
|
@@ -1137,25 +1199,25 @@ Upgrades:
|
|
|
1137
1199
|
|
|
1138
1200
|
### Added
|
|
1139
1201
|
|
|
1140
|
-
- OData V4:
|
|
1141
|
-
|
|
1202
|
+
- OData V4:
|
|
1203
|
+
- Added additional log entries while executing API calls for schema generation, and error log entries in case of missing UI.LineItem annotation
|
|
1142
1204
|
|
|
1143
1205
|
### Changed
|
|
1144
1206
|
|
|
1145
1207
|
- UX adjustments of inplace documentation:
|
|
1146
|
-
|
|
1208
|
+
- Harmonized the zoom behavior and removed the ability to scroll via the mouse wheel
|
|
1147
1209
|
|
|
1148
1210
|
### Removed
|
|
1149
1211
|
|
|
1150
|
-
- OData V2:
|
|
1151
|
-
|
|
1212
|
+
- OData V2:
|
|
1213
|
+
- Removed the `visibility` property for _addresses_ on subsections of the object page, as flexibility changes are not supported on this level
|
|
1152
1214
|
|
|
1153
1215
|
### Fixed
|
|
1154
1216
|
|
|
1155
|
-
- OData V2:
|
|
1156
|
-
|
|
1157
|
-
- OData V4:
|
|
1158
|
-
|
|
1217
|
+
- OData V2:
|
|
1218
|
+
- Fixed an issue with the selector ID of flexibility changes generated for contacts on the subsection level of object pages
|
|
1219
|
+
- OData V4:
|
|
1220
|
+
- Schema generation: Mark custom anchors in "oneOf" enums for custom sections
|
|
1159
1221
|
|
|
1160
1222
|
### Quality
|
|
1161
1223
|
|
|
@@ -1177,7 +1239,7 @@ Upgrades:
|
|
|
1177
1239
|
### Added
|
|
1178
1240
|
|
|
1179
1241
|
- OData V4:
|
|
1180
|
-
|
|
1242
|
+
- `displayName` property for `relatedFacet` and `relativePosition` custom section properties
|
|
1181
1243
|
|
|
1182
1244
|
### Changed
|
|
1183
1245
|
|
|
@@ -1208,7 +1270,7 @@ Upgrades:
|
|
|
1208
1270
|
### Added
|
|
1209
1271
|
|
|
1210
1272
|
- OData V2:
|
|
1211
|
-
|
|
1273
|
+
- Added support for standard header actions `Share` and `Up and Down Navigation`, and footer action `Save and Edit`
|
|
1212
1274
|
|
|
1213
1275
|
### Changed
|
|
1214
1276
|
|
|
@@ -1219,10 +1281,10 @@ Upgrades:
|
|
|
1219
1281
|
### Fixed
|
|
1220
1282
|
|
|
1221
1283
|
- OData V2:
|
|
1222
|
-
|
|
1284
|
+
- 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.
|
|
1223
1285
|
- OData V4:
|
|
1224
|
-
|
|
1225
|
-
|
|
1286
|
+
- Added missing descriptions to custom section properties `relatedFacet`, `relativePosition`, `id`, `fragmentName`
|
|
1287
|
+
- Custom section properties `className` and `type` are marked as hidden
|
|
1226
1288
|
|
|
1227
1289
|
### Quality
|
|
1228
1290
|
|
|
@@ -1275,7 +1337,7 @@ Upgrades:
|
|
|
1275
1337
|
### Added
|
|
1276
1338
|
|
|
1277
1339
|
- OData V2:
|
|
1278
|
-
|
|
1340
|
+
- Added support for the binding pattern to `showHeaderContent` property
|
|
1279
1341
|
|
|
1280
1342
|
### Changed
|
|
1281
1343
|
|
|
@@ -1286,9 +1348,9 @@ Upgrades:
|
|
|
1286
1348
|
### Fixed
|
|
1287
1349
|
|
|
1288
1350
|
- OData V4:
|
|
1289
|
-
|
|
1351
|
+
- Wrong annotation path is generated for connected fields with a different entity type than the section
|
|
1290
1352
|
- OData V2:
|
|
1291
|
-
|
|
1353
|
+
- Schema was not completely filled for custom columns, enum values for fragmentName and cellsFragmentName had been partially missing
|
|
1292
1354
|
|
|
1293
1355
|
### Quality
|
|
1294
1356
|
|
|
@@ -1321,8 +1383,8 @@ Upgrades:
|
|
|
1321
1383
|
### Added
|
|
1322
1384
|
|
|
1323
1385
|
- During the API call, an additional check verifies the given specification version against the minUI5Version from the passed manifest; in case of a mismatch a warning is added to the logger
|
|
1324
|
-
- OData V4
|
|
1325
|
-
|
|
1386
|
+
- OData V4
|
|
1387
|
+
- Support connected fields on the Object Page
|
|
1326
1388
|
|
|
1327
1389
|
### Quality
|
|
1328
1390
|
|
|
@@ -1372,7 +1434,7 @@ Upgrades:
|
|
|
1372
1434
|
### Fixed
|
|
1373
1435
|
|
|
1374
1436
|
- OData V2:
|
|
1375
|
-
|
|
1437
|
+
- Fixed type of variant key for QuickVariantSelection (X) on tables to `string`.
|
|
1376
1438
|
|
|
1377
1439
|
### Quality
|
|
1378
1440
|
|
|
@@ -1389,7 +1451,7 @@ Upgrades:
|
|
|
1389
1451
|
### Fixed
|
|
1390
1452
|
|
|
1391
1453
|
- OData V4: when adding new pages, the export calculates the route pattern for the new manifest entry.
|
|
1392
|
-
Indeed, the previous logic did not consider the naming at parent pages, but defined the key name in the pattern as `key`(+ index). This led to navigation errors at run-time. Now, the key names of existing parent pages are taken over to the child page's pattern.
|
|
1454
|
+
Indeed, the previous logic did not consider the naming at parent pages, but defined the key name in the pattern as `key`(+ index). This led to navigation errors at run-time. Now, the key names of existing parent pages are taken over to the child page's pattern.
|
|
1393
1455
|
|
|
1394
1456
|
### Quality
|
|
1395
1457
|
|
|
@@ -1421,9 +1483,9 @@ Upgrades:
|
|
|
1421
1483
|
### Added
|
|
1422
1484
|
|
|
1423
1485
|
- General:
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1486
|
+
- Enhancement of error handling, more explicit messages are passed to the logger.
|
|
1487
|
+
Fix of error handling of exceptions from annotation parser.
|
|
1488
|
+
- Fix for List Report with multiple views and Object pages on second level in Page map
|
|
1427
1489
|
|
|
1428
1490
|
### Quality
|
|
1429
1491
|
|
|
@@ -1445,6 +1507,7 @@ Upgrades:
|
|
|
1445
1507
|
- Update transitive dependencies
|
|
1446
1508
|
|
|
1447
1509
|
Upgrades:
|
|
1510
|
+
|
|
1448
1511
|
- prettier: to 2.8.8
|
|
1449
1512
|
- typescript to 4.9.5
|
|
1450
1513
|
- @types/node to 18.16.3
|
|
@@ -1503,13 +1566,13 @@ Upgrades:
|
|
|
1503
1566
|
### Fixed
|
|
1504
1567
|
|
|
1505
1568
|
- OData V2:
|
|
1506
|
-
|
|
1569
|
+
- Fixed deletion issues for Custom Columns that appeared after positions were changed
|
|
1507
1570
|
|
|
1508
1571
|
### Quality
|
|
1509
1572
|
|
|
1510
1573
|
- Upgrade "typescript" to "4.9.4"
|
|
1511
|
-
- Upgrade "@typescript-eslint/eslint-plugin" and
|
|
1512
|
-
- Upgrade "ts-node" to "10.9.1"
|
|
1574
|
+
- Upgrade "@typescript-eslint/eslint-plugin" and "@typescript-eslint/parser" to "5.52.0"
|
|
1575
|
+
- Upgrade "ts-node" to "10.9.1"
|
|
1513
1576
|
- Revert "typescript-json-schema" to "0.53.0" in types package
|
|
1514
1577
|
|
|
1515
1578
|
## [1.84.59] - 2023-02-22
|
|
@@ -1536,9 +1599,9 @@ Upgrades:
|
|
|
1536
1599
|
### Fixed
|
|
1537
1600
|
|
|
1538
1601
|
- OData V2:
|
|
1539
|
-
|
|
1602
|
+
- resolved sync issue with unknown properties on fields for `Table > CreateWithParameterDialog`
|
|
1540
1603
|
- OData V4:
|
|
1541
|
-
|
|
1604
|
+
- Fixed issue with missing schema and config for List report page in freestyle app
|
|
1542
1605
|
|
|
1543
1606
|
### Quality
|
|
1544
1607
|
|
|
@@ -1555,10 +1618,10 @@ Upgrades:
|
|
|
1555
1618
|
### Added
|
|
1556
1619
|
|
|
1557
1620
|
- OData V4:
|
|
1558
|
-
|
|
1621
|
+
- Generation of `propertyIndex` property in schemas for root properties
|
|
1559
1622
|
|
|
1560
1623
|
- OData V2:
|
|
1561
|
-
|
|
1624
|
+
- Generation of `propertyIndex` property in schemas for root properties
|
|
1562
1625
|
|
|
1563
1626
|
### Quality
|
|
1564
1627
|
|
|
@@ -1569,26 +1632,26 @@ Upgrades:
|
|
|
1569
1632
|
### Added
|
|
1570
1633
|
|
|
1571
1634
|
- General:
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1635
|
+
- New definitions for page types are delivered that allow a better distinction:
|
|
1636
|
+
- PageTypeV2 for types that occur in OData V2
|
|
1637
|
+
- PageTypeV4 for types that occur in OData V4
|
|
1638
|
+
- PageType as a superset of all page types that may occur
|
|
1576
1639
|
|
|
1577
1640
|
- OData V4:
|
|
1578
|
-
|
|
1641
|
+
- Default annotationPath is added in schema even if LineItem annotation is not defined
|
|
1579
1642
|
|
|
1580
1643
|
### Changed
|
|
1581
1644
|
|
|
1582
1645
|
- API for OData V2:
|
|
1583
|
-
|
|
1646
|
+
- 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.
|
|
1584
1647
|
|
|
1585
1648
|
### Fixed
|
|
1586
1649
|
|
|
1587
1650
|
- OData V4:
|
|
1588
|
-
|
|
1589
|
-
|
|
1651
|
+
- Fixed toolbar action IDs by replacing special chars with double colon
|
|
1652
|
+
- Not all meta characters of action keys had been converted to `::`, as a consequence existing actions in manifest may have not been considered, or new actions had not been written with the right syntax.
|
|
1590
1653
|
- OData V2:
|
|
1591
|
-
|
|
1654
|
+
- Fixed deletion of fragment cells contents in case last element is deleted
|
|
1592
1655
|
|
|
1593
1656
|
### Quality
|
|
1594
1657
|
|
|
@@ -1603,11 +1666,11 @@ Upgrades:
|
|
|
1603
1666
|
### Changed
|
|
1604
1667
|
|
|
1605
1668
|
- UI adjustments of inplace documentation:
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1669
|
+
- moved label of specification and odata version to tree canvas
|
|
1670
|
+
- aligned behavior of tree buttons to expand (+) and collapse (-) with given design
|
|
1671
|
+
- removed all hard coded colors
|
|
1672
|
+
- fixed hover on search results
|
|
1673
|
+
- aligned tooltip with given design
|
|
1611
1674
|
|
|
1612
1675
|
- OData V2: fields for `Table > CreateWithParameterDialog` are now shown as enum and the import/export is done implicitly in the background (adding `path` property).
|
|
1613
1676
|
|
|
@@ -1637,7 +1700,7 @@ Upgrades:
|
|
|
1637
1700
|
|
|
1638
1701
|
### Changed
|
|
1639
1702
|
|
|
1640
|
-
- 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`.
|
|
1703
|
+
- 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).
|
|
1641
1704
|
|
|
1642
1705
|
### Quality
|
|
1643
1706
|
|
|
@@ -1648,14 +1711,14 @@ Upgrades:
|
|
|
1648
1711
|
### Added
|
|
1649
1712
|
|
|
1650
1713
|
- 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:
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
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, ...)
|
|
1658
|
-
|
|
1714
|
+
- Value for DataFields
|
|
1715
|
+
- 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.
|
|
1716
|
+
- ID for facets
|
|
1717
|
+
- Action for any action
|
|
1718
|
+
- Instance-based navigation: Property + SemanticObject + Action
|
|
1719
|
+
- Target for DataFieldForAnnotation.
|
|
1720
|
+
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, ...)
|
|
1721
|
+
|
|
1659
1722
|
### Changed
|
|
1660
1723
|
|
|
1661
1724
|
- Common dependencies have been moved to the root level.
|
|
@@ -1683,13 +1746,13 @@ In case of Target, an additional schema tag `target` is added: it not only repre
|
|
|
1683
1746
|
### Added
|
|
1684
1747
|
|
|
1685
1748
|
- OData V4:
|
|
1686
|
-
|
|
1749
|
+
- Zero state support
|
|
1687
1750
|
|
|
1688
1751
|
### Fixed
|
|
1689
1752
|
|
|
1690
1753
|
- OData V4:
|
|
1691
|
-
|
|
1692
|
-
|
|
1754
|
+
- Reordering of custom views for list report did not work. This was fixed, but consequently the logic for deleting custom views also had to be adapted.
|
|
1755
|
+
- When adding new sub-pages to the app.json the export to manifest created wrong keys for the new navigation routes, and wrong query patterns for the targets.
|
|
1693
1756
|
|
|
1694
1757
|
### Quality
|
|
1695
1758
|
|
|
@@ -1715,17 +1778,17 @@ In case of Target, an additional schema tag `target` is added: it not only repre
|
|
|
1715
1778
|
### Removed
|
|
1716
1779
|
|
|
1717
1780
|
- OData V4:
|
|
1718
|
-
|
|
1781
|
+
- Removed `End` value from Placement property for custom extensions
|
|
1719
1782
|
|
|
1720
1783
|
## [1.84.46] - 2022-08-24
|
|
1721
1784
|
|
|
1722
1785
|
### Changed
|
|
1723
1786
|
|
|
1724
1787
|
- The specification module is now build with esbuild instead of webpack.
|
|
1725
|
-
The new build generates all type information into a types folder, which makes it easier to consume (but the consumption must be adapted). Examples:
|
|
1788
|
+
The new build generates all type information into a types folder, which makes it easier to consume (but the consumption must be adapted). Examples:
|
|
1726
1789
|
|
|
1727
|
-
|
|
1728
|
-
import { PageType } from '@sap/ux-specification/dist/src/specification/common/';
|
|
1790
|
+
```
|
|
1791
|
+
import { PageType } from '@sap/ux-specification/dist/src/specification/common/';
|
|
1729
1792
|
==> import { PageType } from '@sap/ux-specification/types';
|
|
1730
1793
|
|
|
1731
1794
|
import type { TableCustomColumns, TableCustomColumn } from '@sap/ux-specification/dist/src/v2';
|
|
@@ -1733,49 +1796,50 @@ import type { TableCustomColumns, TableCustomColumn } from '@sap/ux-specificatio
|
|
|
1733
1796
|
|
|
1734
1797
|
import { SectionPosition as SectionPositionV4 } from '@sap/ux-specification/dist/src/v4';
|
|
1735
1798
|
==> import { SectionPosition as SectionPositionV4 } from '@sap/ux-specification/types/v4';
|
|
1736
|
-
|
|
1799
|
+
```
|
|
1737
1800
|
|
|
1738
1801
|
- OData V4:
|
|
1739
|
-
|
|
1802
|
+
- LR: Mark view properties `key`, `index` as hidden in schema
|
|
1740
1803
|
|
|
1741
1804
|
### Fixed
|
|
1742
1805
|
|
|
1743
1806
|
- OData V2:
|
|
1744
|
-
|
|
1807
|
+
- OP: Fixed incorrect generation of flexChanges in case of Form, Form Fields and Form Fields referenced from a navigation entity
|
|
1745
1808
|
|
|
1746
1809
|
- OData V4:
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1810
|
+
- In some cases sections defined with PresentationVariants did not appear on the object page
|
|
1811
|
+
- The resolution of alias definitions using the @SAP\_\_ prefix was not correct, leading also to gaps in the elements that were considered
|
|
1812
|
+
- LR: Schema now considers default visualation `UI.LineItem` if not defined in `SelectionPresentationVariant`
|
|
1750
1813
|
|
|
1751
1814
|
## [1.84.45] - 2022-08-11
|
|
1752
1815
|
|
|
1753
1816
|
### Added
|
|
1754
1817
|
|
|
1755
1818
|
- OData V4:
|
|
1756
|
-
|
|
1757
|
-
|
|
1819
|
+
- the schemas and configs of list report views now also show the visibility property and custom views
|
|
1820
|
+
- extend pagemap support for freestyle apps using FPM library
|
|
1758
1821
|
|
|
1759
1822
|
### Changed
|
|
1760
1823
|
|
|
1761
1824
|
- OData V4: With API version 4 of specification - introduced with the given version - the way how routes are represented in the app.json changes: before the pattern was
|
|
1762
|
-
`route: key`, now it follows the manifest syntax
|
|
1825
|
+
`route: key`, now it follows the manifest syntax
|
|
1826
|
+
|
|
1827
|
+
```
|
|
1828
|
+
key: {
|
|
1829
|
+
route: route
|
|
1830
|
+
}
|
|
1831
|
+
```
|
|
1763
1832
|
|
|
1764
|
-
|
|
1765
|
-
key: {
|
|
1766
|
-
route: route
|
|
1767
|
-
}
|
|
1768
|
-
```
|
|
1833
|
+
The switch to an object representation allows to also include other target information like "outbound".
|
|
1769
1834
|
|
|
1770
|
-
The switch to an object representation allows to also include other target information like "outbound".
|
|
1771
1835
|
- OData V4: as long as no views are defined in manifest, the showCounts property is not part of the schema, except if it is already maintained.
|
|
1772
1836
|
- OData V2:
|
|
1773
|
-
|
|
1837
|
+
- Mark custom column 'columnIndex' property as hidden
|
|
1774
1838
|
|
|
1775
1839
|
### Fixed
|
|
1776
1840
|
|
|
1777
1841
|
- OData V4:
|
|
1778
|
-
|
|
1842
|
+
- LR: The export of property changes at the page editor led to a deletion of (custom) views in manifest; besides, outbound navigation entries could get deleted.
|
|
1779
1843
|
|
|
1780
1844
|
## [1.84.44] - 2022-07-28
|
|
1781
1845
|
|
|
@@ -1795,11 +1859,11 @@ import { SectionPosition as SectionPositionV4 } from '@sap/ux-specification/dist
|
|
|
1795
1859
|
### Fixed
|
|
1796
1860
|
|
|
1797
1861
|
- OData V4:
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1862
|
+
- Properties of custom columns on object page had not been exported correctly if the table is associated to another entity type via navigation path or is using a PresentationVariant.
|
|
1863
|
+
The value help of the anchor in LSP (config JSON) also did not show the right values.
|
|
1864
|
+
- Object Page: Fixed an issue with the schema that `annotationPath` for Object Page Table Sections did not contain `qualifier`;
|
|
1865
|
+
wrong `annotationPath` and `isViewNode` settings are adjusted.
|
|
1866
|
+
- Fixed an issue with export that multiple changes to view's `key` property created duplicated entries in manifest.json
|
|
1803
1867
|
|
|
1804
1868
|
### Quality
|
|
1805
1869
|
|
|
@@ -1810,12 +1874,12 @@ import { SectionPosition as SectionPositionV4 } from '@sap/ux-specification/dist
|
|
|
1810
1874
|
### Fixed
|
|
1811
1875
|
|
|
1812
1876
|
- OData V2:
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1877
|
+
- OVP: LSP for `model` property of a card now lists models from sap.ui5 section of manifest.json
|
|
1878
|
+
- Table type property is now set to blank in case not maintained in manifest.json
|
|
1879
|
+
- 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 refelected in the other.
|
|
1880
|
+
- One UI adaptation or flexibility change may have been shown multiple times in the config, at different sections.
|
|
1881
|
+
- 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.
|
|
1882
|
+
- 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.
|
|
1819
1883
|
|
|
1820
1884
|
## [1.84.41] - 2022-06-16
|
|
1821
1885
|
|
|
@@ -1865,17 +1929,17 @@ Upgrade node & node-version to 14.x
|
|
|
1865
1929
|
### Changed
|
|
1866
1930
|
|
|
1867
1931
|
- OData V4:
|
|
1868
|
-
|
|
1869
|
-
|
|
1932
|
+
- For list report views, the content of title and description in the schema got exchanged.
|
|
1933
|
+
- LR: If views are enabled, generic table columns won't be used/filled.
|
|
1870
1934
|
|
|
1871
1935
|
### Fixed
|
|
1872
1936
|
|
|
1873
1937
|
- OData V4:
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1938
|
+
- If the table setting creationMode existed in the outdated string format, the export just had overwritten the string. Now, an implicit conversion to the new object format takes place.
|
|
1939
|
+
- No import of property annotationPath was happening at chart views of List Report.
|
|
1940
|
+
- In the app specific schema, the description was missing for charts in sections.
|
|
1941
|
+
- Tag 'hidden' was added to the property annotationPath of the ALP chart view in app schema.
|
|
1942
|
+
- If defaultTemplateAnnotationPath is maintained and refers to an annotation other than UI.LineItem, the table settings and columns of the referred definition are now imported correctly.
|
|
1879
1943
|
|
|
1880
1944
|
### Quality
|
|
1881
1945
|
|
|
@@ -1892,15 +1956,15 @@ OData V4:
|
|
|
1892
1956
|
|
|
1893
1957
|
### Fixed
|
|
1894
1958
|
|
|
1895
|
-
- OData V4:
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1959
|
+
- OData V4:
|
|
1960
|
+
- Problems with deletion of ListReport table views.
|
|
1961
|
+
- Unknown properties removed from custom section definition in 'manifest.json'.
|
|
1962
|
+
- Export. Delete of entries from `table/views` - views were not deleted during export if entries in annotation file were deleted as first.
|
|
1963
|
+
- When changing the table type or other table settings for schema type List Report, the respective manifest setting was not updated if the page was configured with primary and secondary views (i.e. the ALP flavour).
|
|
1900
1964
|
|
|
1901
1965
|
- OData V2:
|
|
1902
|
-
|
|
1903
|
-
|
|
1966
|
+
- Sections and subsections with a reference to Communication.Contact or Communication.Address had not been shown, support of flexibility changes for them.
|
|
1967
|
+
- Facet or section references with multi-level navigation had not been handled correctly.
|
|
1904
1968
|
|
|
1905
1969
|
## [1.84.37] - 2022-04-21
|
|
1906
1970
|
|
|
@@ -1909,20 +1973,20 @@ OData V4:
|
|
|
1909
1973
|
- Documentation actualised with regards to the new release version 1.100.
|
|
1910
1974
|
|
|
1911
1975
|
- OData V2:
|
|
1912
|
-
|
|
1913
|
-
|
|
1976
|
+
- LR: Old settings for table type (tableType) had been ignored in newer specification releases. As a consequence, you may have found the table type twice in manifest, once with the old syntax and an additional entry with the new syntax, after switching to a newer UI5 version.
|
|
1977
|
+
Now an implicit conversion to the new tableSettings takes place, and the old setting gets automatically replaced during the export.
|
|
1914
1978
|
- OData V4:
|
|
1915
|
-
|
|
1979
|
+
- OP: Added support for presentation variants with chart or table visualization
|
|
1916
1980
|
|
|
1917
1981
|
### Fixed
|
|
1918
1982
|
|
|
1919
1983
|
- OData V4:
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1984
|
+
- Exception in case of multi-tab views in manifest that referred to a SelectionVariant.
|
|
1985
|
+
- Export of table settings of list report was targeting the wrong manifest settings if a defaultTemplateAnnotationPath is defined, pointing to a SelectionPresentationVariant.
|
|
1986
|
+
- List report with multiple views: insert and reordering was not supported correctly.
|
|
1923
1987
|
- OData V2:
|
|
1924
|
-
|
|
1925
|
-
|
|
1988
|
+
- After an entry of quickVariantSelectionX got deleted, the entry still was present in manifest.json.
|
|
1989
|
+
- Sections of subordinate object pages had not been added correctly to the app schema in all cases.
|
|
1926
1990
|
|
|
1927
1991
|
### Quality
|
|
1928
1992
|
|
|
@@ -1938,8 +2002,8 @@ OData V4:
|
|
|
1938
2002
|
### Fixed
|
|
1939
2003
|
|
|
1940
2004
|
- OData V2:
|
|
1941
|
-
|
|
1942
|
-
- Upgrade of async
|
|
2005
|
+
- Extensions - empty "extensions" object was created in "sap.ui5/"extends"/"extensions"/"sap.ui.viewExtensions"/"sap.suite.ui.generic.template.ListReport.view.ListReport"
|
|
2006
|
+
- Upgrade of async
|
|
1943
2007
|
|
|
1944
2008
|
### Quality
|
|
1945
2009
|
|
|
@@ -1961,17 +2025,17 @@ OData V4:
|
|
|
1961
2025
|
### Added
|
|
1962
2026
|
|
|
1963
2027
|
- OData V4:
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
2028
|
+
- support of `flexEnabled` property
|
|
2029
|
+
- ALP flavor, support of ALP views
|
|
2030
|
+
- List report: multiple views, with the right properties
|
|
1967
2031
|
|
|
1968
2032
|
### Fixed
|
|
1969
2033
|
|
|
1970
2034
|
- OData V2:
|
|
1971
|
-
|
|
2035
|
+
- duplicated fragment columns were written if table namespace was not found, and unknown custom data in fragment was not considered.
|
|
1972
2036
|
- OData V4
|
|
1973
|
-
|
|
1974
|
-
|
|
2037
|
+
- custom columns had not been considered when having a 'Before' reference against other custom columns
|
|
2038
|
+
- fix overwriting of manifest page content, if page key is changed
|
|
1975
2039
|
|
|
1976
2040
|
### Quality
|
|
1977
2041
|
|
|
@@ -1986,17 +2050,17 @@ OData V4:
|
|
|
1986
2050
|
### Added
|
|
1987
2051
|
|
|
1988
2052
|
- OData V2:
|
|
1989
|
-
|
|
2053
|
+
- visible property is now also available for facets without annotation Id
|
|
1990
2054
|
|
|
1991
2055
|
- OData V4:
|
|
1992
|
-
|
|
2056
|
+
- Support of progress, rating and microchart header facets
|
|
1993
2057
|
|
|
1994
2058
|
### Fixed
|
|
1995
2059
|
|
|
1996
2060
|
- OData V2:
|
|
1997
|
-
|
|
2061
|
+
- Creation of new flexChanges now considers resolved Id from pom.xml
|
|
1998
2062
|
- OData V4:
|
|
1999
|
-
|
|
2063
|
+
- Fix overwriting of manifest page id in case of different page key
|
|
2000
2064
|
|
|
2001
2065
|
### Quality
|
|
2002
2066
|
|
|
@@ -2008,7 +2072,7 @@ OData V4:
|
|
|
2008
2072
|
|
|
2009
2073
|
- Metadata information `dataType` added to various places in V2 and V4 schemas
|
|
2010
2074
|
- OData V2:
|
|
2011
|
-
|
|
2075
|
+
- display selection fields, and support date settings properties on LR/ALP
|
|
2012
2076
|
|
|
2013
2077
|
### Fixed
|
|
2014
2078
|
|
|
@@ -2024,13 +2088,13 @@ OData V4:
|
|
|
2024
2088
|
### Added
|
|
2025
2089
|
|
|
2026
2090
|
- OData V2:
|
|
2027
|
-
|
|
2091
|
+
- Support column and footer action properties on LR
|
|
2028
2092
|
|
|
2029
2093
|
### Fixed
|
|
2030
2094
|
|
|
2031
2095
|
- OData V2:
|
|
2032
|
-
|
|
2033
|
-
|
|
2096
|
+
- OP: Fix generation of flexChanges for sections with or without ID in annotations
|
|
2097
|
+
- Fix issues with sync logic in case of sub object page
|
|
2034
2098
|
|
|
2035
2099
|
### Quality
|
|
2036
2100
|
|
|
@@ -2039,7 +2103,7 @@ OData V4:
|
|
|
2039
2103
|
### Added
|
|
2040
2104
|
|
|
2041
2105
|
- OData V2:
|
|
2042
|
-
|
|
2106
|
+
- `exportType` property can now be configured to specify the type of export to be used in the SmartTable control.
|
|
2043
2107
|
|
|
2044
2108
|
### Quality
|
|
2045
2109
|
|
|
@@ -2050,34 +2114,34 @@ OData V4:
|
|
|
2050
2114
|
### Added
|
|
2051
2115
|
|
|
2052
2116
|
- OData V2:
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2117
|
+
- OP: properties of footer actions are displayed and supported in side panel
|
|
2118
|
+
- properties of toolbar actions are displayed and supported in side panel
|
|
2119
|
+
- OVP: The property `showLineItemDetail` is now supported for List and Table cards
|
|
2120
|
+
- OP: Schema now supports column extensions for TreeTable
|
|
2057
2121
|
|
|
2058
2122
|
### Changed
|
|
2059
2123
|
|
|
2060
2124
|
- OData V2:
|
|
2061
|
-
|
|
2062
|
-
|
|
2125
|
+
- property `filterDefaultsFromSelectionVariant` is now only supported for AnalyticalListPage floorplan
|
|
2126
|
+
- OVP: The property `tabs` and `addOdataSelect` can now be confirued for all cards
|
|
2063
2127
|
- OData V4:
|
|
2064
|
-
|
|
2128
|
+
- property `afterExecution` of table columns now is only visible for actions but not for other record types
|
|
2065
2129
|
|
|
2066
2130
|
### Removed
|
|
2067
2131
|
|
|
2068
2132
|
- OData V2:
|
|
2069
|
-
|
|
2133
|
+
- OVP: removed `tabs` property from card level
|
|
2070
2134
|
|
|
2071
2135
|
### Deprecated
|
|
2072
2136
|
|
|
2073
2137
|
### Fixed
|
|
2074
2138
|
|
|
2075
2139
|
- OData V2:
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2140
|
+
- correct schema generation in case multiple facets are referring to lineitem annotation of same entity
|
|
2141
|
+
- Facet Id is considered for import and export of manifest settings
|
|
2142
|
+
- Fixed sync issues in case no text is provided for custom columns
|
|
2079
2143
|
- OData V4:
|
|
2080
|
-
|
|
2144
|
+
- Avoid exporting empty arrays to manifest.json
|
|
2081
2145
|
|
|
2082
2146
|
### Quality
|
|
2083
2147
|
|
|
@@ -2129,32 +2193,32 @@ OData V4:
|
|
|
2129
2193
|
### Added
|
|
2130
2194
|
|
|
2131
2195
|
- OData V2:
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2196
|
+
- Support for (Sub)Section properties: `visible`.
|
|
2197
|
+
- ALP: Schema now comprises of entity properties for config `createWithParameterDialog`->`fields`
|
|
2198
|
+
- OP: Added support for multiple flex changes in Form and Header Actions
|
|
2135
2199
|
- V2 & V4:
|
|
2136
|
-
|
|
2200
|
+
- Footer actions are now part of the schema. A node for header actions is visible even if there are no actions yet.
|
|
2137
2201
|
|
|
2138
2202
|
### Changed
|
|
2139
2203
|
|
|
2140
2204
|
- OData V2:
|
|
2141
|
-
|
|
2205
|
+
- Enhanced sync logic to use generic approach for handling unknown properties. As a result sync logic is more robust and handles more unknown properties.
|
|
2142
2206
|
|
|
2143
2207
|
### Removed
|
|
2144
2208
|
|
|
2145
2209
|
- OData V2:
|
|
2146
|
-
|
|
2210
|
+
- OVP: Removed `tab` property from `Stack` and `Link List` cards as view switch control is not supported
|
|
2147
2211
|
|
|
2148
2212
|
### Deprecated
|
|
2149
2213
|
|
|
2150
2214
|
### Fixed
|
|
2151
2215
|
|
|
2152
2216
|
- OData V4:
|
|
2153
|
-
|
|
2154
|
-
|
|
2217
|
+
- Pages Schema. Exception if path in UI.SelectionFields is not valid.
|
|
2218
|
+
- Object page sections referring to UI.Identification with qualifer shall show actions besides the fields.
|
|
2155
2219
|
- V2 & V4:
|
|
2156
|
-
|
|
2157
|
-
|
|
2220
|
+
- replace alias of namespace definitions of header actions even for references that are not related to OData vocabularies.
|
|
2221
|
+
- Add `visible` property to DataField types
|
|
2158
2222
|
- annotationPath definitions of header and footer actions.
|
|
2159
2223
|
|
|
2160
2224
|
### Quality
|
|
@@ -2177,14 +2241,14 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2177
2241
|
- Added `i18nClassification` for `title`, `description` properties for `App.json` schema in V2 and V4.
|
|
2178
2242
|
- V4: Header actions are now part of the Object Page schema.
|
|
2179
2243
|
- OData V2:
|
|
2180
|
-
|
|
2181
|
-
|
|
2244
|
+
- OVP: Added support for property `annotationPath` in Linklist card settings.
|
|
2245
|
+
- OVP: property `requireAppAuthorization` is now supported for all card types.
|
|
2182
2246
|
|
|
2183
2247
|
### Changed
|
|
2184
2248
|
|
|
2185
2249
|
- README was updated.
|
|
2186
2250
|
- Order and naming of view nodes for the V2 Object Page adapted.
|
|
2187
|
-
- Pattern for binding changes in V2: there are now two different patterns for List Report and Object Page; the one for the Object Page
|
|
2251
|
+
- 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}}"
|
|
2188
2252
|
|
|
2189
2253
|
### Removed
|
|
2190
2254
|
|
|
@@ -2205,8 +2269,8 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2205
2269
|
|
|
2206
2270
|
- New html files showing a graphical representation of the content of each generic schema.
|
|
2207
2271
|
- OData V2:
|
|
2208
|
-
|
|
2209
|
-
|
|
2272
|
+
- We show field groups and fiels now as part of the app specific schema, and allow the maintenance of the visible property for fields.
|
|
2273
|
+
- Support of property `flexEnabled`on app level.
|
|
2210
2274
|
|
|
2211
2275
|
### Changed
|
|
2212
2276
|
|
|
@@ -2215,10 +2279,10 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2215
2279
|
### Fixed
|
|
2216
2280
|
|
|
2217
2281
|
- OData V2:
|
|
2218
|
-
|
|
2282
|
+
- Invalid flexChanges are now ignored during sync, hence configs and pages files are created.
|
|
2219
2283
|
- OData V4:
|
|
2220
|
-
|
|
2221
|
-
|
|
2284
|
+
- Exception occurred in case of invalid custom page definitions in manifest
|
|
2285
|
+
- Page determination went wrong in case of irregular ordering of routing targets.
|
|
2222
2286
|
|
|
2223
2287
|
### Quality
|
|
2224
2288
|
|
|
@@ -2229,9 +2293,9 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2229
2293
|
### Added
|
|
2230
2294
|
|
|
2231
2295
|
- OData V4:
|
|
2232
|
-
|
|
2296
|
+
- Header Facets are now shown in the schemas and configs, along with their actual manifest settings.
|
|
2233
2297
|
- OData V2:
|
|
2234
|
-
|
|
2298
|
+
- OVP: Added support for property `dataPointAnnotationPath` in ListCard settings
|
|
2235
2299
|
|
|
2236
2300
|
### Fixed
|
|
2237
2301
|
|
|
@@ -2242,7 +2306,7 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2242
2306
|
### Added
|
|
2243
2307
|
|
|
2244
2308
|
- OData V4:
|
|
2245
|
-
|
|
2309
|
+
- Enhanced sync logic to avoid export of properties unknown to specification module to avoid modification in manifest.json
|
|
2246
2310
|
- Added test for function `convertInterfaces` to increase test coverage
|
|
2247
2311
|
- Added flexchange layer information to API interface
|
|
2248
2312
|
|
|
@@ -2262,23 +2326,23 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2262
2326
|
### Added
|
|
2263
2327
|
|
|
2264
2328
|
- OData V2:
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2329
|
+
- Added description property to header actions in schema
|
|
2330
|
+
- Table toolbar as structure node
|
|
2331
|
+
- Added properties showClearOnFB, showFilterConfiguration and showRestoreOnFB to the FilterBar
|
|
2268
2332
|
|
|
2269
|
-
- OData V4:
|
|
2270
|
-
|
|
2271
|
-
|
|
2333
|
+
- OData V4:
|
|
2334
|
+
- Table toolbar as structure node
|
|
2335
|
+
- enableOnSelect as property for table toolbar
|
|
2272
2336
|
|
|
2273
|
-
- Developer guide for contributors to this module
|
|
2337
|
+
- Developer guide for contributors to this module
|
|
2274
2338
|
|
|
2275
2339
|
- Actualization of JS-DOC
|
|
2276
2340
|
|
|
2277
2341
|
- Enhanced error handling of API functions.
|
|
2278
2342
|
|
|
2279
2343
|
- The generic schema is enhanced by the following information:
|
|
2280
|
-
|
|
2281
|
-
|
|
2344
|
+
- artifact type (manifest setting, flex change or annotation)
|
|
2345
|
+
- in case of flex change: control name
|
|
2282
2346
|
|
|
2283
2347
|
### Changed
|
|
2284
2348
|
|
|
@@ -2291,7 +2355,7 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2291
2355
|
- 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.
|
|
2292
2356
|
- Enhance function determineTableType to also check for presence of old tableType flag in manifest.json
|
|
2293
2357
|
- OData V2:
|
|
2294
|
-
|
|
2358
|
+
- ALP: Use correct Id for flex changes generated in case of Filter Bar
|
|
2295
2359
|
|
|
2296
2360
|
### Quality
|
|
2297
2361
|
|
|
@@ -2338,15 +2402,15 @@ For some V4 apps, the export of property changes failed due to invalid schema de
|
|
|
2338
2402
|
|
|
2339
2403
|
### Added
|
|
2340
2404
|
|
|
2341
|
-
- New structure elements at the Filterbar that represent the selection fields resulting from
|
|
2405
|
+
- New structure elements at the Filterbar that represent the selection fields resulting from the UI.SelectionFields annotation.
|
|
2342
2406
|
|
|
2343
2407
|
### Changed
|
|
2344
2408
|
|
|
2345
2409
|
- In the annotationPath information of the generated JSON schemas all alias definitions are now replaced by the full vocabulary name.
|
|
2346
2410
|
- Descriptions in the schema now follow the following paradigm:
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2411
|
+
- 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.
|
|
2412
|
+
- Thus we now generalise: all view nodes (isViewNode = true) have a description (but do not necessarily need a title).
|
|
2413
|
+
- 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).
|
|
2350
2414
|
|
|
2351
2415
|
### Removed
|
|
2352
2416
|
|
|
@@ -2457,7 +2521,7 @@ Added resolutions for
|
|
|
2457
2521
|
|
|
2458
2522
|
### Changed
|
|
2459
2523
|
|
|
2460
|
-
- createWithParameterDialog can be found under
|
|
2524
|
+
- createWithParameterDialog can be found under _table_ properties instead of _toolbarActions_ now.
|
|
2461
2525
|
|
|
2462
2526
|
### Fixed
|
|
2463
2527
|
|
|
@@ -2586,7 +2650,7 @@ Added resolutions for
|
|
|
2586
2650
|
### Added
|
|
2587
2651
|
|
|
2588
2652
|
- The specification API now allows passing a logger, i.e. an instance of the new interface ExtensionLogger.
|
|
2589
|
-
If supplied, all messages resulting from the API processing will be passed to the logger instance instead of console.log.
|
|
2653
|
+
If supplied, all messages resulting from the API processing will be passed to the logger instance instead of console.log.
|
|
2590
2654
|
- Property showDataLabel on global OVP level
|
|
2591
2655
|
- OData V2: New `extensionType` property is added to Custom Column definition.
|
|
2592
2656
|
- OData V2: Support for Custom Columns in Object Page tables.
|
|
@@ -2594,7 +2658,7 @@ If supplied, all messages resulting from the API processing will be passed to th
|
|
|
2594
2658
|
### Changed
|
|
2595
2659
|
|
|
2596
2660
|
- OData V4: List Report `variantManagement` property is now moved to page level
|
|
2597
|
-
- The specification API now returns a
|
|
2661
|
+
- The specification API now returns a _complete_ list of flex changes, not only the updated ones; if a flex property was not maintained or deleted, you can find it in the list with content.newValue = null. This allows the consuming application to distinguish flex changes that are supported by the JSON schema of the specification from other flex changes that may have been created by other means; only changes that are part of the result list of the API but have content.newValue = null should get deleted from the app.
|
|
2598
2662
|
|
|
2599
2663
|
### Fixed
|
|
2600
2664
|
|