diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ca8560e8c..af8dca12cb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.12](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.11...v1.29.12) (2024-10-17) + +### Bug Fixes + +- **AnalyticalTable:** offer limited support for `infiniteScroll` combined with a grouped table ([#6431](https://github.com/SAP/ui5-webcomponents-react/issues/6431)) ([fc05ab6](https://github.com/SAP/ui5-webcomponents-react/commit/fc05ab663f54bfa394891cf08d159b5a14b266f5)) +- **charts:** prevent data points from being covered by `zoomingTool` ([#6490](https://github.com/SAP/ui5-webcomponents-react/issues/6490)) ([e902c1a](https://github.com/SAP/ui5-webcomponents-react/commit/e902c1a8d8c8971445ad35b0f1e3964c0a291aac)) +- **FilterBar:** add tooltip for list-view SegmentedButtonItem ([#6503](https://github.com/SAP/ui5-webcomponents-react/issues/6503)) ([44ecee8](https://github.com/SAP/ui5-webcomponents-react/commit/44ecee8324cc0bca61e16a5c70b8bb1906dddb27)), closes [#6496](https://github.com/SAP/ui5-webcomponents-react/issues/6496) +- **ObjectPage:** improve selection & scroll behavior ([#6492](https://github.com/SAP/ui5-webcomponents-react/issues/6492)) ([#6507](https://github.com/SAP/ui5-webcomponents-react/issues/6507)) ([be7444c](https://github.com/SAP/ui5-webcomponents-react/commit/be7444c70bf55a14dfcaa04dbc55e704fa12835b)), closes [#6478](https://github.com/SAP/ui5-webcomponents-react/issues/6478) +- **ObjectPageSubSection:** update styles to latest specs ([#6502](https://github.com/SAP/ui5-webcomponents-react/issues/6502)) ([ce87a3b](https://github.com/SAP/ui5-webcomponents-react/commit/ce87a3b0e7057b1ba43747954e4c82f5f5c1afb9)), closes [#5850](https://github.com/SAP/ui5-webcomponents-react/issues/5850) +- **Text:** only break words if text can wrap ([#6432](https://github.com/SAP/ui5-webcomponents-react/issues/6432)) ([252c2ea](https://github.com/SAP/ui5-webcomponents-react/commit/252c2eadce48e6cbc52f6a0ba79f4ac4ff262dae)), closes [#6427](https://github.com/SAP/ui5-webcomponents-react/issues/6427) + ## [1.29.11](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.10...v1.29.11) (2024-09-24) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 0efe2e527d5..3ef370027b4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "1.29.11", + "version": "1.29.12", "npmClient": "yarn", "command": { "version": { diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md index 2f831cfb17c..426e1741f8c 100644 --- a/packages/charts/CHANGELOG.md +++ b/packages/charts/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.12](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.11...v1.29.12) (2024-10-17) + +### Bug Fixes + +- **charts:** prevent data points from being covered by `zoomingTool` ([#6490](https://github.com/SAP/ui5-webcomponents-react/issues/6490)) ([e902c1a](https://github.com/SAP/ui5-webcomponents-react/commit/e902c1a8d8c8971445ad35b0f1e3964c0a291aac)) + ## [1.29.10](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.9...v1.29.10) (2024-09-05) **Note:** Version bump only for package @ui5/webcomponents-react-charts diff --git a/packages/charts/package.json b/packages/charts/package.json index 70d41b5124d..77ca5e6ab85 100644 --- a/packages/charts/package.json +++ b/packages/charts/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-charts", - "version": "1.29.10", + "version": "1.29.12", "description": "Charts for ui5-webcomponents-react", "type": "module", "main": "dist/index.js", diff --git a/packages/main/CHANGELOG.md b/packages/main/CHANGELOG.md index db3d9bb3b1c..62cb7ea5c23 100644 --- a/packages/main/CHANGELOG.md +++ b/packages/main/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.12](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.11...v1.29.12) (2024-10-17) + +### Bug Fixes + +- **AnalyticalTable:** offer limited support for `infiniteScroll` combined with a grouped table ([#6431](https://github.com/SAP/ui5-webcomponents-react/issues/6431)) ([fc05ab6](https://github.com/SAP/ui5-webcomponents-react/commit/fc05ab663f54bfa394891cf08d159b5a14b266f5)) +- **FilterBar:** add tooltip for list-view SegmentedButtonItem ([#6503](https://github.com/SAP/ui5-webcomponents-react/issues/6503)) ([44ecee8](https://github.com/SAP/ui5-webcomponents-react/commit/44ecee8324cc0bca61e16a5c70b8bb1906dddb27)), closes [#6496](https://github.com/SAP/ui5-webcomponents-react/issues/6496) +- **ObjectPage:** improve selection & scroll behavior ([#6492](https://github.com/SAP/ui5-webcomponents-react/issues/6492)) ([#6507](https://github.com/SAP/ui5-webcomponents-react/issues/6507)) ([be7444c](https://github.com/SAP/ui5-webcomponents-react/commit/be7444c70bf55a14dfcaa04dbc55e704fa12835b)), closes [#6478](https://github.com/SAP/ui5-webcomponents-react/issues/6478) +- **ObjectPageSubSection:** update styles to latest specs ([#6502](https://github.com/SAP/ui5-webcomponents-react/issues/6502)) ([ce87a3b](https://github.com/SAP/ui5-webcomponents-react/commit/ce87a3b0e7057b1ba43747954e4c82f5f5c1afb9)), closes [#5850](https://github.com/SAP/ui5-webcomponents-react/issues/5850) +- **Text:** only break words if text can wrap ([#6432](https://github.com/SAP/ui5-webcomponents-react/issues/6432)) ([252c2ea](https://github.com/SAP/ui5-webcomponents-react/commit/252c2eadce48e6cbc52f6a0ba79f4ac4ff262dae)), closes [#6427](https://github.com/SAP/ui5-webcomponents-react/issues/6427) + ## [1.29.11](https://github.com/SAP/ui5-webcomponents-react/compare/v1.29.10...v1.29.11) (2024-09-24) ### Bug Fixes diff --git a/packages/main/package.json b/packages/main/package.json index 802240a753d..eec71ae76ad 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react", - "version": "1.29.11", + "version": "1.29.12", "description": "React Wrapper for UI5 Web Components and additional components", "type": "module", "main": "dist/index.js",