diff --git a/changelogs/CHANGELOG_2024.md b/changelogs/CHANGELOG_2024.md index b3ef1aa7920..276a0013e3b 100644 --- a/changelogs/CHANGELOG_2024.md +++ b/changelogs/CHANGELOG_2024.md @@ -1,3 +1,28 @@ +## [`v93.0.0`](https://github.com/elastic/eui/releases/v93.0.0) + +**Bug fixes** + +- Fixed `EuiTextTruncate` component to clean up timer from side effect on unmount ([#7495](https://github.com/elastic/eui/pull/7495)) + +**Breaking changes** + +- Removed deprecated `anchorClassName` prop from `EuiPopover`. Use `className` instead ([#7488](https://github.com/elastic/eui/pull/7488)) +- Removed deprecated `buttonRef` prop from `EuiPopover`. Use `popoverRef` instead ([#7488](https://github.com/elastic/eui/pull/7488)) +- Removed deprecated `toolTipTitle` and `toolTipPosition` props from `EuiContextMenuItem`. Use `toolTipProps.title` and `toolTilProps.position` instead ([#7489](https://github.com/elastic/eui/pull/7489)) +- Removed deprecated internal `setSelection` ref method from `EuiInMemoryTable` and `EuiBasicTable`. Use the new controlled `selection.selected` prop API instead. ([#7491](https://github.com/elastic/eui/pull/7491)) +- `EuiTourStep`'s `className` and `style` props now apply to the anchoring element instead of to the popover panel, to match `EuiPopover` behavior. ([#7497](https://github.com/elastic/eui/pull/7497)) + - Convert your existing usages to `panelClassName` and `panelStyle` respectively instead. + +**Performance** + +- Improved the amount of recomputed styles being generated by `EuiCode` and `EuiCodeBlock` ([#7486](https://github.com/elastic/eui/pull/7486)) + +**CSS-in-JS conversions** + +- Converted `EuiSearchBar` to Emotion ([#7490](https://github.com/elastic/eui/pull/7490)) +- Converted `EuiEmptyPrompt` to Emotion ([#7494](https://github.com/elastic/eui/pull/7494)) +- Added `euiBorderColor` and `useEuiBorderColorCSS` style utilities ([#7494](https://github.com/elastic/eui/pull/7494)) + ## [`v92.2.1`](https://github.com/elastic/eui/releases/v92.2.1) **Bug fixes** diff --git a/changelogs/upcoming/7486.md b/changelogs/upcoming/7486.md deleted file mode 100644 index c7a8b913065..00000000000 --- a/changelogs/upcoming/7486.md +++ /dev/null @@ -1,3 +0,0 @@ -**Performance** - -- Improved the amount of recomputed styles being generated by `EuiCode` and `EuiCodeBlock` diff --git a/changelogs/upcoming/7488.md b/changelogs/upcoming/7488.md deleted file mode 100644 index f5daa51b6ea..00000000000 --- a/changelogs/upcoming/7488.md +++ /dev/null @@ -1,4 +0,0 @@ -**Breaking changes** - -- Removed deprecated `anchorClassName` prop from `EuiPopover`. Use `className` instead -- Removed deprecated `buttonRef` prop from `EuiPopover`. Use `popoverRef` instead diff --git a/changelogs/upcoming/7489.md b/changelogs/upcoming/7489.md deleted file mode 100644 index 7239dc5212d..00000000000 --- a/changelogs/upcoming/7489.md +++ /dev/null @@ -1,3 +0,0 @@ -**Breaking changes** - -- Removed deprecated `toolTipTitle` and `toolTipPosition` props from `EuiContextMenuItem`. Use `toolTipProps.title` and `toolTilProps.position` instead diff --git a/changelogs/upcoming/7490.md b/changelogs/upcoming/7490.md deleted file mode 100644 index 8ab119ee048..00000000000 --- a/changelogs/upcoming/7490.md +++ /dev/null @@ -1,3 +0,0 @@ -**CSS-in-JS conversions** - -- Converted `EuiSearchBar` to Emotion diff --git a/changelogs/upcoming/7491.md b/changelogs/upcoming/7491.md deleted file mode 100644 index 85a4d9a776d..00000000000 --- a/changelogs/upcoming/7491.md +++ /dev/null @@ -1,3 +0,0 @@ -**Breaking changes** - -- Removed deprecated internal `setSelection` ref method from `EuiInMemoryTable` and `EuiBasicTable`. Use the new controlled `selection.selected` prop API instead. diff --git a/changelogs/upcoming/7494.md b/changelogs/upcoming/7494.md deleted file mode 100644 index 760e10f64f6..00000000000 --- a/changelogs/upcoming/7494.md +++ /dev/null @@ -1,4 +0,0 @@ -**CSS-in-JS conversions** - -- Converted `EuiEmptyPrompt` to Emotion -- Added `euiBorderColor` and `useEuiBorderColorCSS` style utilities diff --git a/changelogs/upcoming/7495.md b/changelogs/upcoming/7495.md deleted file mode 100644 index edfe954e183..00000000000 --- a/changelogs/upcoming/7495.md +++ /dev/null @@ -1,3 +0,0 @@ -**Bug fixes** - -- Fixed `EuiTextTruncate` component to clean up timer from side effect on unmount \ No newline at end of file diff --git a/changelogs/upcoming/7497.md b/changelogs/upcoming/7497.md deleted file mode 100644 index 89b9fccebcd..00000000000 --- a/changelogs/upcoming/7497.md +++ /dev/null @@ -1,4 +0,0 @@ -**Breaking changes** - -- `EuiTourStep`'s `className` and `style` props now apply to the anchoring element instead of to the popover panel, to match `EuiPopover` behavior. - - Convert your existing usages to `panelClassName` and `panelStyle` respectively instead. diff --git a/src-docs/src/components/guide_page/versions.json b/src-docs/src/components/guide_page/versions.json index a94f6f4ae09..d685571e72a 100644 --- a/src-docs/src/components/guide_page/versions.json +++ b/src-docs/src/components/guide_page/versions.json @@ -1,5 +1,6 @@ { "euiVersions": [ + "93.0.0", "92.2.0", "92.1.1", "92.1.0",