Skip to content

Commit 1fcbadb

Browse files
chore(release): publish v2.0.0-rc.1 [ci skip]
1 parent 47baa33 commit 1fcbadb

14 files changed

+203
-7
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,47 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
### Bug Fixes
9+
10+
- **codemod:** fix import statment for UI5 Web Component enums ([#6084](https://github.com/SAP/ui5-webcomponents-react/issues/6084)) ([b3a5aed](https://github.com/SAP/ui5-webcomponents-react/commit/b3a5aed8b99c31e7475c2d305d6804b9afa7275b))
11+
12+
### Code Refactoring
13+
14+
- drop support for React 16 & 17 ([#6095](https://github.com/SAP/ui5-webcomponents-react/issues/6095)) ([07facf3](https://github.com/SAP/ui5-webcomponents-react/commit/07facf3678c6d0432eb30ddae8c90784dd8351e6))
15+
16+
### Features
17+
18+
- **codemod:** basic replacements for `DynamicPage` ([#6086](https://github.com/SAP/ui5-webcomponents-react/issues/6086)) ([93819a9](https://github.com/SAP/ui5-webcomponents-react/commit/93819a9a9c7fd87d16d5bc64094890e8f8d5684a))
19+
- **codemod:** transform Text `wrapping` to `maxLines` ([#6085](https://github.com/SAP/ui5-webcomponents-react/issues/6085)) ([a879a9b](https://github.com/SAP/ui5-webcomponents-react/commit/a879a9b107dc50e1bc267bfd2abe32038201c30f))
20+
- **ObjectPage:** refactor component to support ui5wc v2 ([#6089](https://github.com/SAP/ui5-webcomponents-react/issues/6089)) ([105b2da](https://github.com/SAP/ui5-webcomponents-react/commit/105b2da44c1c2727080da8558dfb6c4ef65e2b39))
21+
22+
### BREAKING CHANGES
23+
24+
- the minimum required `react` and `react-dom` version is now 18.0.0
25+
- **ObjectPage:** `headerContent` has been renamed to `headerArea` and
26+
now only accepts the `ObjectPageHeader` component.
27+
- **ObjectPage:** `headerTitle` has been renamed to `titleArea` and now
28+
only accepts the `ObjectPageTitle` component.
29+
- **ObjectPage:** `footer` has been renamed to `footerArea`.
30+
- **ObjectPage:** `onToggleHeaderContent` has been renamed to
31+
`onToggleHeaderArea`
32+
- **ObjectPage:** `onPinnedStateChange` has been renamed to
33+
`onPinButtonToggle`
34+
- **ObjectPage:** **ObjectPageTitle**: `actions` has been renamed to
35+
`actionsBar`. Instead of single actions, the `Toolbar` component should
36+
now be passed.
37+
- **ObjectPage:** **ObjectPageTitle**: `navigationActions` has been
38+
renamed to `navigationBar`. Instead of single actions, the `Toolbar`
39+
component should now be passed.
40+
- **ObjectPage:** **ObjectPageTitle**: `actionsToolbarProps`: Since it's
41+
now recommended passing the `Toolbar` component directly, this prop is
42+
redundant.
43+
- **ObjectPage:** **ObjectPageTitle**: `navigationActionsToolbarProps`:
44+
Since it's now recommended passing the `Toolbar` component directly,
45+
this prop is redundant.
46+
647
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
748

849
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"npmClient": "yarn",
55
"command": {
66
"version": {

packages/base/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,41 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
### Code Refactoring
9+
10+
- drop support for React 16 & 17 ([#6095](https://github.com/SAP/ui5-webcomponents-react/issues/6095)) ([07facf3](https://github.com/SAP/ui5-webcomponents-react/commit/07facf3678c6d0432eb30ddae8c90784dd8351e6))
11+
12+
### Features
13+
14+
- **ObjectPage:** refactor component to support ui5wc v2 ([#6089](https://github.com/SAP/ui5-webcomponents-react/issues/6089)) ([105b2da](https://github.com/SAP/ui5-webcomponents-react/commit/105b2da44c1c2727080da8558dfb6c4ef65e2b39))
15+
16+
### BREAKING CHANGES
17+
18+
- the minimum required `react` and `react-dom` version is now 18.0.0
19+
- **ObjectPage:** `headerContent` has been renamed to `headerArea` and
20+
now only accepts the `ObjectPageHeader` component.
21+
- **ObjectPage:** `headerTitle` has been renamed to `titleArea` and now
22+
only accepts the `ObjectPageTitle` component.
23+
- **ObjectPage:** `footer` has been renamed to `footerArea`.
24+
- **ObjectPage:** `onToggleHeaderContent` has been renamed to
25+
`onToggleHeaderArea`
26+
- **ObjectPage:** `onPinnedStateChange` has been renamed to
27+
`onPinButtonToggle`
28+
- **ObjectPage:** **ObjectPageTitle**: `actions` has been renamed to
29+
`actionsBar`. Instead of single actions, the `Toolbar` component should
30+
now be passed.
31+
- **ObjectPage:** **ObjectPageTitle**: `navigationActions` has been
32+
renamed to `navigationBar`. Instead of single actions, the `Toolbar`
33+
component should now be passed.
34+
- **ObjectPage:** **ObjectPageTitle**: `actionsToolbarProps`: Since it's
35+
now recommended passing the `Toolbar` component directly, this prop is
36+
redundant.
37+
- **ObjectPage:** **ObjectPageTitle**: `navigationActionsToolbarProps`:
38+
Since it's now recommended passing the `Toolbar` component directly,
39+
this prop is redundant.
40+
641
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
742

843
### Bug Fixes

packages/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-react-base",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Base for ui5-webcomponents-react",
55
"type": "module",
66
"main": "dist/index.js",

packages/charts/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
### Code Refactoring
9+
10+
- drop support for React 16 & 17 ([#6095](https://github.com/SAP/ui5-webcomponents-react/issues/6095)) ([07facf3](https://github.com/SAP/ui5-webcomponents-react/commit/07facf3678c6d0432eb30ddae8c90784dd8351e6))
11+
12+
### BREAKING CHANGES
13+
14+
- the minimum required `react` and `react-dom` version is now 18.0.0
15+
616
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
717

818
### Bug Fixes

packages/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-react-charts",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Charts for ui5-webcomponents-react",
55
"type": "module",
66
"main": "dist/index.js",

packages/cli/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,42 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
### Bug Fixes
9+
10+
- **codemod:** fix import statment for UI5 Web Component enums ([#6084](https://github.com/SAP/ui5-webcomponents-react/issues/6084)) ([b3a5aed](https://github.com/SAP/ui5-webcomponents-react/commit/b3a5aed8b99c31e7475c2d305d6804b9afa7275b))
11+
12+
### Features
13+
14+
- **codemod:** basic replacements for `DynamicPage` ([#6086](https://github.com/SAP/ui5-webcomponents-react/issues/6086)) ([93819a9](https://github.com/SAP/ui5-webcomponents-react/commit/93819a9a9c7fd87d16d5bc64094890e8f8d5684a))
15+
- **codemod:** transform Text `wrapping` to `maxLines` ([#6085](https://github.com/SAP/ui5-webcomponents-react/issues/6085)) ([a879a9b](https://github.com/SAP/ui5-webcomponents-react/commit/a879a9b107dc50e1bc267bfd2abe32038201c30f))
16+
- **ObjectPage:** refactor component to support ui5wc v2 ([#6089](https://github.com/SAP/ui5-webcomponents-react/issues/6089)) ([105b2da](https://github.com/SAP/ui5-webcomponents-react/commit/105b2da44c1c2727080da8558dfb6c4ef65e2b39))
17+
18+
### BREAKING CHANGES
19+
20+
- **ObjectPage:** `headerContent` has been renamed to `headerArea` and
21+
now only accepts the `ObjectPageHeader` component.
22+
- **ObjectPage:** `headerTitle` has been renamed to `titleArea` and now
23+
only accepts the `ObjectPageTitle` component.
24+
- **ObjectPage:** `footer` has been renamed to `footerArea`.
25+
- **ObjectPage:** `onToggleHeaderContent` has been renamed to
26+
`onToggleHeaderArea`
27+
- **ObjectPage:** `onPinnedStateChange` has been renamed to
28+
`onPinButtonToggle`
29+
- **ObjectPage:** **ObjectPageTitle**: `actions` has been renamed to
30+
`actionsBar`. Instead of single actions, the `Toolbar` component should
31+
now be passed.
32+
- **ObjectPage:** **ObjectPageTitle**: `navigationActions` has been
33+
renamed to `navigationBar`. Instead of single actions, the `Toolbar`
34+
component should now be passed.
35+
- **ObjectPage:** **ObjectPageTitle**: `actionsToolbarProps`: Since it's
36+
now recommended passing the `Toolbar` component directly, this prop is
37+
redundant.
38+
- **ObjectPage:** **ObjectPageTitle**: `navigationActionsToolbarProps`:
39+
Since it's now recommended passing the `Toolbar` component directly,
40+
this prop is redundant.
41+
642
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
743

844
### Code Refactoring

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "CLI for UI5 Web Components for React",
44
"author": "SAP SE (https://www.sap.com)",
55
"license": "Apache-2.0",
6-
"version": "2.0.0-rc.0",
6+
"version": "2.0.0-rc.1",
77
"type": "module",
88
"types": "./dist/index.d.ts",
99
"main": "./dist/index.js",

packages/compat/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,41 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
### Code Refactoring
9+
10+
- drop support for React 16 & 17 ([#6095](https://github.com/SAP/ui5-webcomponents-react/issues/6095)) ([07facf3](https://github.com/SAP/ui5-webcomponents-react/commit/07facf3678c6d0432eb30ddae8c90784dd8351e6))
11+
12+
### Features
13+
14+
- **ObjectPage:** refactor component to support ui5wc v2 ([#6089](https://github.com/SAP/ui5-webcomponents-react/issues/6089)) ([105b2da](https://github.com/SAP/ui5-webcomponents-react/commit/105b2da44c1c2727080da8558dfb6c4ef65e2b39))
15+
16+
### BREAKING CHANGES
17+
18+
- the minimum required `react` and `react-dom` version is now 18.0.0
19+
- **ObjectPage:** `headerContent` has been renamed to `headerArea` and
20+
now only accepts the `ObjectPageHeader` component.
21+
- **ObjectPage:** `headerTitle` has been renamed to `titleArea` and now
22+
only accepts the `ObjectPageTitle` component.
23+
- **ObjectPage:** `footer` has been renamed to `footerArea`.
24+
- **ObjectPage:** `onToggleHeaderContent` has been renamed to
25+
`onToggleHeaderArea`
26+
- **ObjectPage:** `onPinnedStateChange` has been renamed to
27+
`onPinButtonToggle`
28+
- **ObjectPage:** **ObjectPageTitle**: `actions` has been renamed to
29+
`actionsBar`. Instead of single actions, the `Toolbar` component should
30+
now be passed.
31+
- **ObjectPage:** **ObjectPageTitle**: `navigationActions` has been
32+
renamed to `navigationBar`. Instead of single actions, the `Toolbar`
33+
component should now be passed.
34+
- **ObjectPage:** **ObjectPageTitle**: `actionsToolbarProps`: Since it's
35+
now recommended passing the `Toolbar` component directly, this prop is
36+
redundant.
37+
- **ObjectPage:** **ObjectPageTitle**: `navigationActionsToolbarProps`:
38+
Since it's now recommended passing the `Toolbar` component directly,
39+
this prop is redundant.
40+
641
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
742

843
### Code Refactoring

packages/compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-react-compat",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "React Wrapper for UI5 Web Components Compat package",
55
"type": "module",
66
"main": "dist/index.js",

packages/cypress-commands/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
**Note:** Version bump only for package @ui5/webcomponents-cypress-commands
9+
610
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
711

812
### Bug Fixes

packages/cypress-commands/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Cypress Custom Commands and Queries for UI5 Web Components",
44
"author": "SAP SE (https://www.sap.com)",
55
"license": "Apache-2.0",
6-
"version": "2.0.0-rc.0",
6+
"version": "2.0.0-rc.1",
77
"type": "module",
88
"types": "./dist/index.d.ts",
99
"main": "./dist/index.js",

packages/main/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,41 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-07-19)
7+
8+
### Code Refactoring
9+
10+
- drop support for React 16 & 17 ([#6095](https://github.com/SAP/ui5-webcomponents-react/issues/6095)) ([07facf3](https://github.com/SAP/ui5-webcomponents-react/commit/07facf3678c6d0432eb30ddae8c90784dd8351e6))
11+
12+
### Features
13+
14+
- **ObjectPage:** refactor component to support ui5wc v2 ([#6089](https://github.com/SAP/ui5-webcomponents-react/issues/6089)) ([105b2da](https://github.com/SAP/ui5-webcomponents-react/commit/105b2da44c1c2727080da8558dfb6c4ef65e2b39))
15+
16+
### BREAKING CHANGES
17+
18+
- the minimum required `react` and `react-dom` version is now 18.0.0
19+
- **ObjectPage:** `headerContent` has been renamed to `headerArea` and
20+
now only accepts the `ObjectPageHeader` component.
21+
- **ObjectPage:** `headerTitle` has been renamed to `titleArea` and now
22+
only accepts the `ObjectPageTitle` component.
23+
- **ObjectPage:** `footer` has been renamed to `footerArea`.
24+
- **ObjectPage:** `onToggleHeaderContent` has been renamed to
25+
`onToggleHeaderArea`
26+
- **ObjectPage:** `onPinnedStateChange` has been renamed to
27+
`onPinButtonToggle`
28+
- **ObjectPage:** **ObjectPageTitle**: `actions` has been renamed to
29+
`actionsBar`. Instead of single actions, the `Toolbar` component should
30+
now be passed.
31+
- **ObjectPage:** **ObjectPageTitle**: `navigationActions` has been
32+
renamed to `navigationBar`. Instead of single actions, the `Toolbar`
33+
component should now be passed.
34+
- **ObjectPage:** **ObjectPageTitle**: `actionsToolbarProps`: Since it's
35+
now recommended passing the `Toolbar` component directly, this prop is
36+
redundant.
37+
- **ObjectPage:** **ObjectPageTitle**: `navigationActionsToolbarProps`:
38+
Since it's now recommended passing the `Toolbar` component directly,
39+
this prop is redundant.
40+
641
# [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.2...v2.0.0-rc.0) (2024-07-11)
742

843
### Bug Fixes

packages/main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-react",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "React Wrapper for UI5 Web Components and additional components",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)