-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[release] v8.13.0 #19774
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[release] v8.13.0 #19774
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,127 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 8.13.0 | ||
|
||
_Oct 1, 2025_ | ||
|
||
We'd like to extend a big thank you to the 14 contributors who made this release possible. Here are some highlights ✨: | ||
Check warning on line 12 in CHANGELOG.md
|
||
|
||
- 📊 The chart zoom now supports the `tapAndDrag` gesture. Zoom in/out by tapping twice and dragging vertically. | ||
MBilalShafi marked this conversation as resolved.
Show resolved
Hide resolved
alexfauquette marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- 🔎 Charts now allow [fine-grained control for zoom interactions](https://mui.com/x/react-charts/zoom-and-pan/#zoom-interactions-configuration). | ||
```jsx | ||
<BarChartPro | ||
zoomInteractionConfig={{ | ||
// Only zoom when Control key is pressed | ||
zoom: [{ type: 'wheel', keys: ['Control'] }], | ||
// Only pan when Shift key is pressed | ||
pan: [{ type: 'drag', keys: ['Shift'] }], | ||
}} | ||
/> | ||
``` | ||
- ➡️ Data Grid grouping rows now persist their expansion state when the rows are updated. | ||
- 📜 Updated Data Grid vertical scrollbar to include pinned rows and aggregation sections. | ||
- 📌 Improved the appearance of [pinned columns](https://mui.com/x/react-data-grid/column-pinning/#pinned-columns-appearance) and [pinned rows](https://mui.com/x/react-data-grid/row-pinning/#pinned-rows-appearance) sections in the Data Grid. | ||
alexfauquette marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- 🚀 Tree View now fetches the children of expanded items on mount when using lazy loading. | ||
- 🐞 Bugfixes | ||
- 📚 Documentation improvements | ||
|
||
Special thanks go out to the community members for their valuable contributions: | ||
@sai6855 | ||
|
||
The following are all team members who have contributed to this release: | ||
@alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @hasdfa, @Janpot, @JCQuintas, @KenanYusuf, @mapache-salvaje, @MBilalShafi, @mnajdova, @rita-codes, @siriwatknp | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Add scroll shadows and fix scrollbar overlap (#16476) @KenanYusuf | ||
- [DataGrid] Fix row spanning stale state issue (#19733) @MBilalShafi | ||
- [DataGrid] Fix toolbar `slotProps` not being applied (#19769) @sai6855 | ||
- [DataGrid] Skip calling `fetchRows()` when strategy is not initialized (#19728) @MBilalShafi | ||
|
||
#### `@mui/[email protected]` [](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`, plus: | ||
|
||
- [DataGridPro] Retain expansion state on rows update (#19697) @MBilalShafi | ||
|
||
#### `@mui/[email protected]` [](https://mui.com/r/x-premium-svg-link 'Premium plan') | ||
|
||
Same changes as in `@mui/[email protected]`, plus: | ||
|
||
- [DataGridPremium] Add `metadata.referenceId` to AI assistant prompt resolver (#19695) @hasdfa | ||
- [DataGridPremium] Fix aggregation value retrieval (#19724) @arminmeh | ||
- [DataGridPremium] Get correct active chart id while rebuilding data (#19720) @arminmeh | ||
|
||
### Date and Time Pickers | ||
|
||
#### `@mui/[email protected]` | ||
|
||
Internal changes. | ||
|
||
#### `@mui/[email protected]` [](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Charts | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [charts] Add `tapAndDrag` zoom gesture (#19727) @JCQuintas | ||
- [charts] Add arc focus indicator that follows the arc form (#19696) @mnajdova | ||
- [charts] Fix outline color (#19752) @alexfauquette | ||
- [charts] Improve tooltip doc (#19731) @JCQuintas | ||
- [charts] Make axis highlight reflect the keyboard interaction (#19631) @alexfauquette | ||
- [charts] Prevent horizontal scroll on keyboard navigation (#19704) @alexfauquette | ||
- [charts] Simplify gestures by removing bindings (#19767) @JCQuintas | ||
|
||
#### `@mui/[email protected]` [](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`, plus: | ||
alexfauquette marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- [charts-pro] Allow zoom interactions to be configured (#18646) @JCQuintas | ||
- [charts-pro] Fix zoom preview having wrong domain in some cases (#19723) @bernardobelchior | ||
alexfauquette marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#### `@mui/[email protected]` [](https://mui.com/r/x-premium-svg-link 'Premium plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Tree View | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [tree view] Export the `apiRef` type of each Tree View component (#19543) @flaviendelangle | ||
- [tree view] Fix indeterminate checkbox state (#19544) @flaviendelangle | ||
- [tree view] Improve the lazy loading initial expansion (#19284) @flaviendelangle | ||
- [tree view] Use Base UI utils whenever possible (#19502) @flaviendelangle | ||
|
||
#### `@mui/[email protected]` [](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Codemod | ||
|
||
#### `@mui/[email protected]` | ||
|
||
Internal changes. | ||
|
||
### Docs | ||
|
||
- [docs] Add a recipe to customize editing component with Autocomplete (#19651) @siriwatknp | ||
- [docs] Refine the electricity scatter tooltip (#19689) @alexfauquette | ||
alexfauquette marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [docs] Revise the Axis doc (#19052) @mapache-salvaje | ||
- [docs] Remove reference to nonexistent `FocusedMark` API page (#19773) @bernardobelchior | ||
|
||
### Core | ||
|
||
- [code-infra] Change charts codspeed integration to use walltime (#19729) @JCQuintas | ||
- [code-infra] Port stylelint from core repo (#19633) @Janpot | ||
- [code-infra] Stabilize fake timers in regression tests (#19719) @Janpot | ||
- [code-infra] Stabilize size for bundles with `releaseInfo` (#19674) @Janpot | ||
- [code-infra] Fix `pnpm-lock.yaml` broken lockfile (#19755) @bernardobelchior | ||
|
||
## 8.12.1 | ||
|
||
_Sep 25, 2025_ | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "8.12.1", | ||
"version": "8.13.0", | ||
"private": true, | ||
"scripts": { | ||
"preinstall": "npx only-allow pnpm", | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.