Skip to content

Commit a39a5e1

Browse files
Merge branch 'master' into locale-week-day
2 parents 468a108 + 802b2c6 commit a39a5e1

File tree

17 files changed

+102
-16
lines changed

17 files changed

+102
-16
lines changed

CHANGELOG.md

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,92 @@
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.10.2
9+
10+
_Aug 20, 2025_
11+
12+
We'd like to extend a big thank you to the 10 contributors who made this release possible. Here are some highlights ✨:
13+
14+
- 🌎 Improve Finnish (fi-FI) locale on the Data Grid
15+
16+
Special thanks go out to the community members for their valuable contributions:
17+
@lauri-heinonen-2025-04, @Methuselah96, @sai6855, @wilcoschoneveld
18+
19+
The following are all team members who have contributed to this release:
20+
@alexfauquette, @cherniavskii, @flaviendelangle, @Janpot, @oliviertassinari, @rita-codes
21+
22+
### Data Grid
23+
24+
#### `@mui/[email protected]`
25+
26+
- [DataGrid] Fix display for `<GridEditSingleSelect />` when `density='compact'` (#19249) @sai6855
27+
- [DataGrid] Fix column header sortable classname when using `disableColumnSorting` (#19222) @wilcoschoneveld
28+
- [l10n] Improve finnish (fi-FI) locale (#19163) @lauri-heinonen-2025-04
29+
30+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan")
31+
32+
Same changes as in `@mui/[email protected]`, plus:
33+
34+
- [DataGridPro] Fix quick filter not working in List View mode (#19254) @cherniavskii
35+
36+
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link "Premium plan")
37+
38+
Same changes as in `@mui/[email protected]`.
39+
40+
### Date and Time Pickers
41+
42+
#### `@mui/[email protected]`
43+
44+
Internal changes.
45+
46+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan")
47+
48+
Same changes as in `@mui/[email protected]`.
49+
50+
### Charts
51+
52+
#### `@mui/[email protected]`
53+
54+
Internal changes.
55+
56+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan")
57+
58+
Same changes as in `@mui/[email protected]`.
59+
60+
### Tree View
61+
62+
#### `@mui/[email protected]`
63+
64+
- [tree view] Add `aria-hidden` to the Tree Item Checkbox (#19246) @flaviendelangle
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+
### Codemod
71+
72+
#### `@mui/[email protected]`
73+
74+
Internal changes.
75+
76+
### Docs
77+
78+
- [docs] Fix links to the pyramid chart (#19250) @alexfauquette
79+
80+
### Core
81+
82+
- [internal] Avoid script for CI only @oliviertassinari
83+
- [internal] Fix `renovate.json` @oliviertassinari
84+
- [internal] Polish renovate config @oliviertassinari
85+
- [internal] Rename core to internal (#19203) @oliviertassinari
86+
- [internal] Update link to GitHub labels @oliviertassinari
87+
88+
### Miscellaneous
89+
90+
- [code-infra] Prepare for incoming `execa` update (#19229) @Janpot
91+
- [virtualizer] Fix type import (#19192) @Methuselah96
92+
- [virtualizer] Improve type export (#19192) @Methuselah96
93+
894
## 8.10.1
995

1096
_Aug 15, 2025_

docs/data/data-grid/ai-assistant/ai-assistant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The Data Grid provides all the necessary elements for integration with MUI's ser
6666
1. Contact [[email protected]](mailto:[email protected]) to get an API key for our processing service.
6767

6868
:::warning
69-
Avoid exposing the API key to the client by using a proxy server that receives prompt processing requests, adds the `x-api-key` header, and passes the request on to MUI's service.
69+
Do not expose the API key to the public. Instead, keep it private, use a proxy server that receives prompt processing requests, adds the `x-api-key` header, and passes the request on to MUI's service.
7070

7171
This is an example of a [Fastify proxy](https://www.npmjs.com/package/@fastify/http-proxy) for the prompt requests.
7272

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "8.10.1",
2+
"version": "8.10.2",
33
"private": true,
44
"scripts": {
55
"preinstall": "npx only-allow pnpm",

packages/x-charts-pro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts-pro",
3-
"version": "8.10.1",
3+
"version": "8.10.2",
44
"author": "MUI Team",
55
"description": "The Pro plan edition of the MUI X Charts components.",
66
"main": "src/index.ts",

packages/x-charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts",
3-
"version": "8.10.1",
3+
"version": "8.10.2",
44
"author": "MUI Team",
55
"description": "The community edition of MUI X Charts components.",
66
"main": "src/index.js",

packages/x-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-codemod",
3-
"version": "8.10.0",
3+
"version": "8.10.2",
44
"author": "MUI Team",
55
"description": "Codemod scripts for MUI X.",
66
"bin": "./codemod.js",

packages/x-data-grid-generator/package.json

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

packages/x-data-grid-premium/package.json

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

packages/x-data-grid-pro/package.json

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

packages/x-data-grid/package.json

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

0 commit comments

Comments
 (0)