diff --git a/CHANGELOG.md b/CHANGELOG.md index df4846c12d7..96849251bc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## v0.1.53 + + + +_Mar 22, 2024_ + +A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨: + +Very early first version of @toolpad/core, fix examples, and documentation fixes and updates. + +- ​Remove deprecated dependencies (#3313) @Janpot +- ​Remove lerna isolation (#3312) @Janpot +- ​Toolpad core project setup (#3291) @apedroferreira +- ​isolate lerna in renovatebot @Janpot +- ​Remove renovatebot vitest-fail-on-console exception @Janpot +- ​Fix flaky authentication test: Wait for network idle in tests again (#3290) @apedroferreira +- ​Fix flaky auth test with console error "Failed to fetch" (#3287) @apedroferreira +- ​Update renovate.json @Janpot +- ​[code-infra] Update renove.json (#3288) @Janpot +- ​[core] Lower the frequency of no-response action runs (#3302) @michaldudak +- ​[core] Use Circle CI context @oliviertassinari +- ​[docs] Fix support link (#3306) @oliviertassinari +- ​[docs] Link blog post from examples overview page and some minor edits. (#3299) @prakhargupta1 +- ​[docs] Fix Vale error @oliviertassinari +- ​[docs] Fix some Vale errors (#3293) @oliviertassinari +- ​[examples] @toolpad/studio@0.1.51 doesn't exist @oliviertassinari + +All contributors of this release in alphabetical order: @apedroferreira, @Janpot, @michaldudak, @oliviertassinari, @prakhargupta1 + ## v0.1.52 diff --git a/docs/package.json b/docs/package.json index 23b6b495703..2144856c768 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.1.52", + "version": "0.1.53", "private": true, "author": "MUI Toolpad", "license": "MIT", diff --git a/lerna.json b/lerna.json index 19dab3171e8..64f796a430d 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "0.1.52", + "version": "0.1.53", "npmClient": "pnpm" } diff --git a/packages/create-toolpad-app/package.json b/packages/create-toolpad-app/package.json index 441d0d76251..bcc04ea0819 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.52", + "version": "0.1.53", "keywords": [ "react", "toolpad", diff --git a/packages/eslint-plugin-material-ui/package.json b/packages/eslint-plugin-material-ui/package.json index 7912b8875b5..2085a0d01ea 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.52", + "version": "0.1.53", "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 97aac032dfa..6711a1a9442 100644 --- a/packages/toolpad-core/package.json +++ b/packages/toolpad-core/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/core", - "version": "0.0.1", + "version": "0.1.53", "keywords": [ "toolpad" ], diff --git a/packages/toolpad-studio-components/package.json b/packages/toolpad-studio-components/package.json index dfbd88bdd6e..4a8796a3bc9 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.52", + "version": "0.1.53", "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 e14fd37f247..6179d97bf43 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.52", + "version": "0.1.53", "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 870af343c73..c9838d52b83 100644 --- a/packages/toolpad-studio/package.json +++ b/packages/toolpad-studio/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/studio", - "version": "0.1.52", + "version": "0.1.53", "license": "MIT", "bin": { "toolpad-studio": "./cli.mjs" diff --git a/packages/toolpad-utils/package.json b/packages/toolpad-utils/package.json index 72ccd95d140..f2c2a02156b 100644 --- a/packages/toolpad-utils/package.json +++ b/packages/toolpad-utils/package.json @@ -1,6 +1,6 @@ { "name": "@toolpad/utils", - "version": "0.1.52", + "version": "0.1.53", "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 e9a749e3f67..30c7172a15b 100644 --- a/test/package.json +++ b/test/package.json @@ -11,5 +11,6 @@ "react": "18.2.0", "react-dom": "18.2.0" }, - "type": "module" + "type": "module", + "version": "0.1.53" }