diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a38f29e9f91..55f098a29783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,72 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 7.9.0 + +_Jul 5, 2024_ + +We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: + +- 🔄 Add loading overlay variants, including a skeleton loader option to the Data Grid component. See [Loading overlay docs](https://mui.com/x/react-data-grid/overlays/#loading-overlay) for more details. +- 🌳 Add `selectItem` and `getItemDOMElement` methods to the TreeView component public API +- ⛏️ Make the `usePickersTranslations` hook public in the pickers component +- 🐞 Bugfixes + + + +### Data Grid + +#### `@mui/x-data-grid@7.9.0` + +- [DataGrid] Add skeleton loading overlay support (#13293) @KenanYusuf +- [DataGrid] Fix pagination when `pagination={undefined}` (#13349) @sai6855 + +#### `@mui/x-data-grid-pro@7.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-data-grid@7.9.0`. + +#### `@mui/x-data-grid-premium@7.9.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') + +Same changes as in `@mui/x-data-grid-pro@7.9.0`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.9.0` + +- [pickers] Make the `usePickersTranslations` hook public (#13657) @flaviendelangle + +#### `@mui/x-date-pickers-pro@7.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-date-pickers@7.9.0`. + +### Charts + +#### `@mui/x-charts@7.9.0` + +- [charts] Add Heatmap (unreleased) (#13209) @alexfauquette +- [charts] Add initial `Zoom&Pan` to the Pro charts (unreleased) (#13405) @JCQuintas +- [charts] Fix Axis Highlight on horizontal bar charts regression (#13717) @JCQuintas +- [charts] Improve charts interaction for mobile users (#13692) @JCQuintas +- [charts] Add documentation on how to disable the tooltip on charts (#13724) @JCQuintas + +### Tree View + +#### `@mui/x-tree-view@7.9.0` + +- [TreeView] Add `selectItem` and `getItemDOMElement` methods to the public API (#13485) @flaviendelangle + +### Docs + +- [docs] Fix custom "no results overlay" demo in dark mode (#13715) @KenanYusuf + +### Core + +- [core] Add `react_next` workflow in CircleCI (#13360) @cherniavskii +- [core] Create a new package to share utils across X packages (#13528) @flaviendelangle +- [core] Fix dependency setup (#13684) @LukasTy +- [core] Remove `jscodeshift-add-imports` package (#13720) @LukasTy +- [code-infra] Cleanup monorepo and `@mui/docs` usage (#13713) @LukasTy + ## 7.8.0 _Jun 28, 2024_ diff --git a/package.json b/package.json index 612788f9098e..e79eef641f69 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.8.0", + "version": "7.9.0", "private": true, "scripts": { "preinstall": "npx only-allow pnpm", diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index 3a577fd9e54e..00e84747222b 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts", - "version": "7.8.0", + "version": "7.9.0", "description": "The community edition of the Charts components (MUI X).", "author": "MUI Team", "main": "./src/index.js", diff --git a/packages/x-codemod/package.json b/packages/x-codemod/package.json index 323b974d09c8..07c79ed8d760 100644 --- a/packages/x-codemod/package.json +++ b/packages/x-codemod/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-codemod", - "version": "7.8.0", + "version": "7.9.0", "bin": "./codemod.js", "private": false, "author": "MUI Team", diff --git a/packages/x-data-grid-generator/package.json b/packages/x-data-grid-generator/package.json index bce7f1208ce7..066396cdb91b 100644 --- a/packages/x-data-grid-generator/package.json +++ b/packages/x-data-grid-generator/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-generator", - "version": "7.8.0", + "version": "7.9.0", "description": "Generate fake data for demo purposes only.", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid-premium/package.json b/packages/x-data-grid-premium/package.json index 9dd35ed550ff..fb0b4ae2d022 100644 --- a/packages/x-data-grid-premium/package.json +++ b/packages/x-data-grid-premium/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-premium", - "version": "7.8.0", + "version": "7.9.0", "description": "The Premium plan edition of the Data Grid Components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid-pro/package.json b/packages/x-data-grid-pro/package.json index 3db1441ad766..599974f30da9 100644 --- a/packages/x-data-grid-pro/package.json +++ b/packages/x-data-grid-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-pro", - "version": "7.8.0", + "version": "7.9.0", "description": "The Pro plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid/package.json b/packages/x-data-grid/package.json index 29465974160c..2518aea77c59 100644 --- a/packages/x-data-grid/package.json +++ b/packages/x-data-grid/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid", - "version": "7.8.0", + "version": "7.9.0", "description": "The Community plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-date-pickers-pro/package.json b/packages/x-date-pickers-pro/package.json index 862ab2bf100f..94c61555c530 100644 --- a/packages/x-date-pickers-pro/package.json +++ b/packages/x-date-pickers-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-date-pickers-pro", - "version": "7.8.0", + "version": "7.9.0", "description": "The Pro plan edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-date-pickers/package.json b/packages/x-date-pickers/package.json index 6d085c0ad9ea..9e0ce6db7497 100644 --- a/packages/x-date-pickers/package.json +++ b/packages/x-date-pickers/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-date-pickers", - "version": "7.8.0", + "version": "7.9.0", "description": "The community edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-internals/package.json b/packages/x-internals/package.json index 040f3e5d67c7..a559bcaebe21 100644 --- a/packages/x-internals/package.json +++ b/packages/x-internals/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-internals", - "version": "7.8.0", + "version": "7.9.0", "description": "Utility functions for the MUI X packages (internal use only).", "author": "MUI Team", "license": "MIT", diff --git a/packages/x-license/package.json b/packages/x-license/package.json index c1525b0a310f..f7c46cb80b2e 100644 --- a/packages/x-license/package.json +++ b/packages/x-license/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-license", - "version": "7.8.0", + "version": "7.9.0", "description": "MUI X License verification", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-tree-view/package.json b/packages/x-tree-view/package.json index 80c6ac12188a..997c1a9a8e01 100644 --- a/packages/x-tree-view/package.json +++ b/packages/x-tree-view/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-tree-view", - "version": "7.8.0", + "version": "7.9.0", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts",