Skip to content

Commit 647eee5

Browse files
authored
v0.1.1 (#1823)
1 parent c90148b commit 647eee5

File tree

10 files changed

+59
-24
lines changed

10 files changed

+59
-24
lines changed

CHANGELOG.md

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

3+
## 0.1.1
4+
5+
<!-- generated comparing v0.1.0..master -->
6+
7+
_Mar 28, 2023_
8+
9+
A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Mutate state in event handlers by assigning to properties of page elements. Make binding to DataGrid selection easier with improved typings. Big cleanup of dead code.
12+
13+
- &#8203;<!-- 28 -->Use node name in the canvas HUD (#1818) @Janpot
14+
- &#8203;<!-- 27 -->Allow mutating page state in event handlers (#1807) @Janpot
15+
- &#8203;<!-- 26 -->Improve UX around integration testing (#1808) @Janpot
16+
- &#8203;<!-- 25 -->Disable property control for controlled properties (#1809) @Janpot
17+
- &#8203;<!-- 24 -->Use next.js custom server (#1723) @Janpot
18+
- &#8203;<!-- 23 -->Remove postgres (#1799) @Janpot
19+
- &#8203;<!-- 22 -->Remove example and docker files (#1798) @Janpot
20+
- &#8203;<!-- 21 -->Clean up more obsolete things in the repo (#1797) @Janpot
21+
- &#8203;<!-- 20 -->Fix errors when running the project the first time (#1796) @Janpot
22+
- &#8203;<!-- 19 -->Fix imports from toolpad (#1793) @Janpot
23+
- &#8203;<!-- 18 -->Fix changing tabs closing query editor (#1784) @apedroferreira
24+
- &#8203;<!-- 17 -->Generate .gitignore on dev command (#1705) @apedroferreira
25+
- &#8203;<!-- 16 -->Improve dataGrid.selection types (#1790) @Janpot
26+
- &#8203;<!-- 15 -->Dependency cleanup (#1791) @Janpot
27+
- &#8203;<!-- 14 -->Fixes on the dev pipeline (#1789) @Janpot
28+
- &#8203;<!-- 13 -->Remove Prisma, isolated-vm and dead code (#1787) @Janpot
29+
- &#8203;<!-- 12 -->Update release instructions (#1788) @Janpot
30+
- &#8203;<!-- 11 -->Fix capitalization of elements (#1782) @Janpot
31+
- &#8203;<!-- 10 -->Update moduleresolution for core and components (#1780) @Janpot
32+
- &#8203;<!-- 09 -->Remove the localMode flag (#1768) @Janpot
33+
- &#8203;<!-- 08 -->Convert tests to local mode (#1718) @Janpot
34+
- &#8203;<!-- 07 -->Add docs contributing instructions (#1779) @Janpot
35+
- &#8203;<!-- 06 -->Allow falsy MySQL variable values (#1738) @evankennedy
36+
- &#8203;<!-- 05 -->Add Toolpad to cspell config for the workspace (#1767) @Janpot
37+
- &#8203;<!-- 04 -->Use latest version for examples (#1764) @Janpot
38+
- &#8203;<!-- 03 -->Rename dev13 script to dev (#1766) @Janpot
39+
- &#8203;<!-- 02 -->Small typo fix @prakhargupta1
40+
- &#8203;<!-- 01 -->Docs updates for the new direction (#1743) @Janpot
41+
42+
All contributors of this release in alphabetical order: @apedroferreira, @evankennedy, @Janpot, @prakhargupta1
43+
344
## 0.1.0
445

546
<!-- generated comparing v0.0.41..master -->

RELEASE.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,6 @@
4747
yarn release:build
4848
```
4949
50-
1. Create a new version
51-
52-
```sh
53-
yarn release:version
54-
```
55-
5650
1. Publish to `npm`
5751
5852
```sh

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"private": true,
55
"author": "MUI Toolpad",
66
"license": "MIT",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.0",
2+
"version": "0.1.1",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

packages/create-toolpad-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-toolpad-app",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"keywords": [
55
"react",
66
"toolpad",
@@ -36,5 +36,5 @@
3636
"devDependencies": {
3737
"@types/inquirer": "^9.0.3"
3838
},
39-
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
39+
"gitHead": "c21fac688cfd8270cf36126d215698ae989ff899"
4040
}

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.0",
3+
"version": "0.1.1",
44
"private": true,
55
"description": "Custom eslint rules for MUI.",
66
"main": "src/index.js",

packages/toolpad-app/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-app",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"license": "MIT",
55
"scripts": {
66
"build": "concurrently \"yarn:build:*\" && rimraf ./.next/cache",
@@ -39,8 +39,8 @@
3939
"@mui/lab": "^5.0.0-alpha.124",
4040
"@mui/material": "^5.11.14",
4141
"@mui/system": "^5.11.14",
42-
"@mui/toolpad-components": "^0.1.0",
43-
"@mui/toolpad-core": "^0.1.0",
42+
"@mui/toolpad-components": "^0.1.1",
43+
"@mui/toolpad-core": "^0.1.1",
4444
"@mui/types": "^7.2.3",
4545
"@mui/utils": "^5.11.13",
4646
"@mui/x-data-grid-generator": "^6.0.3",
@@ -142,5 +142,5 @@
142142
"publishConfig": {
143143
"access": "public"
144144
},
145-
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
145+
"gitHead": "c21fac688cfd8270cf36126d215698ae989ff899"
146146
}

packages/toolpad-components/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-components",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -31,7 +31,7 @@
3131
},
3232
"dependencies": {
3333
"@mui/material": "^5.11.14",
34-
"@mui/toolpad-core": "^0.1.0",
34+
"@mui/toolpad-core": "^0.1.1",
3535
"@mui/x-data-grid-pro": "^6.0.3",
3636
"@mui/x-date-pickers": "^6.0.3",
3737
"dayjs": "^1.11.7",
@@ -46,5 +46,5 @@
4646
"publishConfig": {
4747
"access": "public"
4848
},
49-
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
49+
"gitHead": "c21fac688cfd8270cf36126d215698ae989ff899"
5050
}

packages/toolpad-core/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-core",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -65,5 +65,5 @@
6565
"publishConfig": {
6666
"access": "public"
6767
},
68-
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
68+
"gitHead": "c21fac688cfd8270cf36126d215698ae989ff899"
6969
}

packages/toolpad/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",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"license": "MIT",
55
"scripts": {
66
"cjsify": "mkdir -p ./dist/cjs && echo \"{ \\\"type\\\":\\\"commonjs\\\" }\" > ./dist/cjs/package.json",
@@ -34,8 +34,8 @@
3434
"toolpad": "./index.cjs"
3535
},
3636
"dependencies": {
37-
"@mui/toolpad-app": "^0.1.0",
38-
"@mui/toolpad-core": "^0.1.0",
37+
"@mui/toolpad-app": "^0.1.1",
38+
"@mui/toolpad-core": "^0.1.1",
3939
"arg": "^5.0.2",
4040
"concurrently": "^7.6.0",
4141
"dotenv": "^16.0.3",
@@ -44,5 +44,5 @@
4444
"engines": {
4545
"node": ">=16.17"
4646
},
47-
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
47+
"gitHead": "c21fac688cfd8270cf36126d215698ae989ff899"
4848
}

0 commit comments

Comments
 (0)