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.8.0 #4278

Merged
merged 4 commits into from
Oct 19, 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
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,64 @@
# Changelog

## v0.8.0

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

_Oct 19, 2024_

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

- **BREAKING** Replaces the `menuItems` slot on the `Account` component with a more exhaustive `popoverContent` slot
- Adds a `sidebarFooter` slot and a `hideNavigation` prop to `DashboardLayout`
- Adds a React-Router integration example for `DashboardLayout`
- Increased customizability of the `Account` component using new slots `preview` and `popoverContent`
- Adds `passkey` support to the `SignInPage`, and an integration example to the docs
- Integrates Toolpad Core components in the Toolpad Studio runtime

### `@toolpad/core`

- Added page-container to all components page also reordered based on the side-nav (#4178) @prakhargupta1
- New slots and sub-components on the Account component (#4181) @bharatkashyap
- Fix `auth.ts` file generation (#4237) @bharatkashyap
- Add `passkey` provider support and example (#4063) @bharatkashyap
- Support collapsed mini-drawer by default (#4234) @apedroferreira
- Add `sidebarFooter` slot (#4236) @apedroferreira
- Add hideNavigation prop (#4231) @vikasgurjar
- Avoid React invalid props warning for PageContainer (#4189) @Janpot
- Remove leading slash from patterns for PageContainer (#4191) @Janpot
- Rename breadCrumbs to breadcrumbs (#4143) @Janpot
- Toolpad Core website was linking to Toolpad Studio examples (#4238) @prakhargupta1

### `@toolpad/studio`

- Integrate Toolpad Core in Toolpad Studio runtime (#4119) @apedroferreira

### Docs

- Improve tutorial example, docs, CLI installation (#4225) @bharatkashyap
- Docs/demo cleanup (#4268) @apedroferreira
- Full documentation for React Router integration (#4185) @apedroferreira
- Fix integration docs `_app.tsx` (#4239) @bharatkashyap
- Use production URL to demo production use @oliviertassinari
- Add placeholders for upcoming features (#4175) @prakhargupta1
- Update package screenshot in contributing.md (#4230) @prakhargupta1
- Fix input.label in SlotsSignIn (#4157) @djedu28

### Core

- Update README.md @apedroferreira
- Move vitest to dev dependency in `@toolpad/utils` (#4267) @Janpot
- Revert "Bump typescript to 5.6.2" (#4228) @Janpot
- Lock file maintenance (#4176) @renovate[bot]
- Remove custom playwright installation steps (#4154) @Janpot
- remove e identifier (#4152) @Janpot
- Enable React compiler eslint plugin (#4121) @Janpot
- Remove <-- from changelog (#4232) @oliviertassinari
- Make git repo easier to go to from IDE @oliviertassinari
- Increase the minimum Node.js version support to 14.0.0 (#4171) @oliviertassinari

All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @djedu28, @Janpot, @oliviertassinari, @prakhargupta1, @renovate[bot], @vikasgurjar

## v0.7.0

<!-- generated comparing v0.6.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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.0",
"keywords": [
"react",
"toolpad",
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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.0",
"author": "Toolpad Team",
"description": "Dashboard framework powered by MUI.",
"main": "./node/index.js",
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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.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.7.0",
"version": "0.8.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.0.0",
"version": "0.8.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.7.0"
"version": "0.8.0"
}
Loading