Skip to content

Commit c19d70e

Browse files
v0.1.31 (#2751)
1 parent 22c0e7e commit c19d70e

File tree

9 files changed

+49
-21
lines changed

9 files changed

+49
-21
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## 0.1.31
4+
5+
<!-- generated comparing v0.1.30..master -->
6+
7+
_Oct 4, 2023_
8+
9+
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Add component search box, fix editor failing to open, allow custom base path for Toolpad applications, improve automatic formatting of binding expressions.
12+
13+
- &#8203;<!-- 15 -->Fix Data grid invalid date handling (#2748) @Janpot
14+
- &#8203;<!-- 14 -->Fix editor failing to open (#2745) @Janpot
15+
- &#8203;<!-- 13 -->add a search box on the top (#2692) @JerryWu1234
16+
- &#8203;<!-- 12 -->Add global sidebar (#2730) @apedroferreira
17+
- &#8203;<!-- 11 -->format IDE code (#2674) @JerryWu1234
18+
- &#8203;<!-- 10 -->Move server files to the src folder (#2746) @Janpot
19+
- &#8203;<!-- 09 -->Update PULL_REQUEST_TEMPLATE.md @mbrookes
20+
- &#8203;<!-- 08 -->Support --base option to set a custom base path (#2740) @Janpot
21+
- &#8203;<!-- 07 -->Remove Chart as future component (#2738) @Janpot
22+
- &#8203;<!-- 06 -->Isolate the Toolpad router from Toolpad server (#2735) @Janpot
23+
- &#8203;<!-- 05 -->Correct types of component labels (#2736) @Janpot
24+
- &#8203;<!-- 04 -->Run required PR label action on synchronize event (#2734) @Janpot
25+
- &#8203;<!-- 03 -->Refactor cli interface (#2729) @Janpot
26+
- &#8203;<!-- 02 -->[docs] Fix docs title regression (#2739) @oliviertassinari
27+
- &#8203;<!-- 01 -->[docs] Header captialization with sidenav consistency @oliviertassinari
28+
29+
All contributors of this release in alphabetical order: @apedroferreira, @Janpot, @JerryWu1234, @mbrookes, @oliviertassinari
30+
331
## 0.1.30
432

533
<!-- generated comparing v0.1.29..master -->

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"private": true,
55
"author": "MUI Toolpad",
66
"license": "MIT",
@@ -30,7 +30,7 @@
3030
"@mui/material": "5.14.11",
3131
"@mui/monorepo": "https://github.com/mui/material-ui.git",
3232
"@mui/styles": "5.14.11",
33-
"@mui/toolpad": "0.1.30",
33+
"@mui/toolpad": "0.1.31",
3434
"@mui/utils": "5.14.11",
3535
"@trendmicro/react-interpolate": "0.5.5",
3636
"@types/lodash": "4.14.199",

lerna.json

Lines changed: 1 addition & 1 deletion
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.30",
3+
"version": "0.1.31",
44
"npmClient": "yarn"
55
}

packages/create-toolpad-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-toolpad-app",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"keywords": [
55
"react",
66
"toolpad",
@@ -30,7 +30,7 @@
3030
"node": ">=18"
3131
},
3232
"dependencies": {
33-
"@mui/toolpad-utils": "0.1.30",
33+
"@mui/toolpad-utils": "0.1.31",
3434
"chalk": "5.3.0",
3535
"execa": "8.0.1",
3636
"inquirer": "9.2.11",
@@ -45,5 +45,5 @@
4545
"@types/semver": "7.5.3",
4646
"@types/yargs": "17.0.26"
4747
},
48-
"gitHead": "4057a5514725c4eb709d3db9a0a3720f7901a4ea"
48+
"gitHead": "0186d8a811d0c172f193d8e961cd763d5024b71a"
4949
}

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

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

packages/toolpad-app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"license": "MIT",
55
"bin": {
66
"toolpad": "./cli.js"
@@ -51,9 +51,9 @@
5151
"@mui/lab": "5.0.0-alpha.146",
5252
"@mui/material": "5.14.11",
5353
"@mui/system": "5.14.11",
54-
"@mui/toolpad-components": "0.1.30",
55-
"@mui/toolpad-core": "0.1.30",
56-
"@mui/toolpad-utils": "0.1.30",
54+
"@mui/toolpad-components": "0.1.31",
55+
"@mui/toolpad-core": "0.1.31",
56+
"@mui/toolpad-utils": "0.1.31",
5757
"@mui/types": "7.2.4",
5858
"@mui/utils": "5.14.11",
5959
"@mui/x-data-grid": "6.16.0",
@@ -168,5 +168,5 @@
168168
"publishConfig": {
169169
"access": "public"
170170
},
171-
"gitHead": "4057a5514725c4eb709d3db9a0a3720f7901a4ea"
171+
"gitHead": "0186d8a811d0c172f193d8e961cd763d5024b71a"
172172
}

packages/toolpad-components/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-components",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -41,8 +41,8 @@
4141
"@mui/icons-material": "5.14.11",
4242
"@mui/lab": "5.0.0-alpha.146",
4343
"@mui/material": "5.14.11",
44-
"@mui/toolpad-core": "0.1.30",
45-
"@mui/toolpad-utils": "0.1.30",
44+
"@mui/toolpad-core": "0.1.31",
45+
"@mui/toolpad-utils": "0.1.31",
4646
"@mui/x-data-grid-pro": "6.16.0",
4747
"@mui/x-date-pickers": "6.16.0",
4848
"@mui/x-license-pro": "6.10.2",
@@ -62,5 +62,5 @@
6262
"publishConfig": {
6363
"access": "public"
6464
},
65-
"gitHead": "4057a5514725c4eb709d3db9a0a3720f7901a4ea"
65+
"gitHead": "0186d8a811d0c172f193d8e961cd763d5024b71a"
6666
}

packages/toolpad-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-core",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -41,7 +41,7 @@
4141
},
4242
"dependencies": {
4343
"@mui/material": "5.14.11",
44-
"@mui/toolpad-utils": "0.1.30",
44+
"@mui/toolpad-utils": "0.1.31",
4545
"@tanstack/react-query": "4.35.3",
4646
"@types/json-schema": "7.0.13",
4747
"cookie": "0.5.0",
@@ -68,5 +68,5 @@
6868
"publishConfig": {
6969
"access": "public"
7070
},
71-
"gitHead": "4057a5514725c4eb709d3db9a0a3720f7901a4ea"
71+
"gitHead": "0186d8a811d0c172f193d8e961cd763d5024b71a"
7272
}

packages/toolpad-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-utils",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -64,5 +64,5 @@
6464
"@types/react": "18.2.23",
6565
"@types/react-is": "18.2.2"
6666
},
67-
"gitHead": "4057a5514725c4eb709d3db9a0a3720f7901a4ea"
67+
"gitHead": "0186d8a811d0c172f193d8e961cd763d5024b71a"
6868
}

0 commit comments

Comments
 (0)