From 374b96db9006e70fd8c7b6a25a05e65901297020 Mon Sep 17 00:00:00 2001 From: Lukas Tyla Date: Fri, 13 Dec 2024 12:26:17 +0200 Subject: [PATCH] v8.0.0-alpha.4 (#15868) Signed-off-by: Lukas Tyla Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Co-authored-by: Flavien DELANGLE --- CHANGELOG.md | 274 ++++++++++++++++++++ package.json | 2 +- packages/x-charts-pro/package.json | 2 +- packages/x-charts-vendor/package.json | 2 +- packages/x-charts/package.json | 2 +- packages/x-codemod/package.json | 2 +- packages/x-data-grid-generator/package.json | 2 +- packages/x-data-grid-premium/package.json | 2 +- packages/x-data-grid-pro/package.json | 2 +- packages/x-data-grid/package.json | 2 +- packages/x-date-pickers-pro/package.json | 2 +- packages/x-date-pickers/package.json | 2 +- packages/x-license/package.json | 2 +- packages/x-tree-view-pro/package.json | 2 +- packages/x-tree-view/package.json | 2 +- scripts/releaseChangelog.mjs | 51 +++- 16 files changed, 325 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eeee378b0778c..94b199a3aedb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,133 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 8.0.0-alpha.4 + +_Dec 13, 2024_ + +We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Improve Romanian locale on the Data Grid and Pickers +- 📚 Documentation improvements +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@k-rajat19, @nusr, @rares985, @zivl. +Following are all team members who have contributed to this release: +@alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi. + + + +### Data Grid + +#### Breaking changes + +- The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments. + + ```diff + -mySelector(state, instanceId) + +mySelector(state, arguments, instanceId) + ``` + +- The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments. + + ```diff + -const output = useGridSelector(apiRef, selector, equals) + +const output = useGridSelector(apiRef, selector, arguments, equals) + ``` +- The default variant for text fields and selects in the filter panel has been changed to `outlined`. +- The "row spanning" feature is now stable. + ```diff + + ``` +- Selected row is now deselected when clicked again. + +#### `@mui/x-data-grid@8.0.0-alpha.4` + +- [DataGrid] Deselect selected row on click (#15509) @k-rajat19 +- [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr +- [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi +- [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf +- [DataGrid] Toggle menu on click in `` (#15867) @k-rajat19 +- [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi +- [DataGrid] Update filter panel input variant (#15807) @KenanYusuf +- [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19 +- [DataGrid] Use new selector signature (#15200) @MBilalShafi +- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985 + +#### `@mui/x-data-grid-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-data-grid@8.0.0-alpha.4`, plus: + +- [DataGridPro] Make row reordering work with pagination (#15355) @k-rajat19 + +#### `@mui/x-data-grid-premium@8.0.0-alpha.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') + +Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.4`, plus: + +- [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh + +### Date and Time Pickers + +#### `@mui/x-date-pickers@8.0.0-alpha.4` + +- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985 +- [pickers] Clean `usePicker` logic (#15763) @flaviendelangle +- [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle +- [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle +- [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle +- [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle + +#### `@mui/x-date-pickers-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-date-pickers@8.0.0-alpha.4`. + +### Charts + +#### Breaking changes + +- The default styling of the charts tooltip has been updated. + +#### `@mui/x-charts@8.0.0-alpha.4` + +- [charts] Fix hydration missmatch (#15647) @alexfauquette +- [charts] Fix internal spelling typo (#15805) @zivl +- [charts] Fix scatter dataset with missing data (#15802) @alexfauquette +- [charts] HTML Labels (#15813) @JCQuintas +- [charts] Only access store values by using hooks (#15764) @alexfauquette +- [charts] Update Tooltip style (#15630) @alexfauquette + +#### `@mui/x-charts-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-charts@8.0.0-alpha.4`. + +### Tree View + +#### `@mui/x-tree-view@8.0.0-alpha.4` + +No changes, releasing to keep the versions in sync. + +#### `@mui/x-tree-view-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Releasing to benefit from license package fix (#15814). + +### Docs + +- [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle +- [docs] Fix outdated link to handbook (#15855) @oliviertassinari +- [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy +- [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf +- [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy + +### Core + +- [code-infra] Add Charts sandbox generation (#15830) @JCQuintas +- [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy +- [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh + ## 8.0.0-alpha.3 _Dec 5, 2024_ @@ -567,6 +694,153 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`. - [release] v8 preparation (#15054) @michelengelen - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf +## 7.23.2 + +_Dec 12, 2024_ + +We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Improve Romanian and Turkish locales on the Data Grid +- 🌍 Improve Romanian locale on the Pickers +- 📚 Documentation improvements +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@ihsanberkozcan, @k-rajat19, @lhilgert9, @nusr, @rares985. + +Following are all team members who have contributed to this release: +@alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy. + + + +### Data Grid + +#### `@mui/x-data-grid@7.23.2` + +- [DataGrid] Fix "No rows" displaying when all rows are pinned (#15851) @nusr +- [DataGrid] Use `columnsManagement` slot (#15821) @k-rajat19 +- [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985 +- [l10n] Improve Turkish (tr-TR) locale (#15748) @ihsanberkozcan + +#### `@mui/x-data-grid-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-data-grid@7.23.2`, plus: + +- [DataGridPro] Make Row reordering work with pagination (#15782) @k-rajat19 + +#### `@mui/x-data-grid-premium@7.23.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') + +Same changes as in `@mui/x-data-grid-pro@7.23.2`, plus: + +- [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15754) @arminmeh + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.23.2` + +- [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985 + +#### `@mui/x-date-pickers-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-date-pickers@7.23.2`. + +### Charts + +#### `@mui/x-charts@7.23.2` + +- [charts] Fix key generation for the ChartsGrid (#15864) @alexfauquette +- [charts] Fix scatter dataset with missing data (#15804) @alexfauquette + +#### `@mui/x-charts-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-charts@7.23.2`. + +#### `@mui/x-tree-view@v7.23.2` + +No changes, releasing to keep the versions in sync. + +#### `@mui/x-tree-view-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Releasing to benefit from license package fix (#15818). + +### Docs + +- [docs] Fix typo in charts axis documentation (#15746) @JCQuintas +- [docs] Improve Pickers accessible DOM structure description (#15752) @LukasTy +- [docs] Use `updateRows` method for list view demos (#15824) @KenanYusuf +- [docs] Use date library version from package dev dependencies for sandboxes (#15767) @LukasTy + +### Core + +- [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle +- [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15818) @arminmeh + +## 7.23.1 + +_Dec 5, 2024_ + +We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Improve German locale on the Data Grid component +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@lhilgert9. + +Following are all team members who have contributed to this release: +@arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy and @MBilalShafi. + + + +### Data Grid + +#### `@mui/x-data-grid@7.23.1` + +- [DataGrid] Make column autosizing work with flex columns (#15712) @cherniavskii +- [l10n] Improve German (de-DE) locale (#15641) @lhilgert9 + +#### `@mui/x-data-grid-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-data-grid@7.23.1`, plus: + +- [DataGridPro] Cleanup pinned rows on removal (#15702) @cherniavskii + +#### `@mui/x-data-grid-premium@7.23.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') + +Same changes as in `@mui/x-data-grid-pro@7.23.1`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.23.1` + +- [TimePicker] Prevent mouse events after `touchend` event (#15430) @arthurbalduini + +#### `@mui/x-date-pickers-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-date-pickers@7.23.1`. + +### Charts + +#### `@mui/x-charts@7.23.1` + +- [charts] Improve SVG `pattern` and `gradient` support (#15724) @JCQuintas + +#### `@mui/x-charts-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-charts@7.23.1`. + +### Docs + +- [docs] Fix Pickers theme augmentation example (#15675) @LukasTy +- [docs] Remove duplicated warning (#15715) @cherniavskii +- [test] Force hover in headless Chrome (#15711) @cherniavskii +- [docs-infra] Bump `@mui/internal-markdown` to support nested demo imports (#15738) @alexfauquette +- [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi + +### Core + +- [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle + ## 7.23.0 _Nov 29, 2024_ diff --git a/package.json b/package.json index fd6e12da98d1b..9c3bec49ecd03 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "private": true, "scripts": { "preinstall": "npx only-allow pnpm", diff --git a/packages/x-charts-pro/package.json b/packages/x-charts-pro/package.json index b582a8d12027c..d34246f3abc96 100644 --- a/packages/x-charts-pro/package.json +++ b/packages/x-charts-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts-pro", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The Pro plan edition of the Charts components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-charts-vendor/package.json b/packages/x-charts-vendor/package.json index 5a8298bb71103..4d53bbe89b9f4 100644 --- a/packages/x-charts-vendor/package.json +++ b/packages/x-charts-vendor/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts-vendor", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "Vendored dependencies for MUI X Charts", "author": "MUI Team", "keywords": [ diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index f73f30953811e..9c037234636c0 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The community edition of the Charts components (MUI X).", "author": "MUI Team", "main": "src/index.js", diff --git a/packages/x-codemod/package.json b/packages/x-codemod/package.json index 1f5bbd2668bd9..af7effbdab202 100644 --- a/packages/x-codemod/package.json +++ b/packages/x-codemod/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-codemod", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "bin": "./codemod.js", "private": false, "author": "MUI Team", diff --git a/packages/x-data-grid-generator/package.json b/packages/x-data-grid-generator/package.json index fb84ce2dc4e27..4b4b1c169c8ed 100644 --- a/packages/x-data-grid-generator/package.json +++ b/packages/x-data-grid-generator/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-generator", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "Generate fake data for demo purposes only.", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid-premium/package.json b/packages/x-data-grid-premium/package.json index 6bf146e7ce0e4..3d12b001e21fe 100644 --- a/packages/x-data-grid-premium/package.json +++ b/packages/x-data-grid-premium/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-premium", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The Premium plan edition of the Data Grid Components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid-pro/package.json b/packages/x-data-grid-pro/package.json index afb5f31f1c65e..64f95fc7c1684 100644 --- a/packages/x-data-grid-pro/package.json +++ b/packages/x-data-grid-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-pro", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The Pro plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid/package.json b/packages/x-data-grid/package.json index 8e1de4c44dcbc..dc7327e1b6eac 100644 --- a/packages/x-data-grid/package.json +++ b/packages/x-data-grid/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The Community plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-date-pickers-pro/package.json b/packages/x-date-pickers-pro/package.json index 28a2b17b1eea1..d08f7cf7d406f 100644 --- a/packages/x-date-pickers-pro/package.json +++ b/packages/x-date-pickers-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-date-pickers-pro", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The Pro plan edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-date-pickers/package.json b/packages/x-date-pickers/package.json index 781289be2a723..066916bbea246 100644 --- a/packages/x-date-pickers/package.json +++ b/packages/x-date-pickers/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-date-pickers", - "version": "8.0.0-alpha.3", + "version": "8.0.0-alpha.4", "description": "The community edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-license/package.json b/packages/x-license/package.json index 548e705bccc8a..1d8a8fda7b37b 100644 --- a/packages/x-license/package.json +++ b/packages/x-license/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-license", - "version": "8.0.0-alpha.2", + "version": "8.0.0-alpha.4", "description": "MUI X License verification", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-tree-view-pro/package.json b/packages/x-tree-view-pro/package.json index 8efd242872f9a..1b0317ee46dec 100644 --- a/packages/x-tree-view-pro/package.json +++ b/packages/x-tree-view-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-tree-view-pro", - "version": "8.0.0-alpha.2", + "version": "8.0.0-alpha.4", "description": "The Pro plan edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-tree-view/package.json b/packages/x-tree-view/package.json index 11a0ca2d1e997..2d71cc3200b2d 100644 --- a/packages/x-tree-view/package.json +++ b/packages/x-tree-view/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-tree-view", - "version": "8.0.0-alpha.2", + "version": "8.0.0-alpha.4", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/scripts/releaseChangelog.mjs b/scripts/releaseChangelog.mjs index 35cbcbb70e05d..9e078cf19cad4 100644 --- a/scripts/releaseChangelog.mjs +++ b/scripts/releaseChangelog.mjs @@ -53,6 +53,12 @@ function resolvePackagesByLabels(labels) { case 'component: pickers': resolvedPackages.push('pickers'); break; + case 'component: charts': + resolvedPackages.push('charts'); + break; + case 'component: tree view': + resolvedPackages.push('TreeView'); + break; default: break; } @@ -106,7 +112,7 @@ async function main(argv) { // Fetch all the pull Request and check if there is a section named changelog - const changeLogMessages = []; + const changeLogMessages = {}; const prsLabelsMap = {}; const community = { firstTimers: new Set(), @@ -124,6 +130,7 @@ async function main(argv) { data: { body: bodyMessage, labels, + // eslint-disable-next-line @typescript-eslint/naming-convention author_association, user: { login }, }, @@ -152,14 +159,23 @@ async function main(argv) { return; } - const changelogMotif = '# changelog'; - const changelogIndex = bodyMessage.toLowerCase().indexOf(changelogMotif); - if (changelogIndex >= 0) { - changeLogMessages.push( - `From https://github.com/${GIT_ORGANIZATION}/${GIT_REPO}/pull/${ - searchPullRequestId[1] - }\n${bodyMessage.slice(changelogIndex + changelogMotif.length)}`, - ); + const changelogMotif = '## changelog'; + const lowercaseBody = bodyMessage.toLowerCase(); + // Check if the body contains a line starting with '## changelog' + const matchedChangelog = lowercaseBody.matchAll(new RegExp(`^${changelogMotif}`, 'gim')); + const changelogMatches = Array.from(matchedChangelog); + if (changelogMatches.length > 0) { + const prLabels = prsLabelsMap[commitsItem.sha]; + const resolvedPackage = resolvePackagesByLabels(prLabels)[0]; + const changelogIndex = changelogMatches[0].index; + const message = `From https://github.com/${GIT_ORGANIZATION}/${GIT_REPO}/pull/${ + searchPullRequestId[1] + }\n${bodyMessage.slice(changelogIndex + changelogMotif.length)}`; + if (changeLogMessages[resolvedPackage || 'general']) { + changeLogMessages[resolvedPackage || 'general'].push(message); + } else { + changeLogMessages[resolvedPackage || 'general'] = [message]; + } } }), ); @@ -288,6 +304,13 @@ async function main(argv) { .join('\n')}`; }; + const logChangelogMessages = (product) => { + if (!changeLogMessages[product]?.length) { + return ''; + } + return `${changeLogMessages[product].length > 0 ? '\n' : ''}${changeLogMessages[product].join('\n\n')}`; + }; + const nowFormatted = new Date().toLocaleDateString('en-US', { month: 'short', day: 'numeric', @@ -325,14 +348,14 @@ We'd like to offer a big thanks to the ${ } contributors who made this release possible. Here are some highlights ✨: TODO INSERT HIGHLIGHTS -${changeLogMessages.length > 0 ? '\n\n' : ''}${changeLogMessages.join('\n')} +${logChangelogMessages('general')} ${logCommunitySection()} ${logTeamSection()} ### Data Grid - +${logChangelogMessages('DataGrid')} #### \`@mui/x-data-grid@__VERSION__\` ${logChangelogSection(dataGridCommits) || `No changes since \`@mui/x-data-grid@${lastRelease}\`.`} @@ -350,7 +373,7 @@ Same changes as in \`@mui/x-data-grid-pro@__VERSION__\`${ } ${logChangelogSection(dataGridPremiumCommits)}${dataGridPremiumCommits.length > 0 ? '\n' : ''} ### Date and Time Pickers - +${logChangelogMessages('pickers')} #### \`@mui/x-date-pickers@__VERSION__\` ${logChangelogSection(pickersCommits) || `No changes since \`@mui/x-date-pickers@${lastRelease}\`.`} @@ -362,7 +385,7 @@ Same changes as in \`@mui/x-date-pickers@__VERSION__\`${ } ${logChangelogSection(pickersProCommits)}${pickersProCommits.length > 0 ? '\n' : ''} ### Charts - +${logChangelogMessages('charts')} #### \`@mui/x-charts@__VERSION__\` ${logChangelogSection(chartsCommits) || `No changes since \`@mui/x-charts@${lastRelease}\`.`} @@ -372,7 +395,7 @@ ${logChangelogSection(chartsCommits) || `No changes since \`@mui/x-charts@${last Same changes as in \`@mui/x-charts@__VERSION__\`${chartsProCommits.length > 0 ? ', plus:\n' : '.'} ${logChangelogSection(chartsProCommits)}${chartsProCommits.length > 0 ? '\n' : ''} ### Tree View - +${logChangelogMessages('TreeView')} #### \`@mui/x-tree-view@__VERSION__\` ${logChangelogSection(treeViewProCommits) || `No changes since \`@mui/x-tree-view-pro@${lastRelease}\`.`}