Skip to content

Commit 410e257

Browse files
v0.9.0 (#4385)
1 parent 210b668 commit 410e257

File tree

14 files changed

+66
-13
lines changed

14 files changed

+66
-13
lines changed

CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,58 @@
11
# Changelog
22

3+
## v0.9.0
4+
5+
<!-- generated comparing v0.8.0..master -->
6+
7+
_Nov 8, 2024_
8+
9+
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
10+
11+
- Support magic links in `SignInPage`
12+
- Support placing `Account` component in layout sidebar
13+
- Improved UI integration with custom themes
14+
- Improved customizability of `DashboardLayout` header actions
15+
- Improved documentation, especially around React Router integration
16+
17+
### `@toolpad/core`
18+
19+
- Support magic links in `SignInPage` (#4085) @bharatkashyap
20+
- Add `<Account />` in `sidebarFooter` (#4255) @bharatkashyap
21+
- Improve default UI and customisation ability (#4370) @bharatkashyap
22+
- Allow theme switcher override with slots (#4340) @apedroferreira
23+
- Left-align header title in mobile viewport (#4346) @apedroferreira
24+
- Allow changing the width of the drawer in dashboard layout (#4296) @garryxiao
25+
- Hide layout header and sidebar when printing (#4334) @apedroferreira
26+
27+
### Docs
28+
29+
- Add `SignInPage` Vite + React Router example (#4335) @bharatkashyap
30+
- Add custom user details example (#4227) @bharatkashyap
31+
- Update React Router example configs (#4303) @apedroferreira
32+
- Make Themed example run by default on Codesandbox (#4382) @bharatkashyap
33+
- Add component as `payload` example to `useDialogs` docs (#4375) @bharatkashyap
34+
- Add sandbox links for Toolpad Core examples (#4325) @bharatkashyap
35+
- Separate example folders for Core and Studio (#4301) @bharatkashyap
36+
- Clean up examples (#4383) @bharatkashyap
37+
- Fix more 404s on examples page (#4368) @prakhargupta1
38+
- Fix tool redirection (#4366) @oliviertassinari
39+
- Fix missing punctuation on descriptions (#4351) @oliviertassinari
40+
- Sentence case (10dde48) @oliviertassinari
41+
- Polish to match standard (#4344) @oliviertassinari
42+
- Move the description to match the other pages (#4348) @oliviertassinari
43+
- Adjust some casings and sections in component docs (#4306) @apedroferreira
44+
- Fix "breadcrumbs" spelling (#4297) @bharatkashyap
45+
- Minor changes (#4372) @prakhargupta1
46+
- Replace support link from Studio to Core in the GitHub Issue template (#4272) @prakhargupta1
47+
48+
### Core
49+
50+
- Fix Dependabot warning in Next.js example with passkey (#4371) @apedroferreira
51+
- Fix Vale errors (#4347) @oliviertassinari
52+
- Fix VS Code reference (0520057) @oliviertassinari
53+
54+
All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @garryxiao, @oliviertassinari, @prakhargupta1
55+
356
## v0.8.0
457

558
<!-- generated comparing v0.7.0..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.8.0",
3+
"version": "0.9.0",
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.8.0",
3+
"version": "0.9.0",
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.8.0",
3+
"version": "0.9.0",
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.8.0",
3+
"version": "0.9.0",
44
"private": true,
55
"description": "Custom eslint rules for Material UI.",
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.8.0",
3+
"version": "0.9.0",
44
"author": "Toolpad Team",
55
"description": "Dashboard framework powered by MUI.",
66
"main": "./node/index.js",

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.8.0",
3+
"version": "0.9.0",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/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.8.0",
3+
"version": "0.9.0",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/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.8.0",
3+
"version": "0.9.0",
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.8.0",
3+
"version": "0.9.0",
44
"description": "Shared utilities used by Toolpad packages.",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/toolpad#readme",

playground/nextjs-pages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playground-nextjs-pages",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

playground/nextjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playground-nextjs",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

playground/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "playground-vite",
33
"private": true,
4-
"version": "0.8.0",
4+
"version": "0.9.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"recharts": "alpha"
1515
},
1616
"type": "module",
17-
"version": "0.8.0"
17+
"version": "0.9.0"
1818
}

0 commit comments

Comments
 (0)