Skip to content

Commit 4ea19f6

Browse files
authored
v7.28.3 (#17234)
1 parent b1a16f5 commit 4ea19f6

File tree

9 files changed

+52
-8
lines changed

9 files changed

+52
-8
lines changed

CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,50 @@
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.28.3
7+
8+
_Apr 3, 2025_
9+
10+
We'd like to offer a big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
11+
12+
- 🐞 Bugfixes
13+
14+
Team members who have contributed to this release:
15+
@cherniavskii, @LukasTy, @MBilalShafi.
16+
17+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
18+
19+
### Data Grid
20+
21+
#### `@mui/[email protected]`
22+
23+
Internal changes.
24+
25+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
26+
27+
Same changes as in `@mui/[email protected]`, plus:
28+
29+
- [DataGridPro] Data source: Allow expanding groups with unknown children count (#17149) @MBilalShafi
30+
31+
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
32+
33+
Same changes as in `@mui/[email protected]`.
34+
35+
### Date and Time Pickers
36+
37+
#### `@mui/[email protected]`
38+
39+
Internal changes.
40+
41+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
42+
43+
Same changes as in `@mui/[email protected]`.
44+
45+
### Docs
46+
47+
- [docs] Update Localization Provider JSDoc link (#17208) @LukasTy
48+
- [docs] Use v6 core packages in MUI X v7 docs (#17171) @cherniavskii
49+
650
## 7.28.2
751

852
_Mar 28, 2025_

package.json

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

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

scripts/releaseChangelog.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async function main(argv) {
7878
const lastRelease = lastReleaseInput !== undefined ? lastReleaseInput : latestTaggedVersion;
7979
if (lastRelease !== latestTaggedVersion) {
8080
console.warn(
81-
`Creating changelog for ${latestTaggedVersion}..${release} when latest tagged version is '${latestTaggedVersion}'.`,
81+
`Creating changelog for ${lastRelease}..${release} when latest tagged version is '${latestTaggedVersion}'.`,
8282
);
8383
}
8484

0 commit comments

Comments
 (0)