diff --git a/CHANGELOG.md b/CHANGELOG.md index 96849251bc0..9851013471f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,88 @@ # Changelog +## v0.1.54 + + + +_Apr 12, 2024_ + +A big thanks to the 8 contributors who made this release possible. Here are some highlights ✨: + +Adds groupable and aggregable columns for the Premium data grid, a faster editor for Toolpad Studio, and introduces Toolpad Core under `--core` on the CLI! Plus a new custom components example, multiple documentation updates and bug fixes. + +- ​Update renovate.json @Janpot +- ​Update renovate.json @Janpot +- ​Add RFC to readme (#3353) @prakhargupta1 +- ​Move TreeView icons into the theme (#3337) @Janpot +- ​Lock file maintenance (#3351) @renovate[bot] +- ​Fix screenshot flakeyness (#3341) @Janpot +- ​Add rename, duplicate and delete for Page Hierarchy (#3336) @asif-choudhari +- ​Upgrade vite (#3340) @Janpot +- ​Add custom component example (#3329) @Janpot +- ​Fix dedupe check (#3330) @Janpot +- ​Fix crash when components folder contains a tsconfig (#3327) @Janpot +- ​Allow OPTIONS method in HTTP queries (#3308) @Janpot +- ​Remove fallback modules (#3326) @Janpot +- ​Update Node.js in circleci (#3324) @Janpot +- ​Update renovate.json @Janpot +- ​Update renovate.json @Janpot +- ​Fix typo : use npm instead of pnpm in instruction (#3323) @HazzazBinFaiz +- ​[cli] Introduce `--core` (#3304) @bharatkashyap +- ​[code-infra] Use @mui/docs from npm (#3301) @michaldudak +- ​[code-infra] Fix prettier in scripts (#3382) @Janpot +- ​[core] Move Monaco setup outside of the library (#3206) @Janpot +- ​[core] Make inline canvas the default (#3370) @Janpot +- ​[core] Remove deprecated usage of LicenseInfo (#3372) @Janpot +- ​[core] Continue rename of Toolpad @oliviertassinari +- ​[DataGrid] Add support for groupable and aggregable columns (#3369) @Janpot +- ​[docs] Improve the writing on the "why Toolpad" doc (#3377) @Janpot +- ​[docs] Update delete-grid-row.md (#3354) @prakhargupta1 +- ​[docs] remove redirect to component reference (#3356) @Janpot +- ​[examples] Premium grid example (#3360) @Janpot +- ​[queries] Remove locally hosted demo data (#3374) @Janpot +- ​[ui] Add a chip to indicate pro features (#3358) @bharatkashyap + +All contributors of this release in alphabetical order: @asif-choudhari, @bharatkashyap, @HazzazBinFaiz, @Janpot, @michaldudak, @oliviertassinari, @prakhargupta1, @renovate[bot] + + + +_Apr 12, 2024_ + +A big thanks to the 8 contributors who made this release possible. Here are some highlights ✨: + +Adds groupable and aggregable columns for the Premium data grid, a faster editor for Toolpad Studio, and introduces Toolpad Core under `--core` on the CLI! Plus a new custom components example, multiple documentation updates and bug fixes. + +- ​Update renovate.json @Janpot +- ​Update renovate.json @Janpot +- ​Add RFC to readme (#3353) @prakhargupta1 +- ​Move TreeView icons into the theme (#3337) @Janpot +- ​Lock file maintenance (#3351) @renovate[bot] +- ​Fix screenshot flakeyness (#3341) @Janpot +- ​Add rename, duplicate and delete for Page Hierarchy (#3336) @asif-choudhari +- ​Upgrade vite (#3340) @Janpot +- ​Add custom component example (#3329) @Janpot +- ​Fix dedupe check (#3330) @Janpot +- ​Fix crash when components folder contains a tsconfig (#3327) @Janpot +- ​Allow OPTIONS method in HTTP queries (#3308) @Janpot +- ​Remove fallback modules (#3326) @Janpot +- ​Update Node.js in circleci (#3324) @Janpot +- ​Update renovate.json @Janpot +- ​Update renovate.json @Janpot +- ​Fix typo : use npm instead of pnpm in instruction (#3323) @HazzazBinFaiz +- ​[cli] Introduce `--core` (#3304) @bharatkashyap +- ​[code-infra] Use @mui/docs from npm (#3301) @michaldudak +- ​[code-infra] Fix prettier in scripts (#3382) @Janpot +- ​[core] Make inline canvas the default (#3370) @Janpot +- ​[core] Remove deprecated usage of LicenseInfo (#3372) @Janpot +- ​[core] Continue rename of Toolpad @oliviertassinari +- ​[DataGrid] Add support for groupable and aggregable columns (#3369) @Janpot +- ​[docs] Improve the writing on the "why Toolpad" doc (#3377) @Janpot +- ​[docs] Update delete-grid-row.md (#3354) @prakhargupta1 +- ​[docs] remove redirect to component reference (#3356) @Janpot +- ​[examples] Premium grid example (#3360) @Janpot +- ​[queries] Remove locally hosted demo data (#3374) @Janpot +- ​[ui] Add a chip to indicate pro features (#3358) @bharatkashyap + ## v0.1.53 diff --git a/docs/package.json b/docs/package.json index c22377f10df..85fffc884d3 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.1.53", + "version": "0.1.54", "private": true, "author": "MUI Toolpad", "license": "MIT", diff --git a/lerna.json b/lerna.json index 64f796a430d..9e14c26974d 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "0.1.53", + "version": "0.1.54", "npmClient": "pnpm" } diff --git a/packages/create-toolpad-app/package.json b/packages/create-toolpad-app/package.json index a0461a8111c..e9e8395a6b8 100644 --- a/packages/create-toolpad-app/package.json +++ b/packages/create-toolpad-app/package.json @@ -1,6 +1,6 @@ { "name": "create-toolpad-app", - "version": "0.1.53", + "version": "0.1.54", "keywords": [ "react", "toolpad", diff --git a/packages/eslint-plugin-material-ui/package.json b/packages/eslint-plugin-material-ui/package.json index e7eb2ba980b..6554f8fea18 100644 --- a/packages/eslint-plugin-material-ui/package.json +++ b/packages/eslint-plugin-material-ui/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-material-ui", - "version": "0.1.53", + "version": "0.1.54", "private": true, "description": "Custom eslint rules for MUI.", "main": "src/index.js", diff --git a/packages/toolpad-core/package.json b/packages/toolpad-core/package.json index 98b0d9f09e2..6b743325591 100644 --- a/packages/toolpad-core/package.json +++ b/packages/toolpad-core/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/core", - "version": "0.1.53", + "version": "0.1.54", "keywords": [ "toolpad" ], diff --git a/packages/toolpad-studio-components/package.json b/packages/toolpad-studio-components/package.json index e825e7a675c..6b6cfd57f89 100644 --- a/packages/toolpad-studio-components/package.json +++ b/packages/toolpad-studio-components/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/studio-components", - "version": "0.1.53", + "version": "0.1.54", "description": "Build MUI apps quickly", "author": "MUI Toolpad team", "homepage": "https://github.com/mui/mui-toolpad#readme", diff --git a/packages/toolpad-studio-runtime/package.json b/packages/toolpad-studio-runtime/package.json index 15ffc6a40dc..2149879954a 100644 --- a/packages/toolpad-studio-runtime/package.json +++ b/packages/toolpad-studio-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/studio-runtime", - "version": "0.1.53", + "version": "0.1.54", "description": "Build MUI apps quickly", "author": "MUI Toolpad team", "homepage": "https://github.com/mui/mui-toolpad#readme", diff --git a/packages/toolpad-studio/package.json b/packages/toolpad-studio/package.json index 00a16c8b053..513f45e8ce5 100644 --- a/packages/toolpad-studio/package.json +++ b/packages/toolpad-studio/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/studio", - "version": "0.1.53", + "version": "0.1.54", "license": "MIT", "bin": { "toolpad-studio": "./cli.mjs" diff --git a/packages/toolpad-utils/package.json b/packages/toolpad-utils/package.json index a3be617347a..b48cb1550e2 100644 --- a/packages/toolpad-utils/package.json +++ b/packages/toolpad-utils/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/utils", - "version": "0.1.53", + "version": "0.1.54", "description": "Build MUI apps quickly", "author": "MUI Toolpad team", "homepage": "https://github.com/mui/mui-toolpad#readme", diff --git a/test/package.json b/test/package.json index 9ed9ae809a3..58c70290afa 100644 --- a/test/package.json +++ b/test/package.json @@ -13,5 +13,5 @@ "react-dom": "18.2.0" }, "type": "module", - "version": "0.1.53" + "version": "0.1.54" }