From f96c3198c59f4ef6796587de316919d28e645bd1 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 8 Mar 2024 16:35:21 +0100 Subject: [PATCH] v7.0.0-beta.6 (#12375) Signed-off-by: Flavien DELANGLE Co-authored-by: Lukas Co-authored-by: Michel Engelen <32863416+michelengelen@users.noreply.github.com> --- CHANGELOG.md | 184 ++++++++++++++------ package.json | 2 +- packages/x-charts/package.json | 2 +- packages/x-codemod/package.json | 2 +- packages/x-data-grid-generator/package.json | 4 +- packages/x-data-grid-premium/package.json | 8 +- packages/x-data-grid-pro/package.json | 6 +- packages/x-data-grid/package.json | 2 +- packages/x-date-pickers-pro/package.json | 6 +- packages/x-date-pickers/package.json | 2 +- packages/x-license/package.json | 2 +- packages/x-tree-view/package.json | 2 +- scripts/releaseChangelog.mjs | 10 +- 13 files changed, 161 insertions(+), 71 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5347ebac33cf..db25637ddd28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,92 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 7.0.0-beta.6 + +_Mar 8, 2024_ + +We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨: + +- 🐞 Bugfixes +- 📚 Documentation improvements + +### Data Grid + +#### `@mui/x-data-grid@7.0.0-beta.6` + +- [DataGrid] Fix crashing of demos on rating change (#12315) @sai6855 +- [DataGrid] Fix double border below header (#12349) @joespeargresham +- [DataGrid] Fix empty sort being saved in the `sortModel` (#12325) @MBilalShafi +- [DataGrid] Remove unnecessary `stopCellMode` event in `renderEditRating` component (#12335) @sai6855 +- [DataGrid] Small performance optimizations (#12346) @romgrk + +#### `@mui/x-data-grid-pro@7.0.0-beta.6` [![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.0.0-beta.6`, plus: + +- [DataGridPro] Rework `onRowsScrollEnd` to use `IntersectionObserver` (#8672) @DanailH + +#### `@mui/x-data-grid-premium@7.0.0-beta.6` [![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.0.0-beta.6`. + +### Charts + +#### `@mui/x-charts@7.0.0-beta.6` + +- [charts] Add context to axis value formatter (#12172) @alexfauquette +- [charts] Customize tick position for band scale (#12316) @alexfauquette +- [charts] Fix RTL legend (#12175) @alexfauquette + +### Tree View + +#### Breaking changes + +- The component used to animate the item children is now defined as a slot on the `TreeItem` component. + + If you were passing a `TransitionComponent` or `TransitionProps` to your `TreeItem` component, + you need to use the new `groupTransition` slot on this component: + + ```diff + + + + ``` + +- The `group` class of the `TreeItem` component has been renamed to `groupTransition` to match with its new slot name. + + ```diff + const StyledTreeItem = styled(TreeItem)({ + - [`& .${treeItemClasses.group}`]: { + + [`& .${treeItemClasses.groupTransition}`]: { + marginLeft: 20, + }, + }); + ``` + +#### `@mui/x-tree-view@7.0.0-beta.6` + +- [TreeView] Fix invalid nodes state when updating `props.items` (#12359) @flaviendelangle +- [TreeView] In the `RichTreeView`, do not use the item id as the HTML id attribute (#12319) @flaviendelangle +- [TreeView] New instance and publicAPI method: `getItem` (#12251) @flaviendelangle +- [TreeView] Replace `TransitionComponent` and `TransitionProps` with a `groupTransition` slot (#12336) @flaviendelangle + +### Docs + +- [docs] Add a note about `z-index` usage in SVG (#12337) @alexfauquette +- [docs] `RichTreeView` customization docs (#12231) @noraleonte + +### Core + +- [test] Add `Charts` test (#11551) @alexfauquette + ## 7.0.0-beta.5 _Mar 1, 2024_ @@ -45,7 +131,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.5`, plus: - [DataGridPremium] Make clipboard copy respect the sorting during cell selection (#12235) @MBilalShafi -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-beta.5` @@ -121,7 +207,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.4`. Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`. -### Date Pickers +### Date and Time Pickers #### Breaking changes @@ -335,7 +421,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.2`, plus: - [DataGridPremium] Fix autosize grouping cell (#11870) @romgrk - [DataGridPremium] Fix clipboard paste not working with Caps Lock enabled (#11965) @shaharyar-shamshi -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-beta.2` @@ -522,7 +608,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.1`. Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.1`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-beta.1` @@ -627,7 +713,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.0`. Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-beta.0` @@ -766,7 +852,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.9`, plus: - [DataGridPremium] Allow aggregation to be applied for non-aggregable columns (#11574) @MBilalShafi - [DataGridPremium] Allow programmatically grouping non-groupable columns (#11539) @MBilalShafi -### Date Pickers +### Date and Time Pickers #### Breaking changes @@ -1051,7 +1137,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.8`. Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.8`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-alpha.8` @@ -1141,7 +1227,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.7`. Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.7`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-alpha.7` @@ -1283,7 +1369,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.6`. Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.6`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-alpha.6` @@ -1351,7 +1437,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.5`. Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`. -### Date Pickers +### Date and Time Pickers #### Breaking changes @@ -1535,7 +1621,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.4`, plus: Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.4`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-alpha.4` @@ -1635,7 +1721,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus: - [DataGridPremium] Make Cell selection feature stable (#11246) @MBilalShafi - [DataGridPremium] Make Clipboard paste feature stable (#11248) @MBilalShafi -### Date Pickers +### Date and Time Pickers #### Breaking changes @@ -1772,7 +1858,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.2`. Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.2`. -### Date Pickers +### Date and Time Pickers #### Breaking changes @@ -1878,7 +1964,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss - 🐞 Bugfixes - 📚 Documentation improvements -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@7.0.0-alpha.1` / `@mui/x-date-pickers-pro@7.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') @@ -2374,7 +2460,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.0`, plus: - [DataGridPremium] Render aggregation label when `renderHeader` is used (#10936) @cherniavskii -### Date Pickers +### Date and Time Pickers #### Breaking changes @@ -2461,7 +2547,7 @@ Same changes as in `@mui/x-data-grid-pro@6.19.6`, plus: - [DataGridPremium] Make clipboard copy respect the sorting during cell selection (#12255) @MBilalShafi -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.19.6` @@ -2499,7 +2585,7 @@ Same changes as in `@mui/x-data-grid@6.19.5`. Same changes as in `@mui/x-data-grid-pro@6.19.5`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.19.5` @@ -2568,7 +2654,7 @@ Same changes as in `@mui/x-data-grid-pro@6.19.4`, plus: - [DataGridPremium] Fix autosize grouping cell (#11990) @romgrk - [DataGridPremium] Fix error after closing print export (#11889) @cherniavskii -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.19.4` @@ -2617,7 +2703,7 @@ Same changes as in `@mui/x-data-grid@6.19.3`. Same changes as in `@mui/x-data-grid-pro@6.19.3`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.19.3` @@ -2651,7 +2737,7 @@ We'd like to offer a big thanks to the 2 contributors who made this release poss - 🚀 Apply the `layout.tabs` class to `Tabs` slot (@LukasTy) (#11782) - 🐞 Bugfixes -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.19.2` @@ -2725,7 +2811,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss import { de } from 'date-fns/locale/de'; ``` -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.19.0` @@ -2772,7 +2858,7 @@ Same changes as in `@mui/x-data-grid@6.18.7`. Same changes as in `@mui/x-data-grid-pro@6.18.7`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.7` @@ -2814,7 +2900,7 @@ Same changes as in `@mui/x-data-grid@6.18.6`. Same changes as in `@mui/x-data-grid-pro@6.18.6`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.6` @@ -2863,7 +2949,7 @@ Same changes as in `@mui/x-data-grid@6.18.5`. Same changes as in `@mui/x-data-grid-pro@6.18.5`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.5` @@ -2906,7 +2992,7 @@ Same changes as in `@mui/x-data-grid@6.18.4`. Same changes as in `@mui/x-data-grid-pro@6.18.4`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.4` @@ -2952,7 +3038,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.3`, plus: - [DataGridPremium] Fix aggregated column ignoring column definition changes (#11176) @cherniavskii - [DataGridPremium] Fix custom filter operators not working on aggregated column (#11201) @cherniavskii -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.3` @@ -3008,7 +3094,7 @@ Same changes as in `@mui/x-data-grid@6.18.2`. Same changes as in `@mui/x-data-grid-pro@6.18.2`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.2` @@ -3065,7 +3151,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.1`, plus: - [DataGridPremium] Render aggregation label when `renderHeader` is used (#10961) @cherniavskii -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.1` @@ -3124,7 +3210,7 @@ Same changes as in `@mui/x-data-grid@6.18.0`. Same changes as in `@mui/x-data-grid-pro@6.18.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.18.0` @@ -3189,7 +3275,7 @@ Same changes as in `@mui/x-data-grid-pro@6.17.0`, plus: - [DataGridPremium] Fix `sum` aggregation to ignore non-numeric values (#10730) @cherniavskii - [DataGridPremium] Fix cell selection throwing index error on second page and beyond (#10784) @MBilalShafi -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.17.0` @@ -3243,7 +3329,7 @@ Same changes as in `@mui/x-data-grid@6.16.3`. Same changes as in `@mui/x-data-grid-pro@6.16.3`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.16.3` @@ -3319,7 +3405,7 @@ Same changes as in `@mui/x-data-grid@6.16.2`, plus: Same changes as in `@mui/x-data-grid-pro@6.16.2`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.16.2` @@ -3414,7 +3500,7 @@ Same changes as in `@mui/x-data-grid@6.16.1`. Same changes as in `@mui/x-data-grid-pro@6.16.1`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.16.1` @@ -3490,7 +3576,7 @@ Same changes as in `@mui/x-data-grid@6.16.0`, plus: Same changes as in `@mui/x-data-grid-pro@6.16.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.16.0` @@ -3569,7 +3655,7 @@ Same changes as in `@mui/x-data-grid@6.15.0`, plus: Same changes as in `@mui/x-data-grid-pro@6.15.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.15.0` @@ -3648,7 +3734,7 @@ Same changes as in `@mui/x-data-grid-pro@6.14.0`, plus: - [DataGridPremium] Fix clipboard import cutting off at 100 rows (#9930) @gitstart -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.14.0` @@ -3729,7 +3815,7 @@ Same changes as in `@mui/x-data-grid-pro@6.13.0`, plus: - [DataGridPremium] Fix aggregated column resizing (#10079) @cherniavskii -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.13.0` @@ -3801,7 +3887,7 @@ Same changes as in `@mui/x-data-grid@6.12.1`. Same changes as in `@mui/x-data-grid-pro@6.12.1`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.12.1` @@ -3857,7 +3943,7 @@ Same changes as in `@mui/x-data-grid@6.12.0`. Same changes as in `@mui/x-data-grid-pro@6.12.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.12.0` @@ -3928,7 +4014,7 @@ Same changes as in `@mui/x-data-grid@6.11.2`. Same changes as in `@mui/x-data-grid-pro@6.11.2`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.11.2` @@ -3979,7 +4065,7 @@ Same changes as in `@mui/x-data-grid@6.11.1`. Same changes as in `@mui/x-data-grid-pro@6.11.1`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.11.1` @@ -4048,7 +4134,7 @@ Same changes as in `@mui/x-data-grid@6.11.0`. Same changes as in `@mui/x-data-grid-pro@6.11.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.11.0` @@ -4136,7 +4222,7 @@ Same changes as in `@mui/x-data-grid-pro@6.10.2`, plus: - [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.10.2` @@ -4205,7 +4291,7 @@ Same changes as in `@mui/x-data-grid@6.10.1`, plus: Same changes as in `@mui/x-data-grid-pro@6.10.1`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.10.1` @@ -4271,7 +4357,7 @@ Same changes as in `@mui/x-data-grid@6.10.0`. Same changes as in `@mui/x-data-grid-pro@6.10.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.10.0` @@ -4341,7 +4427,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus: - [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.9.2` @@ -4407,7 +4493,7 @@ Same changes as in `@mui/x-data-grid@6.9.1`, plus: Same changes as in `@mui/x-data-grid-pro@6.9.1`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.9.1` @@ -4489,7 +4575,7 @@ Same changes as in `@mui/x-data-grid@6.9.0`. Same changes as in `@mui/x-data-grid-pro@6.9.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.9.0` @@ -4565,7 +4651,7 @@ Same changes as in `@mui/x-data-grid@6.8.0`. Same changes as in `@mui/x-data-grid-pro@6.8.0`. -### Date Pickers +### Date and Time Pickers #### `@mui/x-date-pickers@6.8.0` diff --git a/package.json b/package.json index 797f43162b59..f72a67449497 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "private": true, "scripts": { "start": "yarn && yarn docs:dev", diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index 470608b490bf..dcfa223d0e6b 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts", - "version": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "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 b8e026675488..584e7656f02e 100644 --- a/packages/x-codemod/package.json +++ b/packages/x-codemod/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-codemod", - "version": "7.0.0-beta.0", + "version": "7.0.0-beta.6", "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 a1204ba77fba..2e443e622cca 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "description": "Generate fake data for demo purposes only.", "author": "MUI Team", "main": "src/index.ts", @@ -34,7 +34,7 @@ "dependencies": { "@babel/runtime": "^7.24.0", "@mui/base": "^5.0.0-beta.36", - "@mui/x-data-grid-premium": "7.0.0-beta.5", + "@mui/x-data-grid-premium": "7.0.0-beta.6", "chance": "^1.1.11", "clsx": "^2.1.0", "lru-cache": "^7.18.3" diff --git a/packages/x-data-grid-premium/package.json b/packages/x-data-grid-premium/package.json index 5fde4b4827c2..bd44e729ef13 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "description": "The Premium plan edition of the data grid component (MUI X).", "author": "MUI Team", "main": "src/index.ts", @@ -45,9 +45,9 @@ "@babel/runtime": "^7.24.0", "@mui/system": "^5.15.9", "@mui/utils": "^5.15.9", - "@mui/x-data-grid": "7.0.0-beta.5", - "@mui/x-data-grid-pro": "7.0.0-beta.5", - "@mui/x-license": "7.0.0-beta.2", + "@mui/x-data-grid": "7.0.0-beta.6", + "@mui/x-data-grid-pro": "7.0.0-beta.6", + "@mui/x-license": "7.0.0-beta.6", "@types/format-util": "^1.0.4", "clsx": "^2.1.0", "exceljs": "^4.4.0", diff --git a/packages/x-data-grid-pro/package.json b/packages/x-data-grid-pro/package.json index e1c10af5d56a..c837376f8092 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "description": "The Pro plan edition of the data grid component (MUI X).", "author": "MUI Team", "main": "src/index.ts", @@ -45,8 +45,8 @@ "@babel/runtime": "^7.24.0", "@mui/system": "^5.15.9", "@mui/utils": "^5.15.9", - "@mui/x-data-grid": "7.0.0-beta.5", - "@mui/x-license": "7.0.0-beta.2", + "@mui/x-data-grid": "7.0.0-beta.6", + "@mui/x-license": "7.0.0-beta.6", "@types/format-util": "^1.0.4", "clsx": "^2.1.0", "prop-types": "^15.8.1", diff --git a/packages/x-data-grid/package.json b/packages/x-data-grid/package.json index eee28b6cac29..cc54a34e3ce8 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "description": "The community edition of the data grid component (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 4dcfd8e2c380..0ed650b4ee7a 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "description": "The commercial edition of the date picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", @@ -45,8 +45,8 @@ "@mui/base": "^5.0.0-beta.36", "@mui/system": "^5.15.9", "@mui/utils": "^5.15.9", - "@mui/x-date-pickers": "7.0.0-beta.5", - "@mui/x-license": "7.0.0-beta.2", + "@mui/x-date-pickers": "7.0.0-beta.6", + "@mui/x-license": "7.0.0-beta.6", "clsx": "^2.1.0", "prop-types": "^15.8.1", "react-transition-group": "^4.4.5" diff --git a/packages/x-date-pickers/package.json b/packages/x-date-pickers/package.json index 6eef06174977..7a6a2e959de7 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "description": "The community edition of the date 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 631323c2e6e6..f640f9a2e22c 100644 --- a/packages/x-license/package.json +++ b/packages/x-license/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-license", - "version": "7.0.0-beta.2", + "version": "7.0.0-beta.6", "description": "MUI X License verification", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-tree-view/package.json b/packages/x-tree-view/package.json index c6f3ff83030b..e62f932681f9 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": "7.0.0-beta.5", + "version": "7.0.0-beta.6", "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 f616cf4b5e5f..f05642243277 100644 --- a/scripts/releaseChangelog.mjs +++ b/scripts/releaseChangelog.mjs @@ -246,7 +246,7 @@ Same changes as in \`@mui/x-data-grid-pro@__VERSION__\`${ dataGridPremiumCommits.length > 0 ? ', plus:\n' : '.' } ${logChangelogSection(dataGridPremiumCommits)}${dataGridPremiumCommits.length > 0 ? '\n' : ''} -### Date Pickers +### Date and Time Pickers #### \`@mui/x-date-pickers@__VERSION__\` @@ -259,11 +259,15 @@ Same changes as in \`@mui/x-date-pickers@__VERSION__\`${ } ${logChangelogSection(pickersProCommits)} -### Charts / \`@mui/x-charts@__VERSION__\` +### Charts + +#### \`@mui/x-charts@__VERSION__\` ${logChangelogSection(chartsCommits)} -### Tree View / \`@mui/x-tree-view@__VERSION__\` +### Tree View + +#### \`@mui/x-tree-view@__VERSION__\` ${logChangelogSection(treeViewCommits)} ${logChangelogSection(codemodCommits, `### \`@mui/x-codemod@__VERSION__\``)}