Skip to content

Commit b4c0a52

Browse files
v0.1.53 (#3314)
1 parent 81aad64 commit b4c0a52

File tree

11 files changed

+40
-10
lines changed

11 files changed

+40
-10
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## v0.1.53
4+
5+
<!-- generated comparing v0.1.52..master -->
6+
7+
_Mar 22, 2024_
8+
9+
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Very early first version of @toolpad/core, fix examples, and documentation fixes and updates.
12+
13+
- &#8203;<!-- 16 -->Remove deprecated dependencies (#3313) @Janpot
14+
- &#8203;<!-- 15 -->Remove lerna isolation (#3312) @Janpot
15+
- &#8203;<!-- 14 -->Toolpad core project setup (#3291) @apedroferreira
16+
- &#8203;<!-- 13 -->isolate lerna in renovatebot @Janpot
17+
- &#8203;<!-- 12 -->Remove renovatebot vitest-fail-on-console exception @Janpot
18+
- &#8203;<!-- 11 -->Fix flaky authentication test: Wait for network idle in tests again (#3290) @apedroferreira
19+
- &#8203;<!-- 10 -->Fix flaky auth test with console error "Failed to fetch" (#3287) @apedroferreira
20+
- &#8203;<!-- 09 -->Update renovate.json @Janpot
21+
- &#8203;<!-- 08 -->[code-infra] Update renove.json (#3288) @Janpot
22+
- &#8203;<!-- 07 -->[core] Lower the frequency of no-response action runs (#3302) @michaldudak
23+
- &#8203;<!-- 06 -->[core] Use Circle CI context @oliviertassinari
24+
- &#8203;<!-- 05 -->[docs] Fix support link (#3306) @oliviertassinari
25+
- &#8203;<!-- 04 -->[docs] Link blog post from examples overview page and some minor edits. (#3299) @prakhargupta1
26+
- &#8203;<!-- 03 -->[docs] Fix Vale error @oliviertassinari
27+
- &#8203;<!-- 02 -->[docs] Fix some Vale errors (#3293) @oliviertassinari
28+
- &#8203;<!-- 01 -->[examples] @toolpad/studio@0.1.51 doesn't exist @oliviertassinari
29+
30+
All contributors of this release in alphabetical order: @apedroferreira, @Janpot, @michaldudak, @oliviertassinari, @prakhargupta1
31+
332
## v0.1.52
433

534
<!-- generated comparing v0.1.51..master -->

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"private": true,
55
"author": "MUI Toolpad",
66
"license": "MIT",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"npmClient": "pnpm"
55
}

packages/create-toolpad-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-toolpad-app",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"keywords": [
55
"react",
66
"toolpad",

packages/eslint-plugin-material-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-material-ui",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"private": true,
55
"description": "Custom eslint rules for MUI.",
66
"main": "src/index.js",

packages/toolpad-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/core",
3-
"version": "0.0.1",
3+
"version": "0.1.53",
44
"keywords": [
55
"toolpad"
66
],

packages/toolpad-studio-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/studio-components",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",

packages/toolpad-studio-runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/studio-runtime",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",

packages/toolpad-studio/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/studio",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"license": "MIT",
55
"bin": {
66
"toolpad-studio": "./cli.mjs"

packages/toolpad-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/utils",
3-
"version": "0.1.52",
3+
"version": "0.1.53",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",

test/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"react": "18.2.0",
1212
"react-dom": "18.2.0"
1313
},
14-
"type": "module"
14+
"type": "module",
15+
"version": "0.1.53"
1516
}

0 commit comments

Comments
 (0)