Skip to content

Commit 70b178c

Browse files
MBilalShafiflaviendelanglecherniavskii
authored
v7.22.0 (#15103)
Co-authored-by: Flavien DELANGLE <[email protected]> Co-authored-by: Andrew Cherniavskii <[email protected]>
1 parent ec0caee commit 70b178c

File tree

13 files changed

+92
-12
lines changed

13 files changed

+92
-12
lines changed

Diff for: CHANGELOG.md

+80
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,86 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 7.22.0
7+
8+
_Oct 25, 2024_
9+
10+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
11+
12+
- 🛰 Introduce [server-side support for Data Grid row grouping](https://mui.com/x/react-data-grid/server-side-data/row-grouping/)
13+
- 🐞 Bugfixes
14+
- 📚 Documentation improvements
15+
- 🌍 Improve Portuguese (pt-BR) locale on the Data Grid component
16+
17+
Special thanks go out to the community contributors who have helped make this release possible:
18+
@clins1994, @GITPHLAP, @k-rajat19, @kalyan90, @merotosc, @yash49.
19+
Following are all team members who have contributed to this release:
20+
@cherniavskii, @flaviendelangle, @LukasTy, @MBilalShafi, @romgrk.
21+
22+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
23+
24+
### Data Grid
25+
26+
#### `@mui/[email protected]`
27+
28+
- [DataGrid] Fix `GridPanelAnchor` positioning (#15022) @k-rajat19
29+
- [DataGrid] Fix ugly prop-types for the `pageStyle` prop of the `GridPrintExportMenuItem` component (#15015) @flaviendelangle
30+
- [DataGrid] Fix value type in filter model for number and boolean column type (#14733) @k-rajat19
31+
- [DataGrid] Focus next row when the focused row is deleted (#15067) @cherniavskii
32+
- [DataGrid] Remove some usages of `<Box />` and `<Badge />` (#15013) @romgrk
33+
- [DataGrid] Fix number of rows to display for page size options with negative value (#14890) @kalyan90
34+
- [l10n] Improve Portuguese (pt-BR) locale (#15021) @k-rajat19
35+
36+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
37+
38+
Same changes as in `@mui/[email protected]`, plus:
39+
40+
- [DataGridPro] Fix column pinning layout (#15073) @cherniavskii
41+
42+
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
43+
44+
Same changes as in `@mui/[email protected]`, plus:
45+
46+
- [DataGridPremium] Server-side data source with row grouping (#15109) @MBilalShafi
47+
48+
### Date and Time Pickers
49+
50+
#### `@mui/[email protected]`
51+
52+
- [pickers] Fix `DateCalendar` timezone management (#15119) @LukasTy
53+
- [pickers] Fix `DigitalClock` time options on a `DST` switch day (#15092) @LukasTy
54+
55+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
56+
57+
Same changes as in `@mui/[email protected]`.
58+
59+
### Charts
60+
61+
#### `@mui/[email protected]`
62+
63+
- [charts] Export data type in `onAxisClick(_, data)` callback (#15038) @clins1994
64+
65+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
66+
67+
Same changes as in `@mui/[email protected]`.
68+
69+
### Tree View
70+
71+
#### `@mui/[email protected]`
72+
73+
- [TreeView] Make the cancellable event types public (#14992) @flaviendelangle
74+
75+
### Docs
76+
77+
- [docs] Fix typo in Tree View docs (#15047) @yash49
78+
79+
### Core
80+
81+
- [core] Adjust cherry-pick GH actions (#15101) @LukasTy
82+
- [core] Update prettier target branch (#15100) @MBilalShafi
83+
- [core] Update some `default-branch-switch` instances for `v7.x` (#15085) @MBilalShafi
84+
- [test] Revert to using `fireEvent` instead of `userEvent` (#14927) @LukasTy
85+
686
## 7.21.0
787

888
_Oct 17, 2024_

Diff for: docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"build:clean": "rimraf .next && pnpm build",
1010
"build-sw": "node ./scripts/buildServiceWorker.js",
1111
"dev": "next dev --port 3001",
12-
"deploy": "git push -f upstream master:docs-v7",
12+
"deploy": "git push -f upstream v7.x:docs-v7",
1313
"icons": "rimraf public/static/icons/* && node ./scripts/buildIcons.js",
1414
"serve": "serve ./export -l 3010",
1515
"create-playground": "cpy --cwd=scripts playground.template.tsx ../../pages/playground --rename=index.tsx",

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.21.0",
2+
"version": "7.22.0",
33
"private": true,
44
"scripts": {
55
"preinstall": "npx only-allow pnpm",

Diff for: packages/x-charts-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts-pro",
3-
"version": "7.0.0-beta.5",
3+
"version": "7.0.0-beta.6",
44
"description": "The Pro plan edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The community edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.js",

Diff for: packages/x-data-grid-generator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-generator",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "Generate fake data for demo purposes only.",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid-premium/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-premium",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The Premium plan edition of the Data Grid Components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-pro",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The Pro plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The Community plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-date-pickers-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-date-pickers-pro",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The Pro plan edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-date-pickers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-date-pickers",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The community edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-tree-view-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-tree-view-pro",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The Pro plan edition of the Tree View components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-tree-view/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-tree-view",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "The community edition of the Tree View components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

0 commit comments

Comments
 (0)