Skip to content

Commit 275e90a

Browse files
authored
v8.0.0-beta.2 (#17155)
1 parent b0fb5ee commit 275e90a

File tree

16 files changed

+109
-15
lines changed

16 files changed

+109
-15
lines changed

CHANGELOG.md

+94
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,100 @@
55
All notable changes to this project will be documented in this file.
66
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
77

8+
## 8.0.0-beta.2
9+
10+
_Mar 27, 2025_
11+
12+
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
13+
14+
- 🔍 Update the Data Grid quick filter to be collapsed when not in use
15+
- 🐞 Bugfixes
16+
17+
Special thanks go out to the community members for their valuable contributions:
18+
@lhilgert9.
19+
Following are all team members who have contributed to this release:
20+
@alexfauquette, @arminmeh, @flaviendelangle, @hasdfa, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @mnajdova, @romgrk.
21+
22+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
23+
24+
### Data Grid
25+
26+
#### `@mui/[email protected]`
27+
28+
- [DataGrid] Fix error caused by trying to render rows that are not in the state anymore (#17057) @arminmeh
29+
- [DataGrid] Refactor: remove more material (#16922) @romgrk
30+
- [DataGrid] Update Quick Filter component to be expandable (#16862) @KenanYusuf
31+
- [DataGrid] Fix crash when used with `@mui/styled-engine-sc` (#17154) @KenanYusuf
32+
33+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
34+
35+
Same changes as in `@mui/[email protected]`, plus:
36+
37+
- [DataGridPro] Data source: Allow expanding groups with unknown children (#17144) @MBilalShafi
38+
39+
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
40+
41+
Same changes as in `@mui/[email protected]`.
42+
43+
### Date and Time Pickers
44+
45+
#### `@mui/[email protected]`
46+
47+
- [fields] Extract the props of each field slot into a standalone hook for easier re-use (#17114) @flaviendelangle
48+
- [pickers] Fix visual regression in Date Range Calendar's day (#17148) @flaviendelangle
49+
- [pickers] Remove all code duplication to apply default values to validation props (#17038) @flaviendelangle
50+
51+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
52+
53+
Same changes as in `@mui/[email protected]`.
54+
55+
### Charts
56+
57+
#### `@mui/[email protected]`
58+
59+
- [charts] Memoize axes and series with default (#17156) @alexfauquette
60+
- [charts] Add pie benchmark (#17115) @JCQuintas
61+
- [charts] Fix CSS vars support for dark theme (#17106) @alexfauquette
62+
- [charts] Fix radar hover (#17134) @alexfauquette
63+
- [charts] Move axis interaction to selectors (#17039) @alexfauquette
64+
- [charts] Fix Pie benchmark (#17125) @JCQuintas
65+
66+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
67+
68+
Same changes as in `@mui/[email protected]`.
69+
70+
### Tree View
71+
72+
#### `@mui/[email protected]`
73+
74+
Internal changes.
75+
76+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
77+
78+
Same changes as in `@mui/[email protected]`.
79+
80+
81+
82+
- [codemod] Add Data Grid codemods (#17121, #17124) @MBilalShafi
83+
84+
### Docs
85+
86+
- [docs] Fix example import for `ExportExcel` component (#17110) @KenanYusuf
87+
88+
### Core
89+
90+
- [code-infra] Remove `@mui/styles` dependency & patches (#17071) @mnajdova
91+
- [code-infra] Add more tests to slow screenshot tests (#17075) @JCQuintas
92+
- [code-infra] Fix pickers codecov (#17120) @JCQuintas
93+
- [code-infra] Move `isDeepEqual` to @mui/x-internals (#17129) @JCQuintas
94+
- [code-infra] Remove `test_regressions` step from React 18 pipeline (#17108) @LukasTy
95+
- [code-infra] Update some data-grid tests for vitest (#17078, #17104, #17146) @JCQuintas
96+
- [code-infra] Update some date-pickers tests for vitest (#17083) @JCQuintas
97+
- [infra] Update `issue-status-label-handler.yml` @michelengelen
98+
- [infra] Added reusable issue status label handler workflow (#17145) @michelengelen
99+
- [infra] Switch to reusable 'stale issues/PRs' workflow (#17107) @michelengelen
100+
- [telemetry] Improve request body size, update dependencies, and optimize SSR handling (#17008) @hasdfa
101+
8102
## 8.0.0-beta.1
9103

10104
_Mar 21, 2025_

package.json

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

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The Pro plan edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The community edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.js",

packages/x-codemod/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-codemod",
3-
"version": "8.0.0-beta.0",
3+
"version": "8.0.0-beta.2",
44
"bin": "./codemod.js",
55
"private": false,
66
"author": "MUI Team",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "Generate fake data for demo purposes only.",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The Premium plan edition of the Data Grid Components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The Pro plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The Community plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The Pro plan edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The community edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

packages/x-internals/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-internals",
3-
"version": "8.0.0-beta.0",
3+
"version": "8.0.0-beta.2",
44
"description": "Utility functions for the MUI X packages (internal use only).",
55
"author": "MUI Team",
66
"license": "MIT",

packages/x-license/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-license",
3-
"version": "8.0.0-beta.0",
3+
"version": "8.0.0-beta.2",
44
"description": "MUI X License verification",
55
"author": "MUI Team",
66
"main": "src/index.ts",

packages/x-telemetry/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-telemetry",
3-
"version": "8.0.0-beta.0",
3+
"version": "8.0.0-beta.2",
44
"description": "MUI X Telemetry",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
44
"description": "The Pro plan edition of the Tree View components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

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": "8.0.0-beta.1",
3+
"version": "8.0.0-beta.2",
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)