diff --git a/CHANGELOG.md b/CHANGELOG.md index d4abf0617cd..a94d5d6ca18 100644 --- a/CHANGELOG.md +++ b/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. +## [2.1.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.1.0...v2.1.1) (2024-09-24) + +### Bug Fixes + +- **compat:** allow file/deep imports for components ([#6394](https://github.com/SAP/ui5-webcomponents-react/issues/6394)) ([a5eb344](https://github.com/SAP/ui5-webcomponents-react/commit/a5eb34498fa8b566208175c7f6acafbac17ef0df)), closes [#6344](https://github.com/SAP/ui5-webcomponents-react/issues/6344) +- **deps:** update dependency @tanstack/react-virtual to v3.10.8 ([#6292](https://github.com/SAP/ui5-webcomponents-react/issues/6292)) ([b981202](https://github.com/SAP/ui5-webcomponents-react/commit/b9812029d373af26b4a7dfad5e2957087481f7b6)) +- ensure availability of internal CSS vars ([#6393](https://github.com/SAP/ui5-webcomponents-react/issues/6393)) ([d8a8df3](https://github.com/SAP/ui5-webcomponents-react/commit/d8a8df3054ebaa079dddd5ef4a243346824c959a)) +- **SplitterLayout:** fix cursor for vertical resize ([#6324](https://github.com/SAP/ui5-webcomponents-react/issues/6324)) ([2e0f7aa](https://github.com/SAP/ui5-webcomponents-react/commit/2e0f7aaf843b046e88919bda177d2aeb8b147df6)), closes [#6323](https://github.com/SAP/ui5-webcomponents-react/issues/6323) +- **useStyleSheet:** scope component name to ui5wc runtime ([#6395](https://github.com/SAP/ui5-webcomponents-react/issues/6395)) ([1383b37](https://github.com/SAP/ui5-webcomponents-react/commit/1383b3757f546a417071a31297a1f413d0711a56)) + # [2.1.0](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.2...v2.1.0) (2024-09-05) ### Bug Fixes diff --git a/lerna.json b/lerna.json index e422494ac6d..be956ee7f4a 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "2.1.0", + "version": "2.1.1", "npmClient": "yarn", "command": { "version": { diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index 7a341ecfa1e..842b26c6def 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.1.0...v2.1.1) (2024-09-24) + +### Bug Fixes + +- ensure availability of internal CSS vars ([#6393](https://github.com/SAP/ui5-webcomponents-react/issues/6393)) ([d8a8df3](https://github.com/SAP/ui5-webcomponents-react/commit/d8a8df3054ebaa079dddd5ef4a243346824c959a)) +- **useStyleSheet:** scope component name to ui5wc runtime ([#6395](https://github.com/SAP/ui5-webcomponents-react/issues/6395)) ([1383b37](https://github.com/SAP/ui5-webcomponents-react/commit/1383b3757f546a417071a31297a1f413d0711a56)) + # [2.1.0](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.2...v2.1.0) (2024-09-05) ### Features diff --git a/packages/base/package.json b/packages/base/package.json index abda78641ef..6292d6faf9e 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-base", - "version": "2.1.0", + "version": "2.1.1", "description": "Base for ui5-webcomponents-react", "type": "module", "main": "dist/index.js", diff --git a/packages/compat/CHANGELOG.md b/packages/compat/CHANGELOG.md index a87521a280b..a79046ecae2 100644 --- a/packages/compat/CHANGELOG.md +++ b/packages/compat/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. +## [2.1.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.1.0...v2.1.1) (2024-09-24) + +### Bug Fixes + +- **compat:** allow file/deep imports for components ([#6394](https://github.com/SAP/ui5-webcomponents-react/issues/6394)) ([a5eb344](https://github.com/SAP/ui5-webcomponents-react/commit/a5eb34498fa8b566208175c7f6acafbac17ef0df)), closes [#6344](https://github.com/SAP/ui5-webcomponents-react/issues/6344) + # [2.1.0](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.2...v2.1.0) (2024-09-05) ### Features diff --git a/packages/compat/package.json b/packages/compat/package.json index c365ac795ac..37cc66e56c8 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-compat", - "version": "2.1.0", + "version": "2.1.1", "description": "React Wrapper for UI5 Web Components Compat package", "type": "module", "main": "dist/index.js", diff --git a/packages/main/CHANGELOG.md b/packages/main/CHANGELOG.md index d627b6aeff8..d02ef971f16 100644 --- a/packages/main/CHANGELOG.md +++ b/packages/main/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.1](https://github.com/SAP/ui5-webcomponents-react/compare/v2.1.0...v2.1.1) (2024-09-24) + +### Bug Fixes + +- **deps:** update dependency @tanstack/react-virtual to v3.10.8 ([#6292](https://github.com/SAP/ui5-webcomponents-react/issues/6292)) ([b981202](https://github.com/SAP/ui5-webcomponents-react/commit/b9812029d373af26b4a7dfad5e2957087481f7b6)) +- ensure availability of internal CSS vars ([#6393](https://github.com/SAP/ui5-webcomponents-react/issues/6393)) ([d8a8df3](https://github.com/SAP/ui5-webcomponents-react/commit/d8a8df3054ebaa079dddd5ef4a243346824c959a)) +- **SplitterLayout:** fix cursor for vertical resize ([#6324](https://github.com/SAP/ui5-webcomponents-react/issues/6324)) ([2e0f7aa](https://github.com/SAP/ui5-webcomponents-react/commit/2e0f7aaf843b046e88919bda177d2aeb8b147df6)), closes [#6323](https://github.com/SAP/ui5-webcomponents-react/issues/6323) + # [2.1.0](https://github.com/SAP/ui5-webcomponents-react/compare/v2.0.2...v2.1.0) (2024-09-05) ### Bug Fixes diff --git a/packages/main/package.json b/packages/main/package.json index 0585b32e813..a5d85cabfce 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react", - "version": "2.1.0", + "version": "2.1.1", "description": "React Wrapper for UI5 Web Components and additional components", "type": "module", "main": "dist/index.js",