diff --git a/packages/eui/changelogs/CHANGELOG_2024.md b/packages/eui/changelogs/CHANGELOG_2024.md index 894f56158b3..b813d6e7619 100644 --- a/packages/eui/changelogs/CHANGELOG_2024.md +++ b/packages/eui/changelogs/CHANGELOG_2024.md @@ -1,3 +1,19 @@ +## [`v97.0.0`](https://github.com/elastic/eui/releases/v97.0.0) + +**Bug fixes** + +- Fixed inputs not taking the whole width when passing `fullWidth` as `true` to EuiDatePickerRange component ([#8061](https://github.com/elastic/eui/pull/8061)) + +**Breaking changes** + +- EuiDataGrid's custom grid body (rendered via `renderCustomGridBody`) no longer automatically renders the column header row or footer rows. It instead now passes the `headerRow` and `footerRow` React elements, which require manual rendering. ([#8028](https://github.com/elastic/eui/pull/8028)) + - This change was made to allow consumers to sync header/footer rows with their own custom virtualization libraries. + - To facilitate this, a `gridWidth` prop is now also passed to custom grid body renderers. + +**Accessibility** + +- Improved accessibility of `EuiExternalLinkIcon` by clarifying text for Screen Reader users. ([#8065](https://github.com/elastic/eui/pull/8065)) + ## [`v96.1.0`](https://github.com/elastic/eui/releases/v96.1.0) **CSS-in-JS conversions** diff --git a/packages/eui/changelogs/upcoming/8028.md b/packages/eui/changelogs/upcoming/8028.md deleted file mode 100644 index 0affe589d58..00000000000 --- a/packages/eui/changelogs/upcoming/8028.md +++ /dev/null @@ -1,5 +0,0 @@ -**Breaking changes** - -- EuiDataGrid's custom grid body (rendered via `renderCustomGridBody`) no longer automatically renders the column header row or footer rows. It instead now passes the `headerRow` and `footerRow` React elements, which require manual rendering. - - This change was made to allow consumers to sync header/footer rows with their own custom virtualization libraries. - - To facilitate this, a `gridWidth` prop is now also passed to custom grid body renderers. diff --git a/packages/eui/changelogs/upcoming/8061.md b/packages/eui/changelogs/upcoming/8061.md deleted file mode 100644 index 0b64d936818..00000000000 --- a/packages/eui/changelogs/upcoming/8061.md +++ /dev/null @@ -1,4 +0,0 @@ -**Bug fixes** - -- Fixed inputs not taking the whole width when passing `fullWidth` as `true` to EuiDatePickerRange component - diff --git a/packages/eui/changelogs/upcoming/8065.md b/packages/eui/changelogs/upcoming/8065.md deleted file mode 100644 index 5c2fff25419..00000000000 --- a/packages/eui/changelogs/upcoming/8065.md +++ /dev/null @@ -1,4 +0,0 @@ -**Accessibility** - -- Improved accessibility of `EuiExternalLinkIcon` by clarifying text for Screen Reader users. - diff --git a/packages/eui/src-docs/src/components/guide_page/versions.json b/packages/eui/src-docs/src/components/guide_page/versions.json index 7d593f8f181..272110b3393 100644 --- a/packages/eui/src-docs/src/components/guide_page/versions.json +++ b/packages/eui/src-docs/src/components/guide_page/versions.json @@ -1,5 +1,6 @@ { "euiVersions": [ + "97.0.0", "96.1.0", "96.0.0", "95.12.0", diff --git a/packages/website/static/versions.json b/packages/website/static/versions.json index 7d593f8f181..272110b3393 100644 --- a/packages/website/static/versions.json +++ b/packages/website/static/versions.json @@ -1,5 +1,6 @@ { "euiVersions": [ + "97.0.0", "96.1.0", "96.0.0", "95.12.0",