diff --git a/.changeset/eight-kids-train.md b/.changeset/eight-kids-train.md
deleted file mode 100644
index 9a6bd1f2cec..00000000000
--- a/.changeset/eight-kids-train.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@itwin/itwinui-react': minor
----
-
-Added a new `dropdownMenuProps` prop to `SplitButton` for additional control over the menu (e.g. disable the [`hide` middleware](https://floating-ui.com/docs/hide)).
diff --git a/.changeset/giant-mayflies-wash.md b/.changeset/giant-mayflies-wash.md
deleted file mode 100644
index b1f8e5e57ff..00000000000
--- a/.changeset/giant-mayflies-wash.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@itwin/itwinui-react': patch
----
-
-Fixed `scrollToRow` in un-virtualized `Table`. In virtualized `Table`, `scrollToRow` now scrolls to the top for consistent behavior.
diff --git a/.changeset/green-dogs-marry.md b/.changeset/green-dogs-marry.md
deleted file mode 100644
index b3726fd2bd1..00000000000
--- a/.changeset/green-dogs-marry.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@itwin/itwinui-react': patch
----
-
-`Popover`'s `middleware.hide` prop is now respected.
diff --git a/.changeset/hungry-rocks-matter.md b/.changeset/hungry-rocks-matter.md
deleted file mode 100644
index 5109d74144d..00000000000
--- a/.changeset/hungry-rocks-matter.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-'@itwin/itwinui-react': minor
----
-
-`ComboBox` and `Select` now allow customizing the portal behavior of the floating listbox.
-- To customize `ComboBox` portaling behavior, use `dropdownMenuProps.portal`.
-- To customize `Select` portaling behavior, use `popoverProps.portal`.
-
-
-Example
-
-To turn off the default portaling behavior, use `portal: false`.
-
-```jsx
-
-```
-
-```jsx
-
-```
-
-
diff --git a/.changeset/lucky-suits-decide.md b/.changeset/lucky-suits-decide.md
deleted file mode 100644
index 7d5121eb94b..00000000000
--- a/.changeset/lucky-suits-decide.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@itwin/itwinui-react': patch
----
-
-Fixed broken `subComponent` when enabling virtualization in `Table`.
diff --git a/.changeset/short-planets-listen.md b/.changeset/short-planets-listen.md
deleted file mode 100644
index f52ab2c35ab..00000000000
--- a/.changeset/short-planets-listen.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@itwin/itwinui-react': patch
----
-
-`Table`'s animation to show and hide its `subComponent` is now removed.
diff --git a/.changeset/shy-mangos-arrive.md b/.changeset/shy-mangos-arrive.md
deleted file mode 100644
index 545197158d6..00000000000
--- a/.changeset/shy-mangos-arrive.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@itwin/itwinui-react': patch
----
-
-Fixed an issue where some components (e.g. `VisuallyHidden` inside `ProgressRadial`) were losing their styles when reparented into a different window.
diff --git a/.changeset/slimy-vans-lick.md b/.changeset/slimy-vans-lick.md
deleted file mode 100644
index b7e624bed09..00000000000
--- a/.changeset/slimy-vans-lick.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@itwin/itwinui-react': minor
----
-
-`Popover` now enables the [`hide` middleware](https://floating-ui.com/docs/hide) to hide the floating content when the trigger is hidden.
-* This also affects other popover-like components (e.g. `Select`, `ComboBox`, `DropdownMenu`, `SplitButton`).
-* If the floating content gets hidden even when it shouldn't (e.g. due to some custom styles interfering with the trigger's hide detection), consider disabling the `hide` middleware.
diff --git a/.changeset/stale-parents-kiss.md b/.changeset/stale-parents-kiss.md
deleted file mode 100644
index 17f266cb231..00000000000
--- a/.changeset/stale-parents-kiss.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-'@itwin/itwinui-react': minor
----
-
-Passing `styleType="borderless"` to `SearchBox.ExpandButton` now works as expected. This is because collapsed `SearchBox` will now hide its border and background in favor of the ones from `SearchBox.ExpandButton`.
-
-
-Example
-
-```diff
-
-
--
-+
-
- …
-
-```
-
-
diff --git a/.changeset/thick-deers-act.md b/.changeset/thick-deers-act.md
deleted file mode 100644
index 82fd6820fc9..00000000000
--- a/.changeset/thick-deers-act.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'@itwin/itwinui-react': minor
----
-
-Added the ability to have custom `props` for each sub-component of `ColorPicker`.
-New props added associated with each sub-component are:
-- `ColorBuilder`: `colorFieldProps`, `colorDotProps`, `opacitySliderProps`, and `hueSliderProps`.
-- `ColorInputPanel`: `panelLabelProps`, `colorInputContainerProps`, `inputFieldsGroupProps` and `swapColorFormatButtonProps`.
-- `ColorPalette`: `labelProps`, and `paletteContainerProps`.
diff --git a/packages/itwinui-react/CHANGELOG.md b/packages/itwinui-react/CHANGELOG.md
index 806b90d0b54..bd599330d88 100644
--- a/packages/itwinui-react/CHANGELOG.md
+++ b/packages/itwinui-react/CHANGELOG.md
@@ -1,5 +1,71 @@
# Changelog
+## 3.15.0
+
+### Minor Changes
+
+- [#2233](https://github.com/iTwin/iTwinUI/pull/2233): `Popover` now enables the [`hide` middleware](https://floating-ui.com/docs/hide) to hide the floating content when the trigger is hidden.
+ - This also affects other popover-like components (e.g. `Select`, `ComboBox`, `DropdownMenu`, `SplitButton`).
+ - If the floating content gets hidden even when it shouldn't (e.g. due to some custom styles interfering with the trigger's hide detection), consider disabling the `hide` middleware.
+
+- [#2233](https://github.com/iTwin/iTwinUI/pull/2233): Added a new `dropdownMenuProps` prop to `SplitButton` for additional control over the menu (e.g. to disable the [`hide` middleware](https://floating-ui.com/docs/hide)).
+
+- [#2259](https://github.com/iTwin/iTwinUI/pull/2259): `ComboBox` and `Select` now allow customizing the portal behavior of the floating listbox.
+
+ - To customize `ComboBox` portaling behavior, use `dropdownMenuProps.portal`.
+ - To customize `Select` portaling behavior, use `popoverProps.portal`.
+
+
+ Example
+
+ To turn off the default portaling behavior, use `portal: false`.
+
+ ```jsx
+
+ ```
+
+ ```jsx
+
+ ```
+
+
+
+- [#2238](https://github.com/iTwin/iTwinUI/pull/2238): Passing `styleType="borderless"` to `SearchBox.ExpandButton` now works as expected. This is because collapsed `SearchBox` will now hide its border and background in favor of the ones from `SearchBox.ExpandButton`.
+
+
+ Example
+
+ ```diff
+
+
+ -
+ +
+
+ …
+
+ ```
+
+
+
+- [#2211](https://github.com/iTwin/iTwinUI/pull/2211): Added the ability to have custom `props` for each sub-component of `ColorPicker`.
+ - New **ColorBuilder** props: `colorFieldProps`, `colorDotProps`, `opacitySliderProps`, and `hueSliderProps`.
+ - New **ColorInputPanel** props: `panelLabelProps`, `colorInputContainerProps`, `inputFieldsGroupProps` and `swapColorFormatButtonProps`.
+ - New **ColorPalette** props: `labelProps`, and `paletteContainerProps`.
+
+### Patch Changes
+
+- [#2208](https://github.com/iTwin/iTwinUI/pull/2208): Fixed an issue in `Table` where `subComponent` was broken when enabling virtualization.
+- [#2239](https://github.com/iTwin/iTwinUI/pull/2239): Fixed `scrollToRow` in un-virtualized `Table`. In virtualized `Table`, `scrollToRow` now scrolls to the top for consistent behavior.
+- [#2233](https://github.com/iTwin/iTwinUI/pull/2233): `Popover`'s `middleware.hide` prop is now respected.
+- [#2208](https://github.com/iTwin/iTwinUI/pull/2208): `Table`'s animation to show and hide its `subComponent` is now removed.
+- [#2252](https://github.com/iTwin/iTwinUI/pull/2252): Fixed an issue where some components (e.g. `VisuallyHidden` inside `ProgressRadial`) were losing their styles when reparented into a different window.
+
## 3.14.2
### Patch Changes
diff --git a/packages/itwinui-react/package.json b/packages/itwinui-react/package.json
index 55157b265fd..dbc86959b44 100644
--- a/packages/itwinui-react/package.json
+++ b/packages/itwinui-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-react",
- "version": "3.14.2",
+ "version": "3.15.0",
"author": "Bentley Systems",
"license": "MIT",
"type": "module",