WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit b60f7d9

Browse files
[release] v0.10.0 (#4453)
1 parent dc23cf1 commit b60f7d9

File tree

16 files changed

+68
-15
lines changed

16 files changed

+68
-15
lines changed

CHANGELOG.md

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

3+
## 0.10.0
4+
5+
<!-- generated comparing v0.9.0..master -->
6+
7+
_Nov 23, 2024_
8+
9+
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
10+
11+
- Upgrade to Next.js 15
12+
- Add Passkey and Magic Link support inside the CLI
13+
- Add ability to override labels on `SignInPage`
14+
- Multiple bug-fixes and small improvements
15+
- Add a functional dashboard template to the docs!
16+
17+
### `@toolpad/core`
18+
19+
- Fix SignInButton UI (#4421) @bharatkashyap
20+
- Bump Next.js to 15.0.3 (#4321) @hollandjake
21+
- Add branding prop as override (#4442) @apedroferreira
22+
- Fix app bar items alignment (#4437) @bharatkashyap
23+
- Add width containment on flex container (#4414) @bharatkashyap
24+
- SignInPage UI tweaks (#4451) @bharatkashyap
25+
- Allow slotProps to override all labels (#4418) @bharatkashyap
26+
- Fix missing "Remember Me" state from `formData` (#4404) @bharatkashyap
27+
28+
### `create-toolpad-app`
29+
30+
- Support Magic Link and Passkeys in CLI (#4339) @bharatkashyap
31+
- Skip path validation for examples (#4434) @bharatkashyap
32+
33+
### Docs
34+
35+
- Add a new section for Integration (#4411) @prakhargupta1
36+
- Update examples to Next.js 15 (#4435) @bharatkashyap
37+
- Add Templates listing to examples page (#4449) @bharatkashyap
38+
- Host themed template under mui.com (#4415) @bharatkashyap
39+
- Fix 301 in the docs (3ab3b4e) @oliviertassinari
40+
- Fix 301 redirection in docs (2404ac6) @oliviertassinari
41+
- Fix missed Vale error (#4419) @bharatkashyap
42+
- Update SignInPage docs and themed example (#4410) @bharatkashyap
43+
- Correct version on themed example (#4405) @bharatkashyap
44+
- Fix 404 link (#4401) @oliviertassinari
45+
46+
### Core
47+
48+
- Update lockfile (#4386) @apedroferreira
49+
- Simplify OpenSSF badge (b61a32c) @oliviertassinari
50+
- Update to match with the rest of the codebase (5ceb4f0) @oliviertassinari
51+
- Remove dead style contain code (#4402) @oliviertassinari
52+
- Improve bug template for reproductions (a84ba1e) @oliviertassinari
53+
54+
All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @hollandjake, @oliviertassinari, @prakhargupta1
55+
356
## v0.9.0
457

558
<!-- generated comparing v0.8.0..master -->

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.9.0",
3+
"version": "0.10.0",
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
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"npmClient": "pnpm"
55
}

packages/create-toolpad-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-toolpad-app",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"keywords": [
55
"react",
66
"toolpad",

packages/create-toolpad-app/src/templates/auth/nextjs-app/signInPage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const signInPage: Template = (options) => {
88
import { SignInPage } from '@toolpad/core/SignInPage';
99
${hasPasskeyProvider ? "import { signIn as webauthnSignIn } from 'next-auth/webauthn';" : ''}
1010
${hasPasskeyProvider && hasNodemailerProvider ? `import { getProviders } from "next-auth/react";` : `import { providerMap } from '../../../auth';`}
11-
import type { AuthProvider } from '@toolpad/core';}
11+
${hasPasskeyProvider ? `import type { AuthProvider } from '@toolpad/core';` : ''}
1212
${hasPasskeyProvider ? `import serverSignIn from './actions';` : `import signIn from './actions';`}
1313
1414
${

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

packages/toolpad-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/core",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"author": "Toolpad Team",
55
"description": "Dashboard framework powered by MUI.",
66
"main": "./node/index.js",

packages/toolpad-core/src/SignInPage/SignInPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ function SignInPage(props: SignInPageProps) {
529529
}}
530530
{...slotProps?.submitButton}
531531
>
532-
Sign in with {emailProvider?.name || 'Email'}
532+
Sign in with Email
533533
</LoadingButton>
534534
)}
535535
</Box>

packages/toolpad-studio-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/studio-components",
3-
"version": "0.9.0",
3+
"version": "0.10.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

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

0 commit comments

Comments
 (0)