diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5467af06737cf..dd938614ee1b1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -90,13 +90,13 @@ Same changes as in `@mui/x-charts@7.19.0`.
- [TreeView] Apply experimental features in `getDefaultizedParams` instead of in the plugin render (#14661) @flaviendelangle
- [TreeView] Export `publicAPI` form `useTreeItem2Utils` (#14729) @noraleonte
-- [TreeView] Fix cursor navigation interfering with browser shortcut keys (#14798) @sai6855
+- [TreeView] Fix cursor navigation interfering with browser shortcut keys (#14798) @sai6855
- [TreeView] Fix invalid test for items reordering (#14665) @flaviendelangle
- [TreeView] Remove `instance.getTreeItemIdAttribute` (#14667) @flaviendelangle
### Docs
-- [docs] Added warning callout for Firefox reordering bug (#14516) @michelengelen
+- [docs] Added warning callout for Firefox reordering bug (#14516) @michelengelen
- [docs] Copyedit `pages.ts` navigation (#14782) @samuelsycamore
- [docs] Fix typo in row spanning doc (#14770) @flaviendelangle
- [docs] Fix typo in the Tree View migration guide to v7 (#14727) @Sanderand
@@ -1542,7 +1542,7 @@ Same changes as in `@mui/x-date-pickers@7.6.0`.
- [test] Use test-utils from npm (#12880) @michaldudak
- [typescript] Remove duplicate `DateRangePosition` type in favor of `RangePosition` (#13288) @LukasTy
-## v7.5.1
+## 7.5.1
_May 23, 2024_
@@ -1602,7 +1602,7 @@ Same changes as in `@mui/x-date-pickers@7.5.1`.
- [code-infra] Run corepack enable on all CI jobs (#13205) @Janpot
- [code-infra] Use `nx` for lerna tasks (#13166) @LukasTy
-## v7.5.0
+## 7.5.0
_May 17, 2024_
diff --git a/docs/src/modules/components/WhatsNewLayout.js b/docs/src/modules/components/WhatsNewLayout.js
index e8c9e98729ef6..ef8b805c1ebca 100644
--- a/docs/src/modules/components/WhatsNewLayout.js
+++ b/docs/src/modules/components/WhatsNewLayout.js
@@ -17,6 +17,94 @@ import TimelineDot from '@mui/lab/TimelineDot';
import TimelineOppositeContent from '@mui/lab/TimelineOppositeContent';
const entries = [
+ {
+ title: 'MUI X v7.19',
+ description: 'A roundup of all new features since v7.15.0.',
+ date: new Date(2024, 9, 4),
+ url: 'https://github.com/mui/mui-x/releases/tag/v7.19.0',
+ highlightList: [
+ {
+ title: 'Data Grid – Row spanning',
+ url: '/x/react-data-grid/row-spanning/',
+ },
+ {
+ title: 'Data Grid – Automatic parents and children selection',
+ url: '/x/react-data-grid/row-grouping/#automatic-parents-and-children-selection',
+ },
+ {
+ title: 'Date and Time Pickers – Support date-fns v4',
+ url: '/x/react-date-pickers/adapters-locale/#with-date-fns',
+ },
+ ],
+ },
+ {
+ title: 'MUI X v7.15',
+ date: new Date(2024, 7, 29),
+ description: 'A roundup of all new features since v7.13.0.',
+ url: 'https://github.com/mui/mui-x/releases/tag/v7.15.0',
+ highlightList: [
+ {
+ title: 'Material UI v6 support',
+ url: 'https://github.com/mui/mui-x/releases/tag/v7.15.0',
+ },
+ {
+ title: 'Charts – Zoom filtering',
+ url: '/x/react-charts/zoom-and-pan/#zoom-filtering',
+ },
+ ],
+ },
+ {
+ title: 'MUI X v7.13',
+ date: new Date(2024, 7, 16),
+ description: 'A roundup of all new features since v7.8.0.',
+ url: 'https://github.com/mui/mui-x/releases/tag/v7.13.0',
+ highlightList: [
+ {
+ title: 'Data Grid – Loading overlay variants',
+ url: '/x/react-data-grid/overlays/#loading-overlay',
+ },
+ {
+ title: 'Rich Tree View – Drag & drop re-ordering',
+ url: '/x/react-tree-view/rich-tree-view/ordering/',
+ },
+ {
+ title: 'Rich Tree View – Label editing',
+ url: '/x/react-tree-view/rich-tree-view/editing/',
+ },
+ {
+ title: 'Charts – Heatmap',
+ url: '/x/react-charts/heatmap/',
+ },
+ {
+ title: 'Charts – Zoom & Pan',
+ url: '/x/react-charts/zoom-and-pan/',
+ },
+ {
+ title: 'Charts – Color legend',
+ url: '/x/react-charts/legend/#color-legend',
+ },
+ ],
+ },
+ {
+ title: 'MUI X v7.8',
+ date: new Date(2024, 5, 28),
+ description: 'A roundup of all new features since v7.0.0.',
+ url: 'https://github.com/mui/mui-x/releases/tag/v7.8.0',
+ highlightList: [
+ {
+ title: 'Data Grid – Server-side Data Source',
+ url: '/x/react-data-grid/server-side-data/',
+ },
+ {
+ title: 'Data Grid – Support unknown and estimated row count in server-side pagination',
+ url: '/x/react-data-grid/pagination/#index-based-pagination',
+ },
+ {
+ title: 'Charts – Color scales',
+ url: '/x/react-charts/styling/#values-color',
+ },
+ ],
+ },
{
title: 'MUI X v7',
description:
@@ -45,11 +133,11 @@ const entries = [
url: 'https://mui.com/blog/mui-x-v7/#rich-tree-view',
},
{
- title: 'Charts - Gauge charts',
+ title: 'Charts – Gauge charts',
url: 'https://mui.com/blog/mui-x-v7/#gauge-charts',
},
{
- title: 'Charts - Reference line',
+ title: 'Charts – Reference line',
url: 'https://mui.com/blog/mui-x-v7/#reference-line',
},
{
@@ -284,20 +372,22 @@ function BlogCard({ entry }) {
{entry.description}
-
+ {entry.url && (
+
+ )}