Skip to content
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

v5.15.1 #5699

Merged
merged 7 commits into from
Aug 4, 2022
Merged

v5.15.1 #5699

Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 5.15.1

_Aug 4, 2022_

We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:

- 📚 New [page presenting the `apiRef`](https://mui.com/x/react-data-grid/api-object/) (#5273) @flaviendelangle
- ✨ Improve start edit UX (#5511) @oliviertassinari
cherniavskii marked this conversation as resolved.
Show resolved Hide resolved
- 🌍 Improvements to different locales
- 🐞 Bugfixes

### `@mui/x-data-grid@v5.15.1` / `@mui/x-data-grid-pro@v5.15.1` / `@mui/x-data-grid-premium@v5.15.1`

#### Changes

- [DataGrid] Improve start edit UX (#5511) @oliviertassinari
- [DataGrid] Add `initialOpen` prop to `GridEditSingleSelectCell` to allow overriding default behavior on cell edit mode (#5645) @shapaaa
cherniavskii marked this conversation as resolved.
Show resolved Hide resolved
- [DataGrid] Forward `ref` to root element in `GridEditInputCell` (#5631) @Zenoo
- [DataGrid] Toggle open state when clicking on buttons in `GridToolbar` (#5503) @cherniavskii
cherniavskii marked this conversation as resolved.
Show resolved Hide resolved
- [DataGrid] Improve German (de-DE) locale (#5586) @sebastianfrey
- [DataGrid] Improve Korean (ko-KR) locale (#5668) @Einere
- [DataGrid] Complete Italian (it-IT) locale (#5487) @mamodev

cherniavskii marked this conversation as resolved.
Show resolved Hide resolved
### Docs

- [docs] New location for the legal content (#5595) @oliviertassinari
- [docs] Update description of `maxDateTime` prop (#5639) @jurecuhalev

### Core

- [core] Drop usage of `GRID_EXPERIMENTAL_ENABLED` env variable (#5669) @ar7casper
- [core] Isolate asset loading under /x/ (#5594) @oliviertassinari
- [core] Upgrade node to v14 (#4999) @cherniavskii

## 5.15.0

_Jul 29, 2022_
Expand All @@ -13,7 +47,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss

Premium users can now aggregate data in the grid.
Extract information like sum, average, count, and others with a couple of clicks.

https://user-images.githubusercontent.com/45398769/181581503-77cc412e-9d9e-4de1-8bc3-c3bccc54cdaa.mp4

To enable this feature, add `experimentalFeatures={{ aggregation: true }}`.
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "5.15.0",
"version": "5.15.1",
"private": true,
"author": "MUI Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "5.15.0"
"version": "5.15.1"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.15.0",
"version": "5.15.1",
"private": true,
"scripts": {
"start": "yarn docs:dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-material-ui",
"version": "5.15.0",
"version": "5.15.1",
"private": true,
"description": "Custom eslint rules for MUI X.",
"main": "src/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/grid/x-data-grid-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/x-data-grid-generator",
"version": "5.15.0",
"version": "5.15.1",
"description": "Generate fake data for demo purposes only.",
"author": "MUI Team",
"main": "src/index.ts",
Expand Down Expand Up @@ -32,7 +32,7 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@mui/base": "^5.0.0-alpha.80",
"@mui/x-data-grid-premium": "5.15.0",
"@mui/x-data-grid-premium": "5.15.1",
"chance": "^1.1.8",
"clsx": "^1.2.1",
"lru-cache": "^7.13.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/grid/x-data-grid-premium/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/x-data-grid-premium",
"version": "5.15.0",
"version": "5.15.1",
"description": "The Premium plan edition of the data grid component (MUI X).",
"author": "MUI Team",
"main": "src/index.ts",
Expand Down Expand Up @@ -44,8 +44,8 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@mui/utils": "^5.4.1",
"@mui/x-data-grid": "5.15.0",
"@mui/x-data-grid-pro": "5.15.0",
"@mui/x-data-grid": "5.15.1",
"@mui/x-data-grid-pro": "5.15.1",
"@mui/x-license-pro": "5.15.0",
"@types/format-util": "^1.0.2",
"clsx": "^1.2.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/grid/x-data-grid-pro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/x-data-grid-pro",
"version": "5.15.0",
"version": "5.15.1",
"description": "The Pro plan edition of the data grid component (MUI X).",
"author": "MUI Team",
"main": "src/index.ts",
Expand Down Expand Up @@ -44,7 +44,7 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@mui/utils": "^5.4.1",
"@mui/x-data-grid": "5.15.0",
"@mui/x-data-grid": "5.15.1",
"@mui/x-license-pro": "5.15.0",
"@types/format-util": "^1.0.2",
"clsx": "^1.2.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/x-data-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/x-data-grid",
"version": "5.15.0",
"version": "5.15.1",
"description": "The community edition of the data grid component (MUI X).",
"author": "MUI Team",
"main": "src/index.ts",
Expand Down
10 changes: 5 additions & 5 deletions packages/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "storybook",
"version": "5.15.0",
"version": "5.15.1",
"description": "Storybook components",
"author": "MUI Team",
"private": true,
Expand All @@ -18,10 +18,10 @@
"dependencies": {
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"@mui/x-data-grid": "5.15.0",
"@mui/x-data-grid-generator": "5.15.0",
"@mui/x-data-grid-premium": "5.15.0",
"@mui/x-data-grid-pro": "5.15.0",
"@mui/x-data-grid": "5.15.1",
"@mui/x-data-grid-generator": "5.15.1",
"@mui/x-data-grid-premium": "5.15.1",
"@mui/x-data-grid-pro": "5.15.1",
"@mui/x-license-pro": "5.15.0",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
Expand Down