Skip to content

Commit 7cd1872

Browse files
authored
[release] v7.3.3 (#47006)
1 parent 987779c commit 7cd1872

File tree

23 files changed

+83
-22
lines changed

23 files changed

+83
-22
lines changed

CHANGELOG.md

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

3+
## 7.3.3
4+
5+
<!-- generated comparing v7.3.2..master -->
6+
7+
_Sep 30, 2025_
8+
9+
A big thanks to the 14 contributors who made this release possible.
10+
11+
12+
13+
- [Autocomplete] Sync highlighted index when popup is opened (#46894) @ZeeshanTamboli
14+
- [CircularProgress] Add track slot via enableTrackSlot (#46907) @monam2
15+
- [locale] Split locales into separate files (#46933) @christopherschroer
16+
- [Tabs] Fix not scrolling to correct tab after refresh when auto scrollable (#46869) @Jayesh-11
17+
18+
### Docs
19+
20+
- Add a guide for building extensible themes (#46896) @siriwatknp
21+
- Add v7 community course to resources page (#46944) @alelthomas
22+
- Improve performance of Default Theme Viewer (#46841) @sai6855
23+
- Fix typo in blog component MainContent (#46868) @jonyen
24+
- [Steppers] Replace TransitionProps with slotProps.transition (#46898) @sai6855
25+
26+
### Core
27+
28+
- [blog] Fix year in Punta Cana retreat post (#46943) @mapache-salvaje
29+
- [blog] Punta Cana retreat post (#46892) @mapache-salvaje
30+
- [code-infra] Publish from CI (#46851) @Janpot
31+
- [code-infra] Convert reportBrokenLink script to ts (#47002) @brijeshb42
32+
- [code-infra] Update module resolution for typescript@next (#46940) @Janpot
33+
- [code-infra] Run continuous releases during ci-check (#46948) @Janpot
34+
- [code-infra] Fix github actions check for continuous release (#46941) @Janpot
35+
- [code-infra] Address high/critical dependabot reports (#46937) @Janpot
36+
- [code-infra] Update ci.yml triggers (#46860) @Janpot
37+
- [code-infra] Exact match for renovate file name (#46916) @Janpot
38+
- [code-infra] Disable dependency update for `@material-ui/core` in codemod (#46899) @Janpot
39+
- [code-infra] Transpile `assertion-error` in karma tests (#46909) @Janpot
40+
- [code-infra] Disable browserstack on circleci cron jobs (#46905) @Janpot
41+
- [code-infra] Remove `copy-files` command usage from packages (#46902) @brijeshb42
42+
- [code-infra] Low-hanging ts conversion (#46903) @Janpot
43+
- [code-infra] Bring batch of changes from vitest PR (#46795) @Janpot
44+
- [code-infra] Remove dependency on `fs-extra` (#46755) @bernardobelchior
45+
- [code-infra] Make error code extraction independent of build (#46865) @brijeshb42
46+
- [docs-infra] Fix markdown generation script to find correct files (#46954) @siriwatknp
47+
- [docs-infra] Fix unnecessary redirects (#46951) @Janpot
48+
- [docs-infra] Remove `dangerouslySetInnerHTML` for ad description (#46936) @Janpot
49+
- [docs-infra] Display "View as Markdown" only on Material UI (#46861) @siriwatknp
50+
- [infra] Fix JSON files not being imported in TS demos (#47000) @bernardobelchior
51+
- [infra] Turn `literal | (string & {})` to `PropTypes.string` (#46934) @siriwatknp
52+
- [infra] Bump node.js version and make local usage strict (#46834) @brijeshb42
53+
- [infra] Remove "main" fields from publishable packages (#46856) @brijeshb42
54+
- [internal] Refactor `useForkRef` TS types: tighten `cleanupRef` and simplify ref typing (#46967) @wo-o29
55+
- [internal] Fix naming to match convention (2099cb0) @oliviertassinari
56+
- [internal] Fix naming to match convention (29aad62) @oliviertassinari
57+
- [internal] Use same option as other repositories (eabda77) @oliviertassinari
58+
- [internal] Normalize <meta name='viewport' (9d1922a) @oliviertassinari
59+
- [internal] Normalize charset='utf-8' (f1aae00) @oliviertassinari
60+
- [test] Split infinitive (0237fda) @oliviertassinari
61+
62+
All contributors of this release in alphabetical order: @alelthomas, @bernardobelchior, @brijeshb42, @christopherschroer, @Janpot, @Jayesh-11, @jonyen, @mapache-salvaje, @monam2, @oliviertassinari, @sai6855, @siriwatknp, @wo-o29, @ZeeshanTamboli
63+
364
## 7.3.2
465

566
<!-- generated comparing v7.3.1..master -->

docs/nextConfigDocsInfra.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function withDocsInfra(nextConfig) {
7575
experimental: {
7676
scrollRestoration: true,
7777
workerThreads: false,
78-
...(process.env.CI ? { cpus: 3 } : {}),
78+
...(process.env.CI ? { cpus: 2 } : {}),
7979
...nextConfig.experimental,
8080
},
8181
eslint: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/monorepo",
3-
"version": "7.3.2",
3+
"version": "7.3.3",
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",

packages-internal/docs-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-docs-utils",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"author": "MUI Team",
55
"description": "Utilities for MUI docs. This is an internal package not meant for general use.",
66
"main": "./build/index.js",

packages-internal/scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-scripts",
3-
"version": "2.0.13",
3+
"version": "2.0.14",
44
"author": "MUI Team",
55
"description": "Utilities supporting MUI libraries build and docs generation. This is an internal package not meant for general use.",
66
"exports": {

packages-internal/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-test-utils",
3-
"version": "2.0.13",
3+
"version": "2.0.14",
44
"author": "MUI Team",
55
"description": "Utilities for MUI tests. This is an internal package not meant for general use.",
66
"main": "./build/index.js",

packages/markdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-markdown",
3-
"version": "2.0.10",
3+
"version": "2.0.11",
44
"author": "MUI Team",
55
"description": "MUI markdown parser. This is an internal package not meant for general use.",
66
"main": "./index.mjs",

packages/mui-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/codemod",
3-
"version": "7.3.2",
3+
"version": "7.3.3",
44
"author": "MUI Team",
55
"description": "Codemod scripts for Material UI.",
66
"bin": "./codemod.js",

packages/mui-core-downloads-tracker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/core-downloads-tracker",
3-
"version": "7.3.2",
3+
"version": "7.3.3",
44
"author": "MUI Team",
55
"description": "Internal package to track number of downloads of our design system libraries.",
66
"files": [],

packages/mui-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/docs",
3-
"version": "7.3.2",
3+
"version": "7.3.3",
44
"author": "MUI Team",
55
"description": "MUI Docs - Documentation building blocks.",
66
"keywords": [

0 commit comments

Comments
 (0)