Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] v0.10.0 #4453

Merged
merged 5 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,58 @@
# Changelog

## 0.10.0

<!-- generated comparing v0.9.0..master -->

_Nov 23, 2024_

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

- Upgrade to Next.js 15
- Add Passkey and Magic Link support inside the CLI
- Add ability to override labels on `SignInPage`
- Multiple bug-fixes and small improvements
- Add a functional dashboard template to the docs!

### `@toolpad/core`

- Fix SignInButton UI (#4421) @bharatkashyap
- Bump Next.js to 15.0.3 (#4321) @hollandjake
- Add branding prop as override (#4442) @apedroferreira
- Fix app bar items alignment (#4437) @bharatkashyap
- Add width containment on flex container (#4414) @bharatkashyap
- SignInPage UI tweaks (#4451) @bharatkashyap
- Allow slotProps to override all labels (#4418) @bharatkashyap
- Fix missing "Remember Me" state from `formData` (#4404) @bharatkashyap

Check warning on line 26 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Google.FirstPerson] Avoid first-person pronouns such as 'Me'. Raw Output: {"message": "[Google.FirstPerson] Avoid first-person pronouns such as 'Me'.", "location": {"path": "CHANGELOG.md", "range": {"start": {"line": 26, "column": 25}}}, "severity": "WARNING"}

### `create-toolpad-app`

- Support Magic Link and Passkeys in CLI (#4339) @bharatkashyap
- Skip path validation for examples (#4434) @bharatkashyap

### Docs

- Add a new section for Integration (#4411) @prakhargupta1
- Update examples to Next.js 15 (#4435) @bharatkashyap
- Add Templates listing to examples page (#4449) @bharatkashyap
- Host themed template under mui.com (#4415) @bharatkashyap
- Fix 301 in the docs (3ab3b4e) @oliviertassinari
- Fix 301 redirection in docs (2404ac6) @oliviertassinari
- Fix missed Vale error (#4419) @bharatkashyap
- Update SignInPage docs and themed example (#4410) @bharatkashyap
- Correct version on themed example (#4405) @bharatkashyap
- Fix 404 link (#4401) @oliviertassinari

### Core

- Update lockfile (#4386) @apedroferreira
- Simplify OpenSSF badge (b61a32c) @oliviertassinari
- Update to match with the rest of the codebase (5ceb4f0) @oliviertassinari
- Remove dead style contain code (#4402) @oliviertassinari
- Improve bug template for reproductions (a84ba1e) @oliviertassinari

All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @hollandjake, @oliviertassinari, @prakhargupta1

## v0.9.0

<!-- generated comparing v0.8.0..master -->
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.9.0",
"version": "0.10.0",
"private": true,
"author": "MUI Toolpad",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.9.0",
"version": "0.10.0",
"npmClient": "pnpm"
}
2 changes: 1 addition & 1 deletion packages/create-toolpad-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-toolpad-app",
"version": "0.9.0",
"version": "0.10.0",
"keywords": [
"react",
"toolpad",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const signInPage: Template = (options) => {
import { SignInPage } from '@toolpad/core/SignInPage';
${hasPasskeyProvider ? "import { signIn as webauthnSignIn } from 'next-auth/webauthn';" : ''}
${hasPasskeyProvider && hasNodemailerProvider ? `import { getProviders } from "next-auth/react";` : `import { providerMap } from '../../../auth';`}
import type { AuthProvider } from '@toolpad/core';}
${hasPasskeyProvider ? `import type { AuthProvider } from '@toolpad/core';` : ''}
${hasPasskeyProvider ? `import serverSignIn from './actions';` : `import signIn from './actions';`}

${
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-material-ui",
"version": "0.9.0",
"version": "0.10.0",
"private": true,
"description": "Custom eslint rules for Material UI.",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toolpad/core",
"version": "0.9.0",
"version": "0.10.0",
"author": "Toolpad Team",
"description": "Dashboard framework powered by MUI.",
"main": "./node/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-core/src/SignInPage/SignInPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ function SignInPage(props: SignInPageProps) {
}}
{...slotProps?.submitButton}
>
Sign in with {emailProvider?.name || 'Email'}
Sign in with Email
</LoadingButton>
)}
</Box>
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-studio-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toolpad/studio-components",
"version": "0.9.0",
"version": "0.10.0",
"description": "Build MUI apps quickly",
"author": "MUI Toolpad team",
"homepage": "https://github.com/mui/toolpad#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-studio-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toolpad/studio-runtime",
"version": "0.9.0",
"version": "0.10.0",
"description": "Build MUI apps quickly",
"author": "MUI Toolpad team",
"homepage": "https://github.com/mui/toolpad#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toolpad/studio",
"version": "0.9.0",
"version": "0.10.0",
"license": "MIT",
"bin": {
"toolpad-studio": "./cli.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toolpad/utils",
"version": "0.9.0",
"version": "0.10.0",
"description": "Shared utilities used by Toolpad packages.",
"author": "MUI Toolpad team",
"homepage": "https://github.com/mui/toolpad#readme",
Expand Down
2 changes: 1 addition & 1 deletion playground/nextjs-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playground-nextjs-pages",
"version": "0.9.0",
"version": "0.10.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion playground/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playground-nextjs",
"version": "0.9.0",
"version": "0.10.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion playground/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground-vite",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"recharts": "alpha"
},
"type": "module",
"version": "0.9.0"
"version": "0.10.0"
}
Loading