-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michel Engelen <[email protected]> Co-authored-by: Jose C Quintas Jr <[email protected]> Co-authored-by: Flavien DELANGLE <[email protected]> Co-authored-by: Armin Mehinovic <[email protected]>
- Loading branch information
1 parent
e59e811
commit 4db3e01
Showing
12 changed files
with
113 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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,108 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 8.0.0-alpha.3 | ||
|
||
_Dec 5, 2024_ | ||
|
||
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 💫 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid. Use [data source](https://mui.com/x/react-data-grid/server-side-data/#data-source) to fetch a range of rows on demand and update the rows in the same way as described in [Infinite loading](https://mui.com/x/react-data-grid/row-updates/#infinite-loading) and [Lazy loading](https://mui.com/x/react-data-grid/row-updates/#lazy-loading) without the need to use any additional event listeners and callbacks. | ||
- 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate. | ||
|
||
Special thanks go out to the community contributors who have helped make this release possible: | ||
@ihsanberkozcan, @k-rajat19, @perezShaked. | ||
Following are all team members who have contributed to this release: | ||
@arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte. | ||
|
||
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> | ||
|
||
### Data Grid | ||
|
||
#### Breaking changes | ||
|
||
- The "Select all" checkbox is now checked when all the selectable rows are selected, ignoring rows that are not selectable because of the `isRowSelectable` prop. | ||
- The `rowPositionsDebounceMs` prop was removed. | ||
- The `gridRowsDataRowIdToIdLookupSelector` selector was removed. Use the `gridRowsLookupSelector` selector in combination with the `getRowId()` API method instead. | ||
```diff | ||
-const idToIdLookup = gridRowsDataRowIdToIdLookupSelector(apiRef); | ||
-const rowId = idToIdLookup[id] | ||
+const rowsLookup = gridRowsLookupSelector(apiRef); | ||
+const rowId = apiRef.current.getRowId(rowsLookup[id]) | ||
``` | ||
- The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature. | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Fix deselection not working with `isRowSelectable` (#15692) @MBilalShafi | ||
- [DataGrid] Make column autosizing work with flex columns (#15465) @cherniavskii | ||
- [DataGrid] Remove `gridRowsDataRowIdToIdLookupSelector` selector (#15698) @arminmeh | ||
- [DataGrid] Remove `rowPositionsDebounceMs` prop (#15482) @k-rajat19 | ||
- [l10n] Improve Hebrew (he-IL) locale (#15699) @perezShaked | ||
- [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`, plus: | ||
|
||
- [DataGridPro] Cleanup pinned rows on removal (#15697) @cherniavskii | ||
- [DataGridPro] Server-side lazy loading (#13878) @arminmeh | ||
|
||
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') | ||
|
||
Same changes as in `@mui/[email protected]`, plus: | ||
|
||
- [DataGridPremium] Remove the `ariaV8` experimental flag (#15694) @arminmeh | ||
|
||
### Date and Time Pickers | ||
|
||
#### Breaking changes | ||
|
||
- The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usepickercontext). | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [pickers] Replace the `onOpen()` and `onClose()` methods of `usePickerContext()` with a single `setOpen()` method. (#15701) @flaviendelangle | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Charts | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [charts] Improve SVG `pattern` and `gradient` support (#15720) @JCQuintas | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Tree View | ||
|
||
#### `@mui/[email protected]` | ||
|
||
No changes since `@mui/[email protected]`. | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Docs | ||
|
||
- [docs] Add a customization demo for the Date and Time Pickers overview page (#15118) @noraleonte | ||
- [docs] Fix typo in charts axis documentation (#15743) @JCQuintas | ||
- [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi | ||
|
||
### Core | ||
|
||
- [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15316) @flaviendelangle | ||
- [code-infra] Lock file maintenance (#11894) | ||
- [code-infra] Check if `preset-safe` folder exists in codemod test (#15703) @JCQuintas | ||
- [code-infra] Import Pickers `preset-safe` into global codemod config (#15659) @JCQuintas | ||
- [code-infra] Playwright 1.49 (#15493) @JCQuintas | ||
- [test] Force hover in headless Chrome (#15710) @cherniavskii | ||
|
||
## v8.0.0-alpha.2 | ||
|
||
_Nov 29, 2024_ | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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 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