Skip to content

Commit 149e31b

Browse files
Merge branch 'master' into 43418-use-let-instead-of-var
2 parents cecd242 + b662c85 commit 149e31b

File tree

759 files changed

+3733
-3797
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

759 files changed

+3733
-3797
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
name: '`pnpm dedupe` was run?'
143143
command: |
144144
# #default-branch-switch
145-
if [[ $(git diff --name-status next | grep -E 'pnpm-workspace\.yaml|pnpm-lock.yaml|package\.json') == "" ]];
145+
if [[ $(git diff --name-status master | grep -E 'pnpm-workspace\.yaml|pnpm-lock.yaml|package\.json') == "" ]];
146146
then
147147
echo "No changes to dependencies detected. Skipping..."
148148
else

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/.git
22
/.yarn
3-
/benchmark/**/dist
43
/coverage
54
/docs/export
65
/docs/pages/playground/
@@ -29,6 +28,7 @@
2928
/tmp
3029
.next
3130
build
31+
dist
3232
node_modules
3333
.nyc_output
3434
pnpm-lock.yaml

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,11 @@ module.exports = {
223223
selector:
224224
'ImportDeclaration[source.value="react-dom/server"] ImportDefaultSpecifier, ImportDeclaration[source.value="react-dom/server"] ImportSpecifier',
225225
},
226+
{
227+
message:
228+
"The 'use client' pragma can't be used with export * in the same module. This is not supported by Next.js.",
229+
selector: 'ExpressionStatement[expression.value="use client"] ~ ExportAllDeclaration',
230+
},
226231
],
227232

228233
// We re-export default in many places, remove when https://github.com/airbnb/javascript/issues/2500 gets resolved

.github/workflows/closed-issue-message.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
add-comment:
1313
name: Add closing message
1414
if: github.event.issue.state_reason == 'completed'
15-
uses: mui/mui-public/.github/workflows/reusable/add-closing-message-to-issue.yml@04275a99fe10cee127ee417b8a872cfebc7d08e7
15+
uses: mui/mui-public/.github/workflows/add-closing-message-to-issue.yml@master
1616
permissions:
1717
contents: read
1818
issues: write

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2020
# Initializes the CodeQL tools for scanning.
2121
- name: Initialize CodeQL
22-
uses: github/codeql-action/init@429e1977040da7a23b6822b13c129cd1ba93dbb2 # v3.26.2
22+
uses: github/codeql-action/init@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5
2323
with:
2424
languages: typescript
2525
config-file: ./.github/codeql/codeql-config.yml
@@ -30,4 +30,4 @@ jobs:
3030
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
3131
# queries: security-extended,security-and-quality
3232
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@429e1977040da7a23b6822b13c129cd1ba93dbb2 # v3.26.2
33+
uses: github/codeql-action/analyze@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343

4444
# Upload the results to GitHub's code scanning dashboard.
4545
- name: Upload to code-scanning
46-
uses: github/codeql-action/upload-sarif@429e1977040da7a23b6822b13c129cd1ba93dbb2 # v3.26.2
46+
uses: github/codeql-action/upload-sarif@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5
4747
with:
4848
sarif_file: results.sarif

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
*.tsbuildinfo
1212
/.eslintcache
1313
/.nyc_output
14-
/benchmark/**/dist
1514
/coverage
1615
/docs/.env.local
1716
/docs/export
@@ -34,6 +33,7 @@
3433
# created by netlify dev (to perform local debug)
3534
.netlify
3635
build
36+
dist
3737
node_modules
3838
package-lock.json
3939
size-snapshot.json

CHANGELOG.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,89 @@
11
# [Versions](https://mui.com/versions/)
22

3+
## v6.0.1
4+
5+
<!-- generated comparing v6.0.0..master -->
6+
7+
_Aug 29, 2024_
8+
9+
A big thanks to the 12 contributors who made this release possible. It contains bug fixes and documentation improvements.
10+
11+
### `@mui/material@6.0.1`
12+
13+
- Attach default light color scheme when enabling CSS theme variables (#43493) @siriwatknp
14+
- [Skeleton] Apply the wave animation to the correct element (#43474) @mnajdova
15+
16+
### Docs
17+
18+
- [material-ui][Dialog] Update confirmation dialog description (#43488) @Michael-Hutchinson
19+
- Add Material UI v6 is out! to the notifications (#43448) @oliviertassinari
20+
- [material-ui] Dark scroll bars in templates (#43483) @aarongarciah
21+
- [material-ui] Add TemplateFrame to templates (#43406) @zanivan
22+
- [table] Make the data grid blend in (#43489) @oliviertassinari
23+
24+
### Core
25+
26+
- [blog] Update Toolpad Studio marketing page links in the blogs (#43407) @prakhargupta1
27+
- [blog] Add missing social card to the blog post (#43465) @siriwatknp
28+
- [code-infra] Fix typing issues with `@mui-internal/api-docs-builder` (#43498) @Janpot
29+
- [code-infra] Fix nextjs build cache (#43467) @JCQuintas
30+
- Remove `'use client'` from index files and useAutocomplete reexport (#41956) @DiegoAndai
31+
- Replace relative links to absolute ones in JSDocs (#43472) @alexfauquette
32+
- Upgrade babel runtime (#43243) @Janpot
33+
- [docs-infra] Skip shadow DOM regression test (#43500) @aarongarciah
34+
- [docs-infra] Fix use of process.env.DEPLOY_ENV (#43490) @oliviertassinari
35+
- [docs-infra] Add comment about removing optimizeFonts Next.js config (#43469) @aarongarciah
36+
- [examples] Use `latest` on all Material UI dependencies (#43494) @mnajdova
37+
- [infra] fix workflow path (#43464) @michelengelen
38+
39+
All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @DiegoAndai, @Janpot, @JCQuintas, @Michael-Hutchinson, @michelengelen, @mnajdova, @oliviertassinari, @prakhargupta1, @siriwatknp, @zanivan
40+
41+
## 6.0.0
42+
43+
<!-- generated comparing v6.0.0-rc.0..master -->
44+
45+
_Aug 27, 2024_
46+
47+
We are excited to announce the stable release of Material-UI v6 🎉, check out [the blog post](https://mui.com/blog/material-ui-v6-is-out/) to see all the updates.
48+
49+
### `@mui/material@6.0.0`
50+
51+
- Change React.ReactElement<any,any> type from any to unknown (#43358) @sai6855
52+
- [Pagination] Update `getItemAriaLabel` page param type (#43399) @sydneyjodon-wk
53+
- [Unstable_TrapFocus] Fix `getTabbable` function return type (#42237) @KalmarLorand
54+
55+
### `@mui/lab@6.0.0-beta.8`
56+
57+
- [button] Add missing customize points for span (#43436) @oliviertassinari
58+
59+
### Docs
60+
61+
- Fix broken links (#43144) @DiegoAndai
62+
- Updated mui-x roadmap links with the new project URL (#43444) @michelengelen
63+
- Update pnpm order, move to second (#42712) @ahmadnadeem6236
64+
- Fix CSS theme variables section (#43439) @siriwatknp
65+
- Add two Toolpad Core components to Material UI sidebar (#43391) @prakhargupta1
66+
- Fix licensingModel -> licenseModel @oliviertassinari
67+
- Fix Stack Overflow issue canned response @oliviertassinari
68+
- Avoid referencing MUI Core @oliviertassinari
69+
- Fix description of eslint-plugin-material-ui @oliviertassinari
70+
- [docs-infra] Polish reportBrokenLinks.js to support Base UI @oliviertassinari
71+
- [material-ui] Clarify RTL language support in localization guide (#41784) @bahmanworld
72+
- [material-ui] Refine templates theme selector (#43396) @zanivan
73+
74+
### Core
75+
76+
- Prepare for v6 stable release (#43454) @siriwatknp
77+
- [blog] Polish Upcoming changes to MUI X pricing in 2024 (#43438) @oliviertassinari
78+
- [blog] Add Material UI v6 stable release (#41932) @siriwatknp
79+
- [ci] Fix the release:changelog cmd (#43451) @mnajdova
80+
- [core] Allow `^6.0.0` for `@mui/` dependencies in `@mui/docs` (#43445) @LukasTy
81+
- [code-infra] Babel plugin to fully resolve imported paths (#43294) @Janpot
82+
- [infra] Add closing message workflow (#43450) @michelengelen
83+
- [website] Make beta chip consistent for Toolpad (#43392) @prakhargupta1
84+
85+
All contributors of this release in alphabetical order: @ahmadnadeem6236, @bahmanworld, @DiegoAndai, @Janpot, @KalmarLorand, @LukasTy, @michelengelen, @mnajdova, @oliviertassinari, @prakhargupta1, @sai6855, @siriwatknp, @sydneyjodon-wk, @zanivan
86+
387
## 6.0.0-rc.0
488

589
<!-- generated comparing v6.0.0-beta.6..next -->

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ git remote add upstream https://github.com/mui/material-ui.git
7272

7373
<!-- #default-branch-switch -->
7474

75-
3. Synchronize your local `next` branch with the upstream one:
75+
3. Synchronize your local `master` branch with the upstream one:
7676

7777
```bash
78-
git checkout next
79-
git pull upstream next
78+
git checkout master
79+
git pull upstream master
8080
```
8181

8282
4. Install the dependencies with pnpm (yarn or npm aren't supported):
@@ -146,7 +146,7 @@ Make sure the following is true:
146146

147147
<!-- #default-branch-switch -->
148148

149-
- The branch is targeted at `next` for ongoing development. All tests are passing. Code that lands in `next` must be compatible with the latest alpha/beta release. It may contain additional features but no breaking changes. We should be able to release a new minor version from the tip of `next` at any time.
149+
- The branch is targeted at `master` for ongoing development. All tests are passing. Code that lands in `master` must be compatible with the latest stable release. It may contain additional features but no breaking changes. We should be able to release a new minor version from the tip of `master` at any time.
150150
- If a feature is being added:
151151
- If the result was already achievable with the core library, you've explained why this feature needs to be added to the core.
152152
- If this is a common use case, you've added an example to the documentation.

apps/pigment-css-next-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"react-dom": "^18.3.1"
2424
},
2525
"devDependencies": {
26-
"@pigment-css/nextjs-plugin": "0.0.20",
26+
"@pigment-css/nextjs-plugin": "0.0.21",
2727
"@types/node": "^20.5.7",
28-
"@types/react": "^18.3.3",
28+
"@types/react": "^18.3.4",
2929
"@types/react-dom": "^18.3.0",
3030
"eslint": "^8.57.0",
3131
"typescript": "^5.5.4"

0 commit comments

Comments
 (0)