@mui/material-nextjs 6.0.0-dev.240424162023-9968b4889d → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,1014 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
- ## v6.0.0-alpha.4
3
+ ## 6.0.0
4
+
5
+ <!-- generated comparing v6.0.0-rc.0..master -->
6
+
7
+ _Aug 27, 2024_
8
+
9
+ 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.
10
+
11
+ ### `@mui/material@6.0.0`
12
+
13
+ - Change React.ReactElement<any,any> type from any to unknown (#43358) @sai6855
14
+ - [Pagination] Update `getItemAriaLabel` page param type (#43399) @sydneyjodon-wk
15
+ - [Unstable_TrapFocus] Fix `getTabbable` function return type (#42237) @KalmarLorand
16
+
17
+ ### `@mui/lab@6.0.0-beta.8`
18
+
19
+ - [button] Add missing customize points for span (#43436) @oliviertassinari
20
+
21
+ ### Docs
22
+
23
+ - Fix broken links (#43144) @DiegoAndai
24
+ - Updated mui-x roadmap links with the new project URL (#43444) @michelengelen
25
+ - Update pnpm order, move to second (#42712) @ahmadnadeem6236
26
+ - Fix CSS theme variables section (#43439) @siriwatknp
27
+ - Add two Toolpad Core components to Material UI sidebar (#43391) @prakhargupta1
28
+ - Fix licensingModel -> licenseModel @oliviertassinari
29
+ - Fix Stack Overflow issue canned response @oliviertassinari
30
+ - Avoid referencing MUI Core @oliviertassinari
31
+ - Fix description of eslint-plugin-material-ui @oliviertassinari
32
+ - [docs-infra] Polish reportBrokenLinks.js to support Base UI @oliviertassinari
33
+ - [material-ui] Clarify RTL language support in localization guide (#41784) @bahmanworld
34
+ - [material-ui] Refine templates theme selector (#43396) @zanivan
35
+
36
+ ### Core
37
+
38
+ - Prepare for v6 stable release (#43454) @siriwatknp
39
+ - [blog] Polish Upcoming changes to MUI X pricing in 2024 (#43438) @oliviertassinari
40
+ - [blog] Add Material UI v6 stable release (#41932) @siriwatknp
41
+ - [ci] Fix the release:changelog cmd (#43451) @mnajdova
42
+ - [core] Allow `^6.0.0` for `@mui/` dependencies in `@mui/docs` (#43445) @LukasTy
43
+ - [code-infra] Babel plugin to fully resolve imported paths (#43294) @Janpot
44
+ - [infra] Add closing message workflow (#43450) @michelengelen
45
+ - [website] Make beta chip consistent for Toolpad (#43392) @prakhargupta1
46
+
47
+ All contributors of this release in alphabetical order: @ahmadnadeem6236, @bahmanworld, @DiegoAndai, @Janpot, @KalmarLorand, @LukasTy, @michelengelen, @mnajdova, @oliviertassinari, @prakhargupta1, @sai6855, @siriwatknp, @sydneyjodon-wk, @zanivan
48
+
49
+ ## 6.0.0-rc.0
50
+
51
+ <!-- generated comparing v6.0.0-beta.6..next -->
52
+
53
+ _Aug 22, 2024_
54
+
55
+ A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
56
+
57
+ - ⚡ Rendering performance improvements
58
+
59
+ ### `@mui/material@6.0.0-rc.0`
60
+
61
+ #### Breaking changes
62
+
63
+ - [Box] Remove `component` from `BoxOwnProps` (#43384) @DiegoAndai
64
+
65
+ The `component` prop has been removed from the `BoxOwnProps` as it is already included in the `Box` type.
66
+ This might affect your code if you are using the `styled` function with the `Box` component.
67
+ If this is the case, use a `div` element instead of `Box`:
68
+
69
+ ```diff
70
+ -const StyledBox = styled(Box)`
71
+ +const StyledDiv = styled('div')`
72
+ color: white;
73
+ `;
74
+ ```
75
+
76
+ This yields the same end result.
77
+ If this doesn't work for you, you can also cast the `styled` returned value to `typeof Box`:
78
+
79
+ ```diff
80
+ const StyledBox = styled(Box)`
81
+ color: white;
82
+ -`;
83
+ +` as typeof Box;
84
+ ```
85
+
86
+ #### Changes
87
+
88
+ - [ListItem] Remove unnecessary TypeScript test (#43359) @sai6855
89
+ - Skip generating CSS variables for a custom spacing function (#43389) @siriwatknp
90
+ - Revert visual regressions from #42283 (#43364) @ZeeshanTamboli
91
+
92
+ ### `@mui/codemod@6.0.0-rc.0`
93
+
94
+ - Add Grid2 to removeSystemProps codemod (#43302) @DiegoAndai
95
+
96
+ ### Docs
97
+
98
+ - [blog] Add video to the Pigment CSS blog post (#42500) @oliviertassinari
99
+ - Fix broken link to milestones (#43379) @oliviertassinari
100
+ - Update CSS theme variables related content (#43130) @siriwatknp
101
+ - Fix link to createTheme source (#43332) @oliviertassinari
102
+ - Add cache to avoid unnecessary jsx dynamic import and theme getting (#43139) @Vxee
103
+ - Fix broken link to Next.js docs @oliviertassinari
104
+ - [material-ui] Revamp `Composition` guide (#43266) @ZeeshanTamboli
105
+ - [material-ui][Menu] Replace `PaperProps` with `slotProps.paper` in demos (#43354) @sai6855
106
+
107
+ ### Core
108
+
109
+ - [code-infra] Change docs:start script to serve the exports folder (#43375) @Janpot
110
+ - [core] Fix typescript-next CI workflow (#43394) @aarongarciah
111
+ - [core] Run `@mui/system` TypeScript module augmentation tests in CI (#43386) @ZeeshanTamboli
112
+ - [core] Enable manage-package-manager-versions pnpm flag (#43366) @aarongarciah
113
+ - [core] Replace `indexOf` with `includes` (#42883) @k-rajat19
114
+ - [docs-infra] Add GitHub source link to components (#43228) @Jay-Karia
115
+ - [docs-infra] Fix copy shortcut (#43361) @oliviertassinari
116
+ - [perf] Remove theme/styling allocations (#43372) @romgrk
117
+ - [perf] Improve `composeClasses` (#43363) @romgrk
118
+ - [perf] Remove system allocations (#43306) @romgrk
119
+
120
+ All contributors of this release in alphabetical order: @aarongarciah, @DiegoAndai, @Janpot, @Jay-Karia, @k-rajat19, @oliviertassinari, @rluzists1, @romgrk, @sai6855, @siriwatknp, @Vxee, @ZeeshanTamboli
121
+
122
+ ## 6.0.0-beta.6
123
+
124
+ <!-- generated comparing v6.0.0-beta.5..next -->
125
+
126
+ _Aug 16, 2024_
127
+
128
+ A big thanks to the 18 contributors who made this release possible.
129
+
130
+ ### `@mui/material@6.0.0-beta.6`
131
+
132
+ - [Autocomplete] Improve the `options` prop description (#41591) @pluvio72
133
+ - [Autocomplete] Remove autocomplete warning regarding value not equal to option (#43314) @ZeeshanTamboli
134
+ - [Divider] Add aria-orientation (#43241) @aarongarciah
135
+ - [IconButton] Fix hover background color behavior (#43271) @mnajdova
136
+ - [TypeScript] Refactor types so they're compatible with upcoming React 19 (#43276) @DiegoAndai
137
+ - [Typography] Replace dot notation color value to work with Pigment CSS (#43288) @siriwatknp
138
+ - [pigment-css] Fix `getSelector` prefers-color-scheme to be object (#43237) @siriwatknp
139
+ - Remove `display="block"` usage to work with Pigment CSS (#43307) @siriwatknp
140
+
141
+ ### `@mui/codemod@6.0.0-beta.6`
142
+
143
+ - [codemod] Skip sx spread transformation (#43291) @siriwatknp
144
+
145
+ ### `@mui/styles@6.0.0-beta.6`
146
+
147
+ - [styles] Fix issues reported by eslint-plugin-react-compiler (#43118) @jlewins
148
+
149
+ ### Docs
150
+
151
+ - [material-ui] Audit and copyedit the v6 migration doc (#43073) @samuelsycamore
152
+ - [material-ui] Fix Material Icon search lag and other improvements (#41330) @anle9650
153
+ - [material-ui][Popover] Fix description and title of hover interaction section (#43290) @ZeeshanTamboli
154
+ - [material-ui] Refine and unify custom template themes (#43220) @zanivan
155
+ - [joy-ui] Fix data grid redirection (#43247) @sai6855
156
+ - [mui-system] Add import statement in docs (#43223) @sai6855
157
+ - Update babel config (#43286) @romgrk
158
+ - Fix outdated references to Materal UI version (#43321) @oliviertassinari
159
+ - Polish migration git diff experience @oliviertassinari
160
+ - Update LTS to match format (#43212) @oliviertassinari
161
+ - Fix Pigment CSS migration content (#43217) @siriwatknp
162
+
163
+ ### Core
164
+
165
+ - [code-infra] Remove `userEvent` export from `@mui/internal-test-utils` (#43313) @LukasTy
166
+ - [code-infra] Remove unnecessary alias (#43320) @Janpot
167
+ - [code-infra] Fix utils bundle size entrypoint (#43304) @Janpot
168
+ - [core] missing and incorrect scripts (#43209) @Jay-Karia
169
+ - [core] Set Node 14 as minimum version in all browserslist envs (#43326) @aarongarciah
170
+ - [core] Add React 19 as peer dependency (#43216) @aarongarciah
171
+ - [core] Pin `eslint-plugin-jsx-a11y` version to 6.7.1 (#43292) @Janpot
172
+ - [core] Update supported Node.js version to 14 (#43315) @Janpot
173
+ - [core] Use fs instead of fs-extra in script utils (#43234) @DiegoAndai
174
+ - [core] Refactor system theme props (#43120) @romgrk
175
+ - [docs-infra] Fix some TS issues for X docs (#43285) @Janpot
176
+ - [docs-infra] Move API pages to TS (#43199) @alexfauquette
177
+ - [docs-infra] Fix broken sandboxes with relative module imports (#42767) @bharatkashyap
178
+ - [docs-infra] Simplify API sections typing (#43128) @alexfauquette
179
+ - [examples] Fix import (#43316) @aarongarciah
180
+ - [examples] Add material-ui-pigment-css for Next.js and Vite (#43065) @siriwatknp
181
+ - [examples] Replace wrong import with `@mui/material/styles` (#43236) @siriwatknp
182
+ - [useMediaQuery] Adapt test implementation for React 19 (#43269) @aarongarciah
183
+ - [test] Update `matchMedia` mocks (#43240) @cherniavskii
184
+ - [test] Remove unnecessary ref param (#43282) @aarongarciah
185
+ - [website] Update showcase to include Toolpad Core (#43226) @bharatkashyap
186
+ - [website] Replace React.MutableRefObject with React.RefObject (#43284) @aarongarciah
187
+
188
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @anle9650, @bharatkashyap, @cherniavskii, @DiegoAndai, @Janpot, @Jay-Karia, @jlewins, @mnajdova, @oliviertassinari, @pluvio72, @renovate[bot], @romgrk, @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
189
+
190
+ ## 6.0.0-beta.5
191
+
192
+ <!-- generated comparing v6.0.0-beta.4..next -->
193
+
194
+ _Aug 8, 2024_
195
+
196
+ A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
197
+
198
+ - Remove some deprecated props from the ListItem component (#41566) @thathva
199
+ - Bumped the minimum supported version of TypeScript (#43116) @mnajdova
200
+
201
+ ### `@mui/material@6.0.0-beta.5`
202
+
203
+ #### BREAKING CHANGES
204
+
205
+ - &#8203;<!-- 14 -->[material-ui][ListItem] Removing deprecated props (#41566) @thathva
206
+
207
+ `ListItem`'s props `autoFocus`, `button`, `disabled`, and `selected`, deprecated in v5, have been removed. To replace the `button` prop, use `ListItemButton` instead. The other removed props are available in the `ListItemButton` component as well.
208
+
209
+ ```diff
210
+ -<ListItem button />
211
+ +<ListItemButton />
212
+ ```
213
+
214
+ Use this codemod to migrate your project to the `ListItemButton` component:
215
+
216
+ ```bash
217
+ npx @mui/codemod@next v6.0.0/list-item-button-prop <path/to/folder>
218
+ ```
219
+
220
+ As the `ListItem` no longer supports these props, the class names related to these props were removed. You should use the `listItemButtonClasses` object instead.
221
+
222
+ ```diff
223
+ -import { listItemClasses } from '@mui/material/ListItem';
224
+ +import { listItemButtonClasses } from '@mui/material/ListItemButton';
225
+
226
+ - listItemClasses.button
227
+ + listItemButtonClasses.root
228
+
229
+ - listItemClasses.focusVisible
230
+ + listItemButtonClasses.focusVisible
231
+
232
+ - listItemClasses.disabled
233
+ + listItemButtonClasses.disabled
234
+
235
+ - listItemClasses.selected
236
+ + listItemButtonClasses.selected
237
+ ```
238
+
239
+ #### Changes
240
+
241
+ - &#8203;<!-- 36 -->[material-ui][Autocomplete] Fix default value for multiple mode getting redefined with React 19 (#43189) @DiegoAndai
242
+ - &#8203;<!-- 12 -->[material-ui] Merge `CssVarsProvider` into `ThemeProvider` (#43115) @siriwatknp
243
+ - &#8203;<!-- 11 -->[material-ui] Make tests compatible with React 19 (#43155) @DiegoAndai
244
+ - &#8203;<!-- 10 -->[material-ui] Refine Blog template (#42825) @zanivan
245
+ - &#8203;<!-- 09 -->[material-ui] Element ref access React 19 compatibility (#43132) @DiegoAndai
246
+ - &#8203;<!-- 08 -->[material-ui][mui-system] Add support for version runtime checks (#43190) @DiegoAndai
247
+
248
+ ### `@mui/material-pigment-css@6.0.0-beta.5`
249
+
250
+ - &#8203;<!-- 13 -->Reexport Pigment CSS from index file (#43218) @siriwatknp
251
+
252
+ ### `@mui/codemod@6.0.0-beta.5`
253
+
254
+ - &#8203;<!-- 31 -->Fix codemod crash on MuiDivider property (#43125) @Janpot
255
+
256
+ ### Docs
257
+
258
+ - &#8203;<!-- 37 -->Fix resolution of @mui/material-ui in docs (#43108) @Janpot
259
+ - &#8203;<!-- 25 -->Refine and polish out Templates page (#43131) @zanivan
260
+ - &#8203;<!-- 24 -->Fix the link test script (#43195) @alexfauquette
261
+ - &#8203;<!-- 23 -->Fix alpha usage (#43194) @siriwatknp
262
+ - &#8203;<!-- 22 -->Link Toolpad Core components from Material UI docs (#43036) @prakhargupta1
263
+ - &#8203;<!-- 21 -->Link Toolpad core docs to the docs menu (#42952) @prakhargupta1
264
+ - &#8203;<!-- 20 -->Polish migration guide (#43021) @oliviertassinari
265
+ - &#8203;<!-- 19 -->Fix 404 link to migration pages @oliviertassinari
266
+ - &#8203;<!-- 18 -->Support inject dynamic theme (#42879) @Vxee
267
+ - &#8203;<!-- 17 -->Fix 301 @oliviertassinari
268
+ - &#8203;<!-- 35 -->[blog] Announcing pricing changes Sep 2024 (#43061) @joserodolfofreitas
269
+ - &#8203;<!-- 15 -->[material-ui][TextField] Remove mentions of `redux-form` from TextField documentation (#43176) @AbdurRahman2004
270
+
271
+ ### Core
272
+
273
+ - &#8203;<!-- 34 -->[code-infra] Fix `@mui/internal-test-utils` `screen` export type (#43150) @LukasTy
274
+ - &#8203;<!-- 33 -->[code-infra] Do not look for changes with previous commit when releasing a canary version (#43129) @michaldudak
275
+ - &#8203;<!-- 32 -->[code-infra] Automate canary releases (#43066) @michaldudak
276
+ - &#8203;<!-- 30 -->[core] Apply top-level eslint rule to docs and fix violations (#43126) @Janpot
277
+ - &#8203;<!-- 29 -->[core] Patch styled-components to use React.JSX namespace (#43205) @aarongarciah
278
+ - &#8203;<!-- 28 -->[core] Replace JSX namespace usages with React.JSX (#43204) @aarongarciah
279
+ - &#8203;<!-- 27 -->[core] Remove `react-router` package from `pigment-css-vite-app` (#43201) @ZeeshanTamboli
280
+ - &#8203;<!-- 26 -->[core] Remove unnecessary types packages from `@mui/internal-babel-macros` (#43193) @ZeeshanTamboli
281
+ - &#8203;<!-- 16 -->[docs-infra] Move `ApiPage` to TS (#43149) @alexfauquette
282
+ - &#8203;<!-- 07 -->[test] Remove unnecessary prop type check in test (#43211) @aarongarciah
283
+ - &#8203;<!-- 06 -->[test] Make conformance tests work with async render function (#43156) @michaldudak
284
+ - &#8203;<!-- 05 -->[typescript] Update the minimum supported version (#43116) @mnajdova
285
+ - &#8203;<!-- 04 -->[website] Add icons to core page products (#43151) @zanivan
286
+ - &#8203;<!-- 03 -->[website] Copyedit Docs and Product menu taglines (#43075) @samuelsycamore
287
+ - &#8203;<!-- 02 -->[website] Fix wrong link in pricing table (#43141) @zanivan
288
+ - &#8203;<!-- 01 -->[website] Add blog link to pricing table (#43123) @zanivan
289
+
290
+ All contributors of this release in alphabetical order: @aarongarciah, @AbdurRahman2004, @alexfauquette, @DiegoAndai, @Janpot, @joserodolfofreitas, @LukasTy, @michaldudak, @mnajdova, @oliviertassinari, @prakhargupta1, @samuelsycamore, @siriwatknp, @thathva, @Vxee, @zanivan, @ZeeshanTamboli
291
+
292
+ ## 6.0.0-beta.4
293
+
294
+ <!-- generated comparing v6.0.0-beta.3..next -->
295
+
296
+ _Jul 30, 2024_
297
+
298
+ A big thanks to the 12 contributors who made this release possible.
299
+
300
+ ### `@mui/material@6.0.0-beta.4`
301
+
302
+ - [Accordion] Render a heading wrapping `AccordionSummary` button per W3C Accordion Pattern standards (#42914) @ZeeshanTamboli
303
+ - [Divider] Enable borderStyle enhancement in divider with children (#42715) @anuujj
304
+ - [ImageListItemBar] Deprecate composed classes (#42905) @sai6855
305
+ - Attach selector for default color scheme (#43035) @siriwatknp
306
+ - Stabilize Grid v2 and deprecate Grid v1 (#43054) @DiegoAndai
307
+
308
+ ### `@mui/system@6.0.0-beta.4`
309
+
310
+ - Make `createBreakpoints` independent for stringify theme (#43048) @siriwatknp
311
+
312
+ ### `@mui/utils@6.0.0-beta.4`
313
+
314
+ - Fix issues reported by the React Compiler (#43051) @markliu2013
315
+
316
+ ### Docs
317
+
318
+ - [material-ui] Replace deprecated `<ListItem button/>` with `ListItemButton` component in routing libraries list example (#43110) @aliharis99
319
+ - [material-ui][Card] Update CardMedia description (#43067) @shahzaibdev1
320
+ - [material-ui] Polish out data table demo (#43072) @zanivan
321
+ - [material-ui][Snackbar] Improve reason type in demos (#43077) @sai6855
322
+ - [pigment-css] Fix syntax in migrating-to-pigment-css guide (#43107) @KevinVandy
323
+ - Fix page description line break @oliviertassinari
324
+
325
+ ### Core
326
+
327
+ - Fix event naming convention @oliviertassinari
328
+ - [docs-infra] Move ads to the `@mui/docs` package (#42944) @alexfauquette
329
+ - [website] Fine-tune button styles on the branding theme (#43082) @zanivan
330
+
331
+ All contributors of this release in alphabetical order: @alexfauquette, @aliharis99, @anuujj, @DiegoAndai, @KevinVandy, @markliu2013, @oliviertassinari, @sai6855, @shahzaibdev1, @siriwatknp, @zanivan, @ZeeshanTamboli
332
+
333
+ ## 6.0.0-beta.3
334
+
335
+ <!-- generated comparing v6.0.0-beta.2..next -->
336
+
337
+ _Jul 24, 2024_
338
+
339
+ A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
340
+
341
+ - 🚀 New version of the free Dashboard template, now with more components and an improved layout.
342
+
343
+ ### `@mui/codemod@6.0.0-beta.3`
344
+
345
+ - &#8203;<!-- 17 -->Fix Divider props codemod (#42919) @aarongarciah
346
+
347
+ ### `@mui/material@6.0.0-beta.3`
348
+
349
+ - &#8203;<!-- 06 -->Fix Accessing element.ref (#42818) @sai6855
350
+ - &#8203;<!-- 05 -->Refine `extendTheme` and `CssVarsProvider` API (#42839) @siriwatknp
351
+ - &#8203;<!-- 03 -->[Typography] Deprecate `paragraph` prop (#42383) @walston
352
+ - &#8203;<!-- 03 -->[Rating] fix defaultLabelText a11y issue with undefine value input and hint (#42810) @ZouYouShun
353
+
354
+ ### `@mui/material-nextjs@6.0.0-beta.3`
355
+
356
+ - &#8203;<!-- 04 -->[material-ui-nextjs] Add @emotion/react as peer dependency (#42885) @jeloagnasin
357
+ - &#8203;<!-- 02 -->[material-ui-nextjs] Remove @mui/material as peer dependency (#43041) @brijeshb42
358
+
359
+ ### `@mui/utils@6.0.0-beta.3`
360
+
361
+ - &#8203;<!-- 02 -->[utils] Add dependency to @mui/types (#43029) @mnajdova
362
+
363
+ ### Docs
364
+
365
+ - &#8203;<!-- 22 -->[material-ui][joy-ui][Autocomplete] Fix `Hint` demo (#42990) @ManthanGajjar
366
+ - &#8203;<!-- 19 -->[docs] Make `DemoSandbox` agnostic of `productId` (#43042) @Janpot
367
+ - &#8203;<!-- 16 -->[docs] Use slot variants over `theme.variants` (#42614) @siriwatknp
368
+ - &#8203;<!-- 13 -->[docs] Remove stringify theme import (#43032) @siriwatknp
369
+ - &#8203;<!-- 12 -->[docs] Bring v5.x changes to the CHANGELOG @oliviertassinari
370
+ - &#8203;<!-- 11 -->[docs] Fix migration typo (#42976) @mnajdova
371
+ - &#8203;<!-- 08 -->[material-ui] Add improvements to Dashboard template (#42445) @zanivan
372
+ - &#8203;<!-- 07 -->[material-ui] Fix broken image links in blog template (#42956) @navedqb
373
+
374
+ ### Core
375
+
376
+ - &#8203;<!-- 23 -->[code-infra] Add toolpad npm scope to envinfo (#41942) @Janpot
377
+ - &#8203;<!-- 21 -->[code-infra] Fix pnpm lock file (#43030) @Janpot
378
+ - &#8203;<!-- 20 -->[code-infra] Run `react-17` and `react-next` workflows on the next branch (#42690) @cherniavskii
379
+ - &#8203;<!-- 19 -->[code-infra] Make `useReactVersion` script reusable in other repos (#42828) @cherniavskii
380
+ - &#8203;<!-- 18 -->[code-infra] Add toolpad npm scope to envinfo (#41942) @Janpot
381
+ - &#8203;<!-- 16 -->[core] Add pigment and Base UI scopes to envinfo (#43002) @Janpot
382
+ - &#8203;<!-- 15 -->[core] Update minimum version of Node.js to 14.0.0 (#42920) @DiegoAndai
383
+ - &#8203;<!-- 14 -->[core] Expose missing screen methods from Testing Library (#42968) @aarongarciah
384
+ - &#8203;<!-- 10 -->[docs-infra] Leave TODO for warnOnce to reduce bundle size @oliviertassinari
385
+ - &#8203;<!-- 09 -->[docs-infra] Remove `display: flex` from `SectionTitle` (#42979) @LukasTy
386
+ - &#8203;<!-- 02 -->[test][material-ui] Remove unnecessary async act calls (#42942) @aarongarciah
387
+ - &#8203;<!-- 01 -->[website] Fix strange focus-visible on hover (#42924) @oliviertassinari
388
+
389
+ All contributors of this release in alphabetical order: @aarongarciah, @bharatkashyap, @brijeshb42, @cherniavskii, @DiegoAndai, @Janpot, @jeloagnasin, @LukasTy, @ManthanGajjar, @mnajdova, @navedqb, @oliviertassinari, @sai6855, @siriwatknp, @walston, @zanivan, @ZouYouShun
390
+
391
+ ## 6.0.0-beta.2
392
+
393
+ <!-- generated comparing v6.0.0-beta.1..next -->
394
+
395
+ _Jul 16, 2024_
396
+
397
+ ### `@mui/material@6.0.0-beta.2`
398
+
399
+ - &#8203;<!-- 1 -->[material] Add missing dependency (#42961) @mnajdova
400
+
401
+ ### Docs
402
+
403
+ - &#8203;<!-- 2 -->[docs] Move feedback from Canny to GitHub @oliviertassinari
404
+
405
+ All contributors of this release in alphabetical order: @mnajdova, @oliviertassinari
406
+
407
+ ## 6.0.0-beta.1
408
+
409
+ <!-- generated comparing v6.0.0-beta.0..next -->
410
+
411
+ _Jul 16, 2024_
412
+
413
+ A big thanks to the 6 contributors who made this release possible.
414
+
415
+ ### `@mui/material@6.0.0-beta.1`
416
+
417
+ - &#8203;<!-- 03 -->Remove dependency on @mui/base (#42907) @mnajdova
418
+ - &#8203;<!-- 02 -->Set material-pigment-css to public (#42912) @siriwatknp
419
+
420
+ ### `@mui/codemod@6.0.0-beta.1`
421
+
422
+ - &#8203;<!-- 10 -->Support sx conditional inside spread element (#42894) @siriwatknp
423
+
424
+ ### Docs
425
+
426
+ - &#8203;<!-- 07 -->Fix 301 link @oliviertassinari
427
+ - &#8203;<!-- 04 -->[material-ui] Add script to generate template screenshots (#42903) @siriwatknp
428
+
429
+ ### Core
430
+
431
+ - &#8203;<!-- 09 -->[core] Remove custom hooks from the `mui-name-matches-component-name` linting rule (#42773) @flaviendelangle
432
+ - &#8203;<!-- 08 -->[core] Normalize rest / other to match the most common used @oliviertassinari
433
+ - &#8203;<!-- 06 -->[docs-infra] Move Ads component to TS (#42842) @alexfauquette
434
+ - &#8203;<!-- 05 -->[docs-infra] Support code tabs overflow (#42913) @arminmeh
435
+ - &#8203;<!-- 01 -->[website] Sync /about page @oliviertassinari
436
+
437
+ All contributors of this release in alphabetical order: @alexfauquette, @arminmeh, @flaviendelangle, @mnajdova, @oliviertassinari, @siriwatknp
438
+
439
+ ## 6.0.0-beta.0
440
+
441
+ <!-- generated comparing v6.0.0-alpha.14..next -->
442
+
443
+ _Jul 11, 2024_
444
+
445
+ A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
446
+
447
+ - 🎉 This is the first v6 beta release! A huge thanks to everyone who helped to make this happen! The target date for a stable release is the 28th of July. The next month will be used to polish v6, and ease the migration from v5. You can follow the [v6 stable milestone](https://github.com/mui/material-ui/milestone/42) for more details.
448
+ - 🚀 All planned breaking changes are completed.
449
+
450
+ ### `@mui/material@v6.0.0-beta.0`
451
+
452
+ - Revert deprecation warnings for `*Components` and `*Props` for v6 (#42466) @lhilgert9
453
+ - Performance: lazy Ripple (#41061) @romgrk
454
+ - [AppBar] Fix inherit color is inconsistent between ThemeProvider and CssVarsProvider (#42714) @ZeeshanTamboli
455
+ - [Autocomplete] Add new AutocompleteInputChangeReason (#37301) @binh1298
456
+
457
+ ### `@mui/material-pigment-css@v6.0.0-beta.0`
458
+
459
+ - Create a wrapper package over Pigment CSS (#42819) @brijeshb42
460
+
461
+ ### `@mui/base@5.0.0-beta.53`
462
+
463
+ - [Autocomplete] Add new AutocompleteInputChangeReason (#37301) @binh1298
464
+
465
+ ### Docs
466
+
467
+ - Replace v6 "alpha" mentions with "beta" (#42895) @DiegoAndai
468
+ - Fix typos (#42862) @omahs
469
+ - Fix issues reported by react compiler in docs folder (#42881) @sai6855
470
+ - Fix 301 @oliviertassinari
471
+ - [LinearProgress] Fix buffer demo (#42858) @mbrookes
472
+ - Adjust site to add Toolpad on the homepage (#38604) @bharatkashyap
473
+
474
+ ### Core
475
+
476
+ - Fix imports in `Demo` component (#42857) @LukasTy
477
+ - Use @mui/docs/HighlightedCodeWithTabs in markdown (#42841) @Janpot
478
+ - Simpler pnpm dedupe error message to act on @oliviertassinari
479
+ - Fix split infinitive use in tests @oliviertassinari
480
+ - [lab] Fix issues reported by react-compiler in mui-lab (#42880) @sai6855
481
+
482
+ All contributors of this release in alphabetical order: @bharatkashyap, @brijeshb42, @DiegoAndai, @Janpot, @lhilgert9, @LukasTy, @mbrookes, @oliviertassinari, @omahs, @romgrk, @sai6855, @ZeeshanTamboli
483
+
484
+ ## 6.0.0-alpha.14
485
+
486
+ <!-- generated comparing v6.0.0-alpha.13..next -->
487
+
488
+ _Jul 3, 2024_
489
+
490
+ A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
491
+
492
+ - ✨ Updated Grid v2 to match PigmentGrid (#42742) @DiegoAndai
493
+
494
+ ### `@mui/material@v6.0.0-alpha.14`
495
+
496
+ #### BREAKING CHANGES
497
+
498
+ - [Grid] Update Grid props to match PigmentGrid (#42742) @DiegoAndai
499
+
500
+ Use the codemod below to migrate the props:
501
+
502
+ ```bash
503
+ npx @mui/codemod@next v6.0.0/grid-v2-props /path/to/folder
504
+ ```
505
+
506
+ #### Changes
507
+
508
+ - [Alert] Add ability to override slot props (#42787) @alexey-kozlenkov
509
+ - [Dialog] Revert incorrect textAlign style removal (#42778) @DiegoAndai
510
+ - [theme] Support `CssVarsTheme` in `responsiveFontSizes` return type (#42786) @jxdp
511
+
512
+ ### Docs
513
+
514
+ - [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal
515
+ - [material-ui] Fix issues reported by react-compiler in docs folder (#42830) @sai6855
516
+ - [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal
517
+ - [base-ui] Fix wrong description for `UseTabParameters.onChange` (#42749) @ohgree
518
+ - Fix 301 MDN redirections @oliviertassinari
519
+
520
+ ### Core
521
+
522
+ - [core] Bump React to 18.3.1 (#42047) @renovate[bot]
523
+ - [core] Revert lint for `useThemeProps` (#42817) @siriwatknp
524
+ - [core] Remove useIsFocusVisible util (#42467) @DiegoAndai
525
+ - [core] Remove react-test-renderer (#42784) @aarongarciah
526
+ - [core][mui-utils] Remove remaining IE11 references (#42777) @DiegoAndai
527
+ - [code-infra] Move `HighlightedCode` test into `@mui/docs` package (#42835) @LukasTy
528
+ - [code-infra] Cleanup `@mui/docs` usage and legacy re-exports (#42833) @LukasTy
529
+ - [docs-infra] Fix React Compiler ESLint issues in website components (#42566) @aarongarciah
530
+ - [docs-infra] Add batch of design polish (#42823) @danilo-leal
531
+ - [test][mui-utils] Remove usages of deprecated react-dom APIs (#42780) @aarongarciah
532
+ - [test][joy-ui][Autocomplete] Fix spread key error in test (#42775) @aarongarciah
533
+
534
+ All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @danilo-leal, @DiegoAndai, @Janpot, @jxdp, @LukasTy, @ohgree, @oliviertassinari, @renovate[bot], @sai6855, @siriwatknp
535
+
536
+ ## 6.0.0-alpha.13
537
+
538
+ <!-- generated comparing v6.0.0-alpha.12..next -->
539
+
540
+ _Jun 27, 2024_
541
+
542
+ A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
543
+
544
+ - 🚀 Added layout components for Pigment CSS integration (#42693) @siriwatknp
545
+
546
+ ### `@mui/material@6.0.0-alpha.13`
547
+
548
+ - [Autocomplete] Fix more React 18.3 key spread warnings in demos (#42639) @wbt
549
+ - [Container][Grid][Stack][Hidden] Export Pigment CSS layout components (#42693) @siriwatknp
550
+ - [Text Field] when click password visibility button, text caret position change to very front. (#42595) @appleSimple
551
+ - [Modal] migrate useSlotProps to useSLot (#42150) @sai6855
552
+
553
+ ### `@mui/styles@6.0.0-alpha.13`
554
+
555
+ - [withStyles] Expect React defaultProps warning in test (#42752) @aarongarciah
556
+
557
+ ### Docs
558
+
559
+ - Fix link in CONTRIBUTING.md (#42755) @Janpot
560
+ - Add documentation on migrating JSS's alternative, array-based syntax to syntax supported by Emotion (#42053) @cjl750
561
+ - Fix type error in virtualized table demo (#42757) @aarongarciah
562
+ - Add first batch of v6 migration (#42242) @siriwatknp
563
+ - Fix quotes on font-family dedeclaration in the Landing Page template theme (#42748) @joetats
564
+
565
+ ### Core
566
+
567
+ - [code-infra] Refactor eslint `import/no-cycle` rule (#42705) @LukasTy
568
+ - [core] Target direct version for prerelease (#42768) @siriwatknp
569
+ - [test] Remove enzyme (#42706) @aarongarciah
570
+ - [test] Remove createMount test util (#42703) @aarongarciah
571
+ - [website] Add Ale to team (#42764) @alelthomas
572
+
573
+ All contributors of this release in alphabetical order: @aarongarciah, @alelthomas, @appleSimple, @cjl750, @Janpot, @joetats, @LukasTy, @sai6855, @siriwatknp, @wbt
574
+
575
+ ## 6.0.0-alpha.12
576
+
577
+ <!-- generated comparing v6.0.0-alpha.11..next -->
578
+
579
+ _Jun 24, 2024_
580
+
581
+ A big thanks to the 17 contributors who made this release possible.
582
+
583
+ ### `@mui/material@6.0.0-alpha.12`
584
+
585
+ - Add `InitColorSchemeScript` for Next.js App Router (#42247) @siriwatknp
586
+ - [Autocomplete] Fix renderOption props type (#42689) @DiegoAndai
587
+ - [Autocomplete] Fix React 18.3 key spread warnings in Autocomplete demos (#42691) @aarongarciah
588
+ - Support Pigment CSS for `CssBaseline`, `ScopedCssBaseline` and `Popper` (#42640) @siriwatknp
589
+ - Add `DefaultPropsProvider` for Pigment CSS integration (#42638) @siriwatknp
590
+ - [Stepper] Generate class for nonLinear prop (#42620) @alexismo
591
+ - [Tab] Fix failing test (#42686) @aarongarciah
592
+ - [Tab] Deprecate iconWrapper class for icon class (#42647) @sai6855
593
+ - [TableSortLabel] Deprecate composed classes (#42281) @sai6855
594
+ - [usePagination] Update pagination `siblingsEnd` calculation logic (#42667) @Mini-ghost
595
+
596
+ ### `@mui/codemod@6.0.0-alpha.12`
597
+
598
+ - Support dynamic props styled transformation (#42683) @siriwatknp
599
+
600
+ ### `@mui/system@6.0.0-alpha.12`
601
+
602
+ - Fix issues reported by react compiler in `mui-system` package (#42637) @sai6855
603
+ - [useMediaQuery] Remove deprecated types (#42560) @aarongarciah
604
+
605
+ ### `@mui/joy@5.0.0-beta.45`
606
+
607
+ - Fix issues reported by the React Compiler (#42671) @anuujj
608
+ - [Autocomplete] Fix React spread key warning (#42741) @aarongarciah
609
+
610
+ ### `@mui/lab@6.0.0-alpha.12`
611
+
612
+ - [LoadingButton] Apply wrapping element to prevent React crash on Google page translation (#35198) @BartJanvanAssen
613
+
614
+ ### Docs
615
+
616
+ - Fix git diff format in migration to v6 (#42711) @oliviertassinari
617
+ - Use new email for sponsoring @oliviertassinari
618
+ - Fix 301 links (#42697) @alexfauquette
619
+ - Normalize the capitalization of Design Kit @oliviertassinari
620
+ - Recommend setting HTML attribute instead of DOM property for RTL (#42599) @aarongarciah
621
+ - [material-ui][Select] Fix the `SelectAutoWidth` demo menu item value (#42648) @Danielkhakbaz
622
+
623
+ ### Core
624
+
625
+ - [code-infra] Try disabling animations when taking screenshots (#42537) @Janpot
626
+ - [code-infra] Fix benchmark package (#42553) @Janpot
627
+ - [core] Replace enzyme in describeConformance (#42447) @DiegoAndai
628
+ - [docs-infra] Fix layout shift demo toolbar (#42743) @oliviertassinari
629
+ - [docs-infra] Fix visual look of in-house ad (#42735) @oliviertassinari
630
+ - [docs-infra] Add stray design polish (#42646) @danilo-leal
631
+ - [docs-infra] Fix wrong migration (#42675) @siriwatknp
632
+ - [docs-infra] Fine tune markdown elements design (#42643) @danilo-leal
633
+ - [docs-infra] Revamp the product switcher design (#42603) @danilo-leal
634
+ - [docs-infra] Allow Link component to receive the `role` attribute (#42629) @danilo-leal
635
+ - [infra] Add support donation button (#42499) @oliviertassinari
636
+ - [infra] Raise `tsconfig`/`tsc` target to `es2022` (#42645) @LukasTy
637
+ - [test] Fix tests on CI (#42670) @michaldudak
638
+ - [test] Fix issues reported by react-compiler in test packages (#42626) @sai6855
639
+ - [website] Add Armin to the team members (#42679) @arminmeh
640
+ - [website] Open Staff Engineer role for Pigment CSS (#42531) @mnajdova
641
+
642
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @alexismo, @anuujj, @arminmeh, @BartJanvanAssen, @Danielkhakbaz, @danilo-leal, @DiegoAndai, @Janpot, @LukasTy, @michaldudak, @Mini-ghost, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp
643
+
644
+ ## 6.0.0-alpha.11
645
+
646
+ <!-- generated comparing v6.0.0-alpha.10..next -->
647
+
648
+ _Jun 11, 2024_
649
+
650
+ A big thanks to the 18 contributors who made this release possible.
651
+
652
+ ### `@mui/material@6.0.0-alpha.11`
653
+
654
+ - &#8203;<!-- 38 -->[Autocomplete] Shouldn't resize when hovering (#42452) @ZeeshanTamboli
655
+ - &#8203;<!-- 37 -->[Chip] Fix focus issue related with the Escape event (#41578) @shrilsharma
656
+ - &#8203;<!-- 12 -->[Grid] Fix support for CSS variables (#42574) @oliviertassinari
657
+ - &#8203;<!-- 11 -->[InputBase] Use `globalCss` for Pigment integration (#42431) @siriwatknp
658
+ - &#8203;<!-- 10 -->Change React.ReactElement type from `any` to `unknown` (#42473) @sai6855
659
+ - &#8203;<!-- 09 -->Integrate `extendSxProp` adapter (#42543) @siriwatknp
660
+ - &#8203;<!-- 08 -->[Tab] Fix applying `iconWrapper` styles from theme and update its description (#42549) @sai6855
661
+ - &#8203;<!-- 08 -->[pigment-css] Add `stringifyTheme` for Pigment CSS integration (#42476) @siriwatknp
662
+
663
+ ### `@mui/system@6.0.0-alpha.11`
664
+
665
+ - &#8203;<!-- 11 -->[Grid] Remove `disableEqualOverflow` by using `gap` (#42526) @DiegoAndai
666
+ - &#8203;<!-- 07 -->[useMediaQuery] Drop Safari < 14 support (#42464) @aarongarciah
667
+
668
+ ### `@mui/utils@6.0.0-alpha.11`
669
+
670
+ - &#8203;<!-- 04 -->Allow passing `NaN` as `defaultValue` to `useControlled` (#41559) @iammminzzy
671
+
672
+ ### `@mui/codemod@6.0.0-alpha.11`
673
+
674
+ - &#8203;<!-- 39 -->Improve styled and sx prop transformation (#42598) @siriwatknp
675
+ - &#8203;<!-- 36 -->Support more cases for sx-prop transformation (#42527) @siriwatknp
676
+
677
+ ### `@mui/private-theming@6.0.0-alpha.11`
678
+
679
+ - &#8203;<!-- 09 -->Fix issues reported by react compiler in `mui-private-theming` components (#42619) @sai6855
680
+
681
+ ### Docs
682
+
683
+ - &#8203;<!-- 31 -->Add `theme.applyStyles` and migrate docs (#42498) @siriwatknp
684
+ - &#8203;<!-- 29 -->Fix dashboard template console error (#42594) @oliviertassinari
685
+ - &#8203;<!-- 28 -->Migrate system props to `sx` prop (#42475) @siriwatknp
686
+ - &#8203;<!-- 27 -->[material-ui]Fix duplicated sentence (#42521) @alexfauquette
687
+ - &#8203;<!-- 22 -->[Grid] Fix docs spacing (#42573) @oliviertassinari
688
+ - &#8203;<!-- 21 -->[joy-ui] Add Next.js App Router instructions on how to prevent flickering (#42514) @devnyxie
689
+ - &#8203;<!-- 20 -->[joy-ui] Fix HTML tag without preformatting (#42525) @jacobmoshipco
690
+ - &#8203;<!-- 19 -->[material-ui] Add docs for complementary stepper components (#41900) @anle9650
691
+ - &#8203;<!-- 18 -->[material-ui] Fix typo on Sign-in/Sign-up templates (#42605) @zanivan
692
+ - &#8203;<!-- 17 -->[material-ui] Add container queries docs (#42434) @siriwatknp
693
+ - &#8203;<!-- 16 -->[material-ui] Fix ESLint error in Stepper demo (#42559) @aarongarciah
694
+ - &#8203;<!-- 15 -->[material-ui] Shorten useMediaQuery subheading (#42561) @aarongarciah
695
+ - &#8203;<!-- 14 -->[material-ui] Add a Refine example project (#42461) @necatiozmen
696
+
697
+ ### Core
698
+
699
+ - &#8203;<!-- 39 -->[website] Move the `React Engineer - X` role to future roles (#42532) @DanailH
700
+ - &#8203;<!-- 35 -->[core] Allow `for..of` loops (#42600) @michaldudak
701
+ - &#8203;<!-- 34 -->[core] Add comment about Object.js @oliviertassinari
702
+ - &#8203;<!-- 33 -->[core] Disable eslint-plugin-react-compiler for Base (#42563) @aarongarciah
703
+ - &#8203;<!-- 33 -->[core] Group Pigment CSS dependencies (#42174) @siriwatknp
704
+ - &#8203;<!-- 32 -->[core] Configure eslint-plugin-react-compiler (#42555) @aarongarciah
705
+ - &#8203;<!-- 31 -->[core] Skip charts animation for visual regression test (#42530) @alexfauquette
706
+ - &#8203;<!-- 26 -->[docs-infra] Simplify click header (#42593) @oliviertassinari
707
+ - &#8203;<!-- 25 -->[docs-infra] Add configurable jsdoc host variable (#42472) @tonygravell
708
+ - &#8203;<!-- 25 -->[docs-infra] Add the Base UI logo with copy functionality (#42446) @danilo-leal
709
+ - &#8203;<!-- 24 -->[docs-infra] Prevent link anchor when selecting text (#41994) @alexfauquette
710
+ - &#8203;<!-- 23 -->[docs-infra] Add the Base UI logo with copy functionality (#42446) @danilo-leal
711
+ - &#8203;<!-- 13 -->[examples] Remove Pigment CSS examples (#42471) @sai6855
712
+ - &#8203;<!-- 06 -->[test] Restore pnpm tc command (#42572) @oliviertassinari
713
+ - &#8203;<!-- 05 -->[test] Restore testing internal packages (#42519) @michaldudak
714
+ - &#8203;<!-- 03 -->[website] Close Developer Advocate / Content Engineer role @oliviertassinari
715
+ - &#8203;<!-- 02 -->[website] Remove blank line @oliviertassinari
716
+ - &#8203;<!-- 01 -->[website] Fix mobile layout shift @oliviertassinari
717
+
718
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @anle9650, @DanailH, @danilo-leal, @devnyxie, @DiegoAndai, @iammminzzy, @jacobmoshipco, @michaldudak, @necatiozmen, @oliviertassinari, @sai6855, @shrilsharma, @siriwatknp, @tonygravell, @zanivan, @ZeeshanTamboli
719
+
720
+ ## 6.0.0-alpha.10
721
+
722
+ <!-- generated comparing v6.0.0-alpha.9..next -->
723
+
724
+ _Jun 4, 2024_
725
+
726
+ A big thanks to the 7 contributors who made this release possible.
727
+
728
+ ### `@mui/material@6.0.0-alpha.10`
729
+
730
+ - &#8203;<!-- 26 -->[Backdrop] Deprecate `components` and `componentsProps` (#42468) @DiegoAndai
731
+ - &#8203;<!-- 25 -->[Collapse] Bound max transition time (#42390) @oliviertassinari
732
+ - &#8203;<!-- 12 -->[FilledInput] Remove unapplied classes from filledInputClasses interface and add missing classes to root (#42082) @sai6855
733
+ - &#8203;<!-- 11 -->[InputBase] Deprecate components and componentProps props for v6 (#42093) @ChronicusUA
734
+ - &#8203;<!-- 10 -->Remove remaining IE11 code (#42283) @DiegoAndai
735
+ - &#8203;<!-- 09 -->[Modal] Deprecate `components` and `componentsProps` (#42469) @DiegoAndai
736
+ - &#8203;<!-- 08 -->[Popover] Migrate useSlotProps to useSlot (#42369) @sai6855
737
+ - &#8203;<!-- 07 -->[useMediaQuery] Remove unused useMediaQueryTheme (#42367) @aarongarciah
738
+
739
+ ### `@mui/system@6.0.0-alpha.10`
740
+
741
+ - &#8203;<!-- 06 -->Remove IE11 code (#42436) @DiegoAndai
742
+
743
+ ### Docs
744
+
745
+ - &#8203;<!-- 23 -->Reflect Base UI and MUI System in a different repository @oliviertassinari
746
+ - &#8203;<!-- 22 -->Update twitter.com to x.com @oliviertassinari
747
+ - &#8203;<!-- 21 -->Simplify Example projects page @oliviertassinari
748
+ - &#8203;<!-- 17 -->[icons] Update README and docs page (#41938) @danilo-leal
749
+ - &#8203;<!-- 16 -->[material-ui] Add changelog section to the design kits page (#42449) @danilo-leal
750
+ - &#8203;<!-- 15 -->[material-ui] Fix sentence in the All components page (#42336) @danilo-leal
751
+ - &#8203;<!-- 14 -->[material-ui] Update Figma design kit doc redirect link (#42448) @danilo-leal
752
+ - &#8203;<!-- 13 -->[system] Add "dynamic values" section to sx prop page (#42239) @aarongarciah
753
+
754
+ ### Core
755
+
756
+ - &#8203;<!-- 20 -->[docs-infra] Update the OG card image design (#42470) @danilo-leal
757
+ - &#8203;<!-- 19 -->[docs-infra] Add small design polish (#42455) @danilo-leal
758
+ - &#8203;<!-- 18 -->[docs-infra] Update the Material logo + add copy functionality (#42435) @danilo-leal
759
+ - &#8203;<!-- 05 -->[website] Update DoiT description and link in Sponsors section (#42505) @erezstmn-doit
760
+ - &#8203;<!-- 04 -->[website] Clean up the docs-infra job ad (#42504) @danilo-leal
761
+ - &#8203;<!-- 03 -->[website] Fix FlashCode position (#42139) @oliviertassinari
762
+ - &#8203;<!-- 02 -->[website] Open Docs-infra engineer role (#42101) @danilo-leal
763
+ - &#8203;<!-- 01 -->[website] Fix locationCountry in about page @oliviertassinari
764
+
765
+ All contributors of this release in alphabetical order: @aarongarciah, @ChronicusUA, @danilo-leal, @DiegoAndai, @erezstmn-doit, @oliviertassinari, @sai6855
766
+
767
+ ## 6.0.0-alpha.9
768
+
769
+ <!-- generated comparing v6.0.0-alpha.8..next -->
770
+
771
+ _May 29, 2024_
772
+
773
+ A big thanks to the 23 contributors who made this release possible. Here are some highlights ✨:
774
+
775
+ - 🚀 `CssVarsProvider` and `extendTheme` are now stable (#42246) @siriwatknp
776
+
777
+ ### `@mui/material@6.0.0-alpha.9`
778
+
779
+ - &#8203;<!-- 49 -->[AlertTitle] Enable extending Typography props (#42269) @lucasgmelo
780
+ - &#8203;<!-- 48 -->[AvatarGroup] deprecate `componentsProps` for v6 (#42122) @lhilgert9
781
+ - &#8203;<!-- 15 -->[Grid] Deprecate `wrap` prop (#42363) @fedirjh
782
+ - &#8203;<!-- 14 -->[ListItem] Document `*Component` and `*Props` props deprecations (#42263) @aarongarciah
783
+ - &#8203;<!-- 13 -->[ListItem] Deprecate ListItem's components and componentsProps (#42219) @aarongarciah
784
+ - &#8203;<!-- 12 -->[ListItemSecondaryAction] Deprecate component (#42251) @aarongarciah
785
+ - &#8203;<!-- 11 -->Stabilize `CssVarsProvider` and `extendTheme` (#42246) @siriwatknp
786
+ - &#8203;<!-- 10 -->[Popper] Deprecate components and componentProps props for v6 (#42111) @ChronicusUA
787
+ - &#8203;<!-- 09 -->[responsiveFontSizes] Handled undefined variants (#42412) @brijeshb42
788
+ - &#8203;<!-- 08 -->[Slider] Fix wrong CSS value (#42370) @mnajdova
789
+ - &#8203;<!-- 07 -->[Tooltip] Deprecate components and componentProps props for v6 (#42107) @ChronicusUA
790
+
791
+ ### `@mui/system@6.0.0-alpha.9`
792
+
793
+ - &#8203;<!-- 34 -->[createStyled] Intercept `ownerState` coming from `props` and `ownerState` (#42358) @DiegoAndai
794
+
795
+ ### `@mui/codemod@6.0.0-alpha.9`
796
+
797
+ - &#8203;<!-- 41 -->Add `sx` prop for v6 migration (#42153) @siriwatknp
798
+ - &#8203;<!-- 40 -->Add codemod for removing system props (#42282) @siriwatknp
799
+
800
+ ### Docs
801
+
802
+ - &#8203;<!-- 33 -->Remove unused images (#42324) @danilo-leal
803
+ - &#8203;<!-- 32 -->Add Pigment CSS and Base UI logos SVGs (#42322) @danilo-leal
804
+ - &#8203;<!-- 22 -->[joy-ui] Fix template responsiveness (#42422) @j4marcos
805
+ - &#8203;<!-- 21 -->[material-ui] Add the Pashto locale (#42244) @sayoubiaf
806
+ - &#8203;<!-- 20 -->[material-ui] Remove duplicate Design Kits page (#42338) @danilo-leal
807
+ - &#8203;<!-- 19 -->[material-ui] Document callback to access theme in GlobalStyles (#42257) @aarongarciah
808
+ - &#8203;<!-- 18 -->[material-ui] Add minor modifications to the Vertical stepper demo (#42342) @mihilt
809
+ - &#8203;<!-- 17 -->[material-ui][Tabs] Improve the Basic Tabs demo (#42374) @MatheusEli
810
+ - &#8203;<!-- 16 -->[pigment-css] Polish redirection mention @oliviertassinari
811
+
812
+ ### Core
813
+
814
+ - &#8203;<!-- 47 -->[blog] Add fixes and clean ups to the Blog page (#42311) @danilo-leal
815
+ - &#8203;<!-- 46 -->[blog] Add the "Product" tag to the Pigment CSS post (#42365) @danilo-leal
816
+ - &#8203;<!-- 45 -->[code-infra] Simplify .stylelintrc.js @oliviertassinari
817
+ - &#8203;<!-- 44 -->[code-infra] Fix stylelint locally (#42411) @oliviertassinari
818
+ - &#8203;<!-- 43 -->[code-infra] Run corepack enable on all CI jobs (#42331) @Janpot
819
+ - &#8203;<!-- 42 -->[code-infra] Create examples eslint rule (#42170) @oliviertassinari
820
+ - &#8203;<!-- 39 -->[core] Apply React 19 type changes that don't require upcoming `@types/` packages (#42346) @DiegoAndai
821
+ - &#8203;<!-- 38 -->[core] Remove `react-swipeable-views-utils` package from docs (#42378) @ZeeshanTamboli
822
+ - &#8203;<!-- 37 -->[core] Update `@testing-library/react` and `@testing-library/dom` packages (#42349) @ZeeshanTamboli
823
+ - &#8203;<!-- 36 -->[core] Remove `@types/prettier` package (#42339) @ZeeshanTamboli
824
+ - &#8203;<!-- 35 -->[core] Remove `WyW-in-JS` from Renovate config (#42335) @ZeeshanTamboli
825
+ - &#8203;<!-- 31 -->[docs-infra] Split feedback channels per product (#42413) @alexfauquette
826
+ - &#8203;<!-- 30 -->[docs-infra] Avoid cryptic errors when tests don't exist (#42356) @Janpot
827
+ - &#8203;<!-- 29 -->[docs-infra] Make menu styles consistent (#42387) @danilo-leal
828
+ - &#8203;<!-- 28 -->[docs-infra] Display deprecation messages in API pages (#42352) @aarongarciah
829
+ - &#8203;<!-- 27 -->[docs-infra] Standardize API pages Alert styles (#42386) @danilo-leal
830
+ - &#8203;<!-- 26 -->[docs-infra] Fix Toolpad Core API links (#42362) @apedroferreira
831
+ - &#8203;<!-- 25 -->[docs-infra] Tigthen up the header design (#42180) @danilo-leal
832
+ - &#8203;<!-- 24 -->[docs-infra] Add Toolpad to muiNpmOrgs for codesandbox demos (#42316) @Janpot
833
+ - &#8203;<!-- 23 -->[docs-infra] Allow JSDoc tags (#42337) @aarongarciah
834
+ - &#8203;<!-- 06 -->[test] Remove `userAgent` override in `jsdom` env (#42344) @cherniavskii
835
+ - &#8203;<!-- 05 -->[utils] Fix GitHub-reported prototype pollution vulnerability in `deepmerge` (#41652) @tjcouch-sil
836
+ - &#8203;<!-- 04 -->[website] Add Nikita to the about page (#42418) @nikitaa24
837
+ - &#8203;<!-- 03 -->[website] Fix hero spacing changes applying at the wrong breakpoint (#42341) @KenanYusuf
838
+ - &#8203;<!-- 02 -->[website] Adds Kenan Yusuf to about page (#42317) @KenanYusuf
839
+ - &#8203;<!-- 01 -->[website] Improve about page @oliviertassinari
840
+
841
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @apedroferreira, @brijeshb42, @cherniavskii, @ChronicusUA, @danilo-leal, @DiegoAndai, @fedirjh, @j4marcos, @Janpot, @KenanYusuf, @lhilgert9, @lucasgmelo, @MatheusEli, @mihilt, @mnajdova, @nikitaa24, @oliviertassinari, @sayoubiaf, @siriwatknp, @tjcouch-sil, @ZeeshanTamboli
842
+
843
+ ## 6.0.0-alpha.8
844
+
845
+ <!-- generated comparing v6.0.0-alpha.7..next -->
846
+
847
+ _May 21, 2024_
848
+
849
+ A big thanks to the 7 contributors who made this release possible.
850
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
851
+
852
+ ### `@mui/material@6.0.0-alpha.7`
853
+
854
+ - &#8203;<!-- 04 -->[material-ui] Filter only valid theme palette for generating styles (#42147) @siriwatknp
855
+ - &#8203;<!-- 03 -->[material-ui] Remove UMD bundle (#42172) @ZeeshanTamboli
856
+ - &#8203;<!-- 02 -->[material-ui][TextField] Deprecate `*Props` props (#42062) @DiegoAndai
857
+
858
+ ### Docs
859
+
860
+ - &#8203;<!-- 08 -->[docs] Remove Base UI from the README (#42307) @danilo-leal
861
+ - &#8203;<!-- 07 -->[docs][material-ui] Fix typo in style interoperability with Tailwind CSS docs (#42279) @ZeeshanTamboli
862
+ - &#8203;<!-- 06 -->[docs][material-ui] Add supported browsers section to migration guide (#42194) @DiegoAndai
863
+ - &#8203;<!-- 05 -->[docs][material-ui][Pagination] Clarify pagination `page` prop API (#42220) @Mandar-Pandya
864
+
865
+ ### Core
866
+
867
+ - &#8203;<!-- 12 -->[blog] Update blog post OG image (#42270) @danilo-leal
868
+ - &#8203;<!-- 11 -->[blog] Update Pigment CSS post (#42266) @danilo-leal
869
+ - &#8203;<!-- 10 -->[docs] Remove LocalMonero (#42224) @oliviertassinari
870
+ - &#8203;<!-- 08 -->[docs-infra] Fix keyboard navigation on page tabs (#42152) @danilo-leal
871
+ - &#8203;<!-- 10 -->[code-infra] Remove raw-loader (#42275) @Janpot
872
+ - &#8203;<!-- 09 -->[core] Remove outdated Babel plugins (#42140) @ZeeshanTamboli
873
+ - &#8203;<!-- 12 -->[core] Fix a few more key spread issues (#42168) @oliviertassinari
874
+ - &#8203;<!-- 01 -->[website] Avoid duplicate simple vs. rich (#42100) @oliviertassinari
875
+
876
+ All contributors of this release in alphabetical order: @danilo-leal, @DiegoAndai, @Janpot, @Mandar-Pandya, @oliviertassinari, @siriwatknp, @ZeeshanTamboli
877
+
878
+ ## 6.0.0-alpha.7
879
+
880
+ <!-- generated comparing v6.0.0-alpha.6..next -->
881
+
882
+ _May 16, 2024_
883
+
884
+ A big thanks to the 14 contributors who made this release possible.
885
+
886
+ ### `@mui/material@6.0.0-alpha.7`
887
+
888
+ - &#8203;<!-- 23 -->[Autocomplete] Deprecate `componentsProps` props (#42179) @lhilgert9
889
+ - &#8203;<!-- 22 -->[Autocomplete] Improve design when there's a start adornment for small autocomplete (#41781) @TahaRhidouani
890
+ - &#8203;<!-- 21 -->[Autocomplete] deprecate `*Component` and `*Props` for v6 (#41875) @lhilgert9
891
+ - &#8203;<!-- 19 -->[CircularProgress] Deprecate composed classes (#42076) @sai6855
892
+ - &#8203;<!-- 05 -->[ToggleButtonGroup] Add missing `selected` class in ToggleButtonGroupClasses type (#42243) @tarunrajput
893
+
894
+ ### `@mui/codemod@6.0.0-alpha.6`
895
+
896
+ - &#8203;<!-- 18 -->[Divider] Only apply codemod if light prop is present (#42098) @DiegoAndai
897
+
898
+ ### Docs
899
+
900
+ - &#8203;<!-- 13 -->Fix 301 to Figma @oliviertassinari
901
+ - &#8203;<!-- 12 -->Fix use of deprecated React API (#42118) @oliviertassinari
902
+ - &#8203;<!-- 11 -->Remove the Base notification (#42191) @danilo-leal
903
+ - &#8203;<!-- 07 -->[material-ui] Improve descriptions for deprecated props (#42221) @aarongarciah
904
+ - &#8203;<!-- 06 -->[material-ui] Fix typo in composition docs (#42195) @aarongarciah
905
+
906
+ ### Core
907
+
908
+ - &#8203;<!-- 20 -->[blog] Introducing Pigment CSS blog post (#42198) @samuelsycamore
909
+ - &#8203;<!-- 17 -->[core] Remove confusing comment @oliviertassinari
910
+ - &#8203;<!-- 16 -->[core] Match other repositories and convention @oliviertassinari
911
+ - &#8203;<!-- 15 -->[core] Fix React 18.3 warnings about spreading keys in the Material UI `Autocomplete` component (#42099) @heath-freenome
912
+ - &#8203;<!-- 14 -->[core] Remove unecessary quotes @oliviertassinari
913
+ - &#8203;<!-- 10 -->[docs-infra] Share code for section title (#42236) @alexfauquette
914
+ - &#8203;<!-- 09 -->[docs-infra] Limit the copy button to the visible code block (#42115) @danilo-leal
915
+ - &#8203;<!-- 08 -->[docs-infra] Make select components with two capital letters (#42004) @alexfauquette
916
+ - &#8203;<!-- 08 -->[docs-infra][toolpad] Fix Page title and SERP title mismatch (#41919) @bharatkashyap
917
+ - &#8203;<!-- 05 -->[website] Add redirection for talk @oliviertassinari
918
+ - &#8203;<!-- 04 -->[website] Adds Arthur Balduini team info (#42193) @arthurbalduini
919
+ - &#8203;<!-- 03 -->[website] Update the role template file (#42192) @danilo-leal
920
+ - &#8203;<!-- 02 -->[website] Update MUI X deps and migrate TreeView demos to v7 API (#42149) @noraleonte
921
+ - &#8203;<!-- 01 -->[website] Fix pricing casing (#42178) @aarongarciah
922
+
923
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @arthurbalduini, @bharatkashyap, @danilo-leal, @DiegoAndai, @heath-freenome, @lhilgert9, @noraleonte, @oliviertassinari, @sai6855, @samuelsycamore, @TahaRhidouani, @tarunrajput
924
+
925
+ ## 6.0.0-alpha.6
926
+
927
+ <!-- generated comparing v6.0.0-alpha.5..next -->
928
+
929
+ _May 8, 2024_
930
+
931
+ A big thanks to the 10 contributors who made this release possible.
932
+
933
+ ### `@mui/material@6.0.0-alpha.6`
934
+
935
+ - [Chip] Add colorDefault class to chipClasses (#42067) @sai6855
936
+ - Migrate components to support CSS extraction (#42001) @siriwatknp
937
+ - [SpeedDial] Deprecate TransitionComponent (#40698) @harry-whorlow
938
+
939
+ ### `@mui/codemod@6.0.0-alpha.6`
940
+
941
+ - Add `theme-v6` migration (#42056) @siriwatknp
942
+
943
+ ### `@mui/icons-material@6.0.0-alpha.6`
944
+
945
+ - Add the Emergency icon (#42080) @danilo-leal
946
+
947
+ ### Docs
948
+
949
+ - [autocomplete] Fix duplicate autocomplete id (#42086) @oliviertassinari
950
+ - Fix SEO redirection issues @oliviertassinari
951
+ - [material-ui] Fix broken link (#42142) @aarongarciah
952
+ - [material-ui][docs] Fix link on the Sync page (#42088) @danilo-leal
953
+
954
+ ### Core
955
+
956
+ - [blog] Shorten title to fit @oliviertassinari
957
+ - [blog] Update Sync post OG image (#42114) @danilo-leal
958
+ - [blog] A few tweaks in introducing-sync-plugin (#42092) @oliviertassinari
959
+ - [code-infra] Add canary release scripts (#41949) @michaldudak
960
+ - [code-infra] Move ComponentLinkHeader to @mui/docs (#42061) @Janpot
961
+ - [code-infra] Bump node image used by CI in docker (#42079) @LukasTy
962
+ - [core] Restrict import path with ESLint (#41970) @oliviertassinari
963
+ - [docs-infra] Add design and formatting improvements (#42063) @danilo-leal
964
+ - [docs-infra] Fix HTML structure violations (#42085) @oliviertassinari
965
+ - [website] Componentize a few Careers page sections (#42102) @danilo-leal
966
+ - [website] Refine the InfoCard design (#42116) @danilo-leal
967
+ - [website] Fix home page slider's track position (#42141) @aarongarciah
968
+ - [website] Closing the survey @oliviertassinari
969
+ - [website] Remove Survey banner from website and Core docs (#42104) @joserodolfofreitas
970
+
971
+ All contributors of this release in alphabetical order: @aarongarciah, @danilo-leal, @harry-whorlow, @Janpot, @joserodolfofreitas, @LukasTy, @michaldudak, @oliviertassinari, @sai6855, @siriwatknp
972
+
973
+ ## 6.0.0-alpha.5
974
+
975
+ <!-- generated comparing v6.0.0-alpha.4..next -->
976
+
977
+ _May 1, 2024_
978
+
979
+ A big thanks to the 9 contributors who made this release possible.
980
+
981
+ ### `@mui/material@6.0.0-alpha.5`
982
+
983
+ - [FormControlLabel] Deprecate `componentsProps` (#41767) @sai6855
984
+ - [PaginationItem] Deprecate components prop (#41777) @sai6855
985
+ - [SvgIcon] Convert to support CSS extraction (#41779) @aarongarciah
986
+
987
+ ### `@mui/base@5.0.0-beta.43`
988
+
989
+ - [TextareaAutosize] Fix resizing instability (#41638) @ZeeshanTamboli
990
+
991
+ ### Docs
992
+
993
+ - Fix small SEO issues @oliviertassinari
994
+ - [material-ui] Fix minor spelling error in the "About the lab" page (#42073) @ryanhartwig
995
+ - [material-ui] Update Figma plugin name (#41967) @danilo-leal
996
+ - [material-ui][templates] Fix input props attributes in Landing Page template (#42013) @5-tom
997
+ - [system] Update typo on the sx prop page (#42035) @bricker
998
+
999
+ ### Core
1000
+
1001
+ - [docs-infra] Clean up branding theme file and improve font-face readibility (#42023) @danilo-leal
1002
+ - [docs-infra] Simplify docs demo (#42016) @oliviertassinari
1003
+ - [website] Add content about the Sync plugin in the Material UI page (#40515) @danilo-leal
1004
+ - [website] Sync career roles (#42058) @oliviertassinari
1005
+ - [website] Add Nadja on the about page (#42021) @mnajdova
1006
+ - [website] Fix code block design by changing the `MarkdownElement` import (#42022) @danilo-leal
1007
+ - [wesbite] Remove duplicate MarkdownElement component (#42028) @danilo-leal
1008
+
1009
+ All contributors of this release in alphabetical order: @5-tom, @aarongarciah, @bricker, @danilo-leal, @mnajdova, @oliviertassinari, @ryanhartwig, @sai6855, @ZeeshanTamboli
1010
+
1011
+ ## 6.0.0-alpha.4
4
1012
 
5
1013
  <!-- generated comparing v6.0.0-alpha.3..next -->
6
1014
 
@@ -55,7 +1063,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
55
1063
 
56
1064
  All contributors of this release in alphabetical order: @alexfauquette, @danilo-leal, @gijsbotje, @Janpot, @lhilgert9, @michaldudak, @Miguelrom, @mnajdova, @oliviertassinari, @rluzists1, @sai6855, @siriwatknp, @soler1212, @zanivan, @ZeeshanTamboli
57
1065
 
58
- ## v6.0.0-alpha.3
1066
+ ## 6.0.0-alpha.3
59
1067
 
60
1068
  <!-- generated comparing v6.0.0-alpha.2..next -->
61
1069
 
@@ -128,7 +1136,7 @@ A big thanks to the 24 contributors who made this release possible. Here are som
128
1136
 
129
1137
  All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @bharatkashyap, @brijeshb42, @cherniavskii, @danilo-leal, @DiegoAndai, @EyaOuenniche, @gijsbotje, @iammminzzy, @Janpot, @kealjones-wk, @lhilgert9, @magnimarels, @michaldudak, @mithun522, @mnajdova, @MoazMirza-13, @MohammadShehadeh, @oliviertassinari, @ryanburr, @sai6855, @siriwatknp, @zanivan
130
1138
 
131
- ## v6.0.0-alpha.2
1139
+ ## 6.0.0-alpha.2
132
1140
 
133
1141
  <!-- generated comparing v6.0.0-alpha.1..next -->
134
1142
 
@@ -167,7 +1175,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
167
1175
 
168
1176
  All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @brijeshb42, @EyaOuenniche, @oliviertassinari
169
1177
 
170
- ## v6.0.0-alpha.1
1178
+ ## 6.0.0-alpha.1
171
1179
 
172
1180
  <!-- generated comparing v6.0.0-alpha.0..next -->
173
1181
 
@@ -254,7 +1262,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
254
1262
 
255
1263
  All contributors of this release in alphabetical order: @aarongarciah, @adriancuadrado, @alexfauquette, @bharatkashyap, @brijeshb42, @connorshea, @danilo-leal, @DiegoAndai, @iammminzzy, @Janpot, @JCQuintas, @levigunz, @mnajdova, @oliviertassinari, @ppaskaris-plooto, @siriwatknp, @skmanoj322, @zanivan, @ZeeshanTamboli
256
1264
 
257
- ## v6.0.0-alpha.0
1265
+ ## 6.0.0-alpha.0
258
1266
 
259
1267
  <!-- generated comparing v5.15.14..next -->
260
1268
 
@@ -333,7 +1341,339 @@ A big thanks to the 18 contributors who made this release possible. Here are som
333
1341
 
334
1342
  All contributors of this release in alphabetical order: @aacevski, @brijeshb42, @cherniavskii, @cipherlogs, @danilo-leal, @DiegoAndai, @harry-whorlow, @Janpot, @joserodolfofreitas, @michael-land, @michaldudak, @mnajdova, @nekoya, @sai6855, @siriwatknp, @StylesTrip, @zanivan, @ZeeshanTamboli
335
1343
 
336
- ## v5.15.15
1344
+ ## 5.16.4
1345
+
1346
+ <!-- generated comparing v5.16.3..master -->
1347
+
1348
+ _Jul 16, 2024_
1349
+
1350
+ A big thanks to the 1 contributor who made this release possible.
1351
+
1352
+ ### `@mui/material@5.16.4`
1353
+
1354
+ - &#8203;<!-- 1 -->Fix wrong import in Popover types (#42967) @mnajdova
1355
+
1356
+ All contributors of this release in alphabetical order: @mnajdova
1357
+
1358
+ ## 5.16.3
1359
+
1360
+ <!-- generated comparing v5.16.2..master -->
1361
+
1362
+ _Jul 16, 2024_
1363
+
1364
+ A big thanks to the 3 contributors who made this release possible.
1365
+
1366
+ ### `@mui/material@5.16.3`
1367
+
1368
+ - &#8203;<!-- 1 -->[material] Add missing dependency (#42959) @mnajdova
1369
+
1370
+ ### Docs
1371
+
1372
+ - &#8203;<!-- 3 -->[material-ui][Autocomplete] Add instructions about `autosuggest-highlight` dependency (#42953) @HoFa1997
1373
+ - &#8203;<!-- 2 -->Move feedback from Canny to GitHub @oliviertassinari
1374
+
1375
+ All contributors of this release in alphabetical order: @HoFa1997, @mnajdova, @oliviertassinari
1376
+
1377
+ ## 5.16.2
1378
+
1379
+ <!-- generated comparing v5.16.1..master -->
1380
+
1381
+ _Jul 16, 2024_
1382
+
1383
+ A big thanks to the 2 contributors who made this release possible.
1384
+
1385
+ ### `@mui/material@5.16.2`
1386
+
1387
+ - &#8203;<!-- 2 -->[material] Remove dependency to @mui/base (@mnajdova) (#42917) @mnajdova
1388
+
1389
+ ### Core
1390
+
1391
+ - &#8203;<!-- 1 -->[website] Sync /about page @oliviertassinari
1392
+
1393
+ All contributors of this release in alphabetical order: @mnajdova, @oliviertassinari
1394
+
1395
+ ## 5.16.1
1396
+
1397
+ _Jul 11, 2024_
1398
+
1399
+ A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
1400
+
1401
+ - ⚛️ All packages, including Material UI, are now compatible with React 18.3.1
1402
+
1403
+ ### `@mui/material@5.16.1`
1404
+
1405
+ - [AppBar] Fix inherit color is inconsistent between ThemeProvider and CssVarsProvider (#42713) @ZeeshanTamboli
1406
+
1407
+ ### `@mui/joy@5.0.0-beta.48`
1408
+
1409
+ - [Autocomplete] Fix React spread key warning (#42856) @aarongarciah
1410
+
1411
+ ### Docs
1412
+
1413
+ - [material-ui] Fix React 18.3 key spread warnings in Autocomplete demos (#42854) @aarongarciah
1414
+ - [material-ui] Fix type error in virtualized table demo (#42852) @aarongarciah
1415
+ - Fix typos (@omahs) (#42888) @omahs
1416
+ - Fix 301 @oliviertassinari
1417
+
1418
+ ### Core
1419
+
1420
+ - [core] Bump React to 18.3.1 (#42846) @aarongarciah
1421
+ - [core] Remove react-test-renderer (#42853) @aarongarciah
1422
+ - [core] Replace enzyme in describeConformance (#42847) @aarongarciah
1423
+ - [test] Remove enzyme (#42850) @aarongarciah
1424
+ - [test] Remove createMount test util (#42849) @aarongarciah
1425
+ - [base-ui] Fix React spread key warning in test (#42855) @aarongarciah
1426
+ - [styles][withStyles] Expect React defaultProps warning in test (#42752) (#42851) @aarongarciah
1427
+
1428
+ All contributors of this release in alphabetical order: @aarongarciah, @oliviertassinari, @omahs, @ZeeshanTamboli
1429
+
1430
+ ## 5.16.0
1431
+
1432
+ <!-- generated comparing v5.15.21..master -->
1433
+
1434
+ _Jul 5, 2024_
1435
+
1436
+ A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
1437
+
1438
+ - 🚀 Added `InitColorSchemeScript` for Next.js App Router (#42829) @siriwatknp
1439
+
1440
+ ### `@mui/material@5.16.0`
1441
+
1442
+ - [Alert] Add ability to override slot props (@alexey-kozlenkov) (#42808) @alexey-kozlenkov
1443
+ - Add `InitColorSchemeScript` for Next.js App Router (#42829) @siriwatknp
1444
+ - Add `DefaultPropsProvider` (#42820) @siriwatknp
1445
+ - Support `CssVarsTheme` in `responsiveFontSizes` return type (@jxdp) (#42806) @jxdp
1446
+ - Remove warning from `getInitColorSchemeScript` (#42838) @siriwatknp
1447
+
1448
+ ### Docs
1449
+
1450
+ - [docs] Fix 301 MDN redirections @oliviertassinari
1451
+
1452
+ ### Core
1453
+
1454
+ - [mui-utils][test] Remove usages of deprecated react-dom APIs (@aarongarciah) (#42813) @aarongarciah
1455
+
1456
+ All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @jxdp, @oliviertassinari, @siriwatknp
1457
+
1458
+ ## 5.15.21
1459
+
1460
+ <!-- generated comparing v5.15.20..master -->
1461
+
1462
+ _Jun 28, 2024_
1463
+
1464
+ A big thanks to the 7 contributors who made this release possible.
1465
+
1466
+ ### `@mui/material@5.15.21`
1467
+
1468
+ - [Autocomplete] Fix renderOption props type (@DiegoAndai) (#42709) @DiegoAndai
1469
+ - [Stepper] Generate class for `nonLinear` prop (@alexismo) (#42677) @alexismo
1470
+
1471
+ ### Docs
1472
+
1473
+ - Use new email for sponsoring @oliviertassinari
1474
+ - Fix 301 links (@alexfauquette) (#42700) @alexfauquette
1475
+ - [material-ui][Select] Fix the `SelectAutoWidth` demo menu item value (@Danielkhakbaz) (#42696) @Danielkhakbaz
1476
+ - [material-ui][Autocomplete] Fix more React 18.3 key spread warnings in demos (#42766) @wbt
1477
+ - [material-ui] Fix sign in side image (#42708) @zanivan
1478
+ - [website] Add Ale to team (#42769) @alelthomas
1479
+
1480
+ ### Core
1481
+
1482
+ - [core] Cherry pick pnpm updates (#42763) @DiegoAndai
1483
+ - [website] Add Armin to the team members (@arminmeh) (#42681) @arminmeh
1484
+ - [website] Open Staff Engineer role for Pigment CSS (@mnajdova) (#42669) @mnajdova
1485
+
1486
+ All contributors of this release in alphabetical order: @alexfauquette, @alexismo, @arminmeh, @Danielkhakbaz, @DiegoAndai, @mnajdova, @oliviertassinari
1487
+
1488
+ ## 5.15.20
1489
+
1490
+ <!-- generated comparing v5.15.19..master -->
1491
+
1492
+ _Jun 12, 2024_
1493
+
1494
+ A big thanks to the 9 contributors who made this release possible.
1495
+
1496
+ ### `@mui/material@5.15.20`
1497
+
1498
+ - &#8203;<!-- 17 -->[Autocomplete] Shouldn't resize when hovering (@ZeeshanTamboli) (#42535) @ZeeshanTamboli
1499
+ - &#8203;<!-- 07 -->[Tab] Fix applying `iconWrapper` styles from theme and update its description (@sai6855) (#42570) @sai6855
1500
+
1501
+ ### `@mui/utils@5.15.15`
1502
+
1503
+ - &#8203;<!-- 06 -->Allow passing `NaN` as `defaultValue` to `useControlled` (@iammminzzy) (#42571) @iammminzzy
1504
+ - &#8203;<!-- 17 -->Fix GitHub-reported prototype pollution vulnerability in `deepmerge` (#41652) (#42608) @DiegoAndai
1505
+
1506
+ ### Docs
1507
+
1508
+ - &#8203;<!-- 16 -->[docs] Add Pigment CSS and Base UI logos SVGs (#42513) @danilo-leal
1509
+ - &#8203;<!-- 15 -->[docs] Update twitter.com to x.com @oliviertassinari
1510
+ - &#8203;<!-- 14 -->[docs] Simplify Example projects page @oliviertassinari
1511
+ - &#8203;<!-- 13 -->[material-ui] Add docs for complementary stepper components (@anle9650) (#42613) @anle9650
1512
+ - &#8203;<!-- 12 -->[docs] Add changelog section to the design kits page (@danilo-leal) (#42463) @danilo-leal
1513
+ - &#8203;<!-- 11 -->[material-ui] Fix sentence in the All components page (@danilo-leal) (#42462) @danilo-leal
1514
+ - &#8203;<!-- 10 -->[material-ui] Update Figma design kit doc redirect link (@danilo-leal) (#42456) @danilo-leal
1515
+ - &#8203;<!-- 09 -->[system] Add "dynamic values" section to sx prop page (@aarongarciah) (#42453) @aarongarciah
1516
+
1517
+ ### Core
1518
+
1519
+ - &#8203;<!-- 18 -->[website] Move the `React Engineer - X` role to future roles (#42532) @DanailH
1520
+ - &#8203;<!-- 08 -->[examples] Remove Pigment CSS examples (#42538) @sai6855
1521
+ - &#8203;<!-- 05 -->[website] Close Developer Advocate / Content Engineer role @oliviertassinari
1522
+ - &#8203;<!-- 04 -->[website] Update DoiT description and link in Sponsors section (@erezstmn-doit) (#42511) @erezstmn-doit
1523
+ - &#8203;<!-- 03 -->[website] Clean up the docs-infra job ad (@danilo-leal) (#42509) @danilo-leal
1524
+ - &#8203;<!-- 02 -->[website] Open the Docs-infra engineer role (@danilo-leal) (#42496) @danilo-leal
1525
+ - &#8203;<!-- 01 -->[website] Fix locationCountry in about page @oliviertassinari
1526
+
1527
+ All contributors of this release in alphabetical order: @aarongarciah, @anle9650, @DanailH, @danilo-leal, @erezstmn-doit, @iammminzzy, @oliviertassinari, @sai6855, @ZeeshanTamboli
1528
+
1529
+ ## 5.15.19
1530
+
1531
+ <!-- generated comparing v5.15.18..master -->
1532
+
1533
+ _May 29, 2024_
1534
+
1535
+ A big thanks to the 12 contributors who made this release possible.
1536
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
1537
+
1538
+ ### `@mui/material@5.15.19`
1539
+
1540
+ - &#8203;<!-- 19 -->[AlertTitle] Enable extending Typography props (@lucasgmelo) (#42334) @github-actions[bot]
1541
+ - &#8203;<!-- 06 -->[responsiveFontSizes] Handled undefined variants (@brijeshb42) (#42419) @github-actions[bot]
1542
+ - &#8203;<!-- 05 -->[Slider] Fix wrong CSS value (@mnajdova) (#42373) @github-actions[bot]
1543
+
1544
+ ### Docs
1545
+
1546
+ - &#8203;<!-- 13 -->Link to pnpm installation docs (#42420) @aarongarciah
1547
+ - &#8203;<!-- 12 -->Remove LocalMonero (@oliviertassinari) (#42315) @github-actions[bot]
1548
+ - &#8203;<!-- 10 -->[material-ui] Fix typo in style interoperability with Tailwind CSS docs (@ZeeshanTamboli) (#42312) @github-actions[bot]
1549
+ - &#8203;<!-- 09 -->[material-ui][Pagination] Clarify pagination `page` prop API (@Mandar-Pandya) (#42265) @github-actions[bot]
1550
+ - &#8203;<!-- 08 -->[material-ui][Tabs] Improve the Basic Tabs demo (@MatheusEli) (#42426) @github-actions[bot]
1551
+ - &#8203;<!-- 07 -->[pigment-css] Fix duplication of content (#42410) @oliviertassinari
1552
+
1553
+ ### Core
1554
+
1555
+ - &#8203;<!-- 18 -->[blog] Add the "Product" tag to the Pigment CSS post (@danilo-leal) (#42366) @github-actions[bot]
1556
+ - &#8203;<!-- 17 -->[blog] Update blog post OG image (@danilo-leal) (#42306) @github-actions[bot]
1557
+ - &#8203;<!-- 16 -->[blog] Update Pigment CSS post (@danilo-leal) (#42267) @github-actions[bot]
1558
+ - &#8203;<!-- 15 -->[core] Fix React 18.3 warnings about spreading keys in the Material UI `Autocomplete` component (#42099) (#42241) @DiegoAndai
1559
+ - &#8203;<!-- 14 -->[core] Fix a few more key spread issues (@oliviertassinari) (#42318) @github-actions[bot]
1560
+ - &#8203;<!-- 11 -->[docs-infra] Allow JSDoc tags (#42327) @aarongarciah
1561
+ - &#8203;<!-- 04 -->[website] Add Nikita to the about page (@nikitaa24) (#42421) @github-actions[bot]
1562
+ - &#8203;<!-- 03 -->[website] Fix hero spacing changes applying at the wrong breakpoint (@KenanYusuf) (#42357) @github-actions[bot]
1563
+ - &#8203;<!-- 02 -->[website] Adds Kenan Yusuf to about page (@KenanYusuf) (#42330) @github-actions[bot]
1564
+ - &#8203;<!-- 01 -->[website] Improve about page @oliviertassinari
1565
+
1566
+ All contributors of this release in alphabetical order: @aarongarciah, @brijeshb42, @danilo-leal, @DiegoAndai, @KenanYusuf, @lucasgmelo, @Mandar-Pandya, @MatheusEli, @mnajdova, @nikitaa24, @oliviertassinari, @ZeeshanTamboli
1567
+
1568
+ ## 5.15.18
1569
+
1570
+ <!-- generated comparing v5.15.17..master -->
1571
+
1572
+ _May 14, 2024_
1573
+
1574
+ A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
1575
+
1576
+ ### `@mui/material@5.15.18`
1577
+
1578
+ - &#8203;<!-- 6 -->[Autocomplete] Improve design when there's a start adornment for small autocomplete (@TahaRhidouani) (#42176) @github-actions[bot]
1579
+ - &#8203;<!-- 3 -->[ToggleButtonGroup] Add missing `selected` class in ToggleButtonGroupClasses type (@tarunrajput) (#42250) @github-actions[bot]
1580
+
1581
+ ### Docs
1582
+
1583
+ - &#8203;<!-- 4 -->[docs] Fix 301 to Figma @oliviertassinari
1584
+
1585
+ ### Core
1586
+
1587
+ - &#8203;<!-- 5 -->[blog] Introducing Pigment CSS blog post (#42198) (#42255) @samuelsycamore
1588
+ - &#8203;<!-- 2 -->[website] Add redirection for talk @oliviertassinari
1589
+ - &#8203;<!-- 1 -->[website] Adds Arthur Balduini team info (@arthurbalduini) (#42226) @github-actions[bot]
1590
+
1591
+ All contributors of this release in alphabetical order: @arthurbalduini, @oliviertassinari, @samuelsycamore, @TahaRhidouani, @tarunrajput
1592
+
1593
+ ## 5.15.17
1594
+
1595
+ <!-- generated comparing v5.15.16..master -->
1596
+
1597
+ _May 8, 2024_
1598
+
1599
+ A big thanks to the 4 contributors who made this release possible.
1600
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
1601
+
1602
+ ### `@mui/material@5.15.17`
1603
+
1604
+ - [Slider] Move palette styles to the bottom (#41676) @siriwatknp
1605
+
1606
+ ### Docs
1607
+
1608
+ - Fix SEO redirection issues @oliviertassinari
1609
+ - [material-ui] Fix broken link (@aarongarciah) (#42143) @github-actions[bot]
1610
+ - [material-ui] Fix link on the Sync page (@danilo-leal) (#42089) @github-actions[bot]
1611
+
1612
+ ### Core
1613
+
1614
+ - [blog] Shorten title to fit @oliviertassinari
1615
+ - [blog] Update Sync post OG image (@danilo-leal) (#42117) @github-actions[bot]
1616
+ - [blog] A few tweaks in introducing-sync-plugin (@oliviertassinari) (#42094) @github-actions[bot]
1617
+ - [docs-infra] Fix code block layout shift (#41917) @oliviertassinari
1618
+ - [website] Fix home page slider's track position (@aarongarciah) (#42144) @github-actions[bot]
1619
+ - [website] Closing the survey @oliviertassinari
1620
+ - [website] Remove Survey banner from website and Core docs (#42104) @joserodolfofreitas
1621
+
1622
+ All contributors of this release in alphabetical order: @github-actions[bot], @joserodolfofreitas, @oliviertassinari, @siriwatknp
1623
+
1624
+ ## 5.15.16
1625
+
1626
+ <!-- generated comparing v5.15.15..master -->
1627
+
1628
+ _May 1, 2024_
1629
+
1630
+ A big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1631
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
1632
+
1633
+ ### `@mui/material@5.15.16`
1634
+
1635
+ - [material-ui][Dialog] Prevent onClick on the root element from being overwritten (@ryanburr) (#41914) @github-actions[bot]
1636
+ - [material-ui][Select] Fix `muiName` property TypeScript error (@EyaOuenniche) (#41786) @github-actions[bot]
1637
+ - —>[material-ui][l10n] Fix typo in is-IS locale (@magnimarels) (#41815) @github-actions[bot]
1638
+
1639
+ ### Docs
1640
+
1641
+ - Fix small SEO issues @oliviertassinari
1642
+ - Fix 301 Toolpad links @oliviertassinari
1643
+ - Fix 301 Toolpad links @oliviertassinari
1644
+ - Fix 301 image redirections @oliviertassinari
1645
+ - Fix small SEO issues @oliviertassinari
1646
+ - Fix 301 redirection @oliviertassinari
1647
+ - Fix format git diff regression (#41882) @oliviertassinari
1648
+ - Fix 301 links @oliviertassinari
1649
+ - [material-ui] Fix import statement in migration guide (@sai6855) (#41864) @github-actions[bot]
1650
+ - [material-ui] Update Figma plugin name (@danilo-leal) (#42057) @github-actions[bot]
1651
+ - [material-ui] Fix minor spelling error in the "About the lab" page (@ryanhartwig) (#42075) @github-actions[bot]
1652
+ - [material-ui] Add missing backticks to HTML tag in the installation page (@Miguelrom) (#42009) @github-actions[bot]
1653
+ - [material-ui] Add Connect-related content (@danilo-leal) (#41924) @DiegoAndai
1654
+ - [material-ui] Fix Material 3 message typo (@aarongarciah) (#41822) @github-actions[bot]
1655
+ - [material-ui] Remove Data Grid v7 beta callout (@cherniavskii) (#41842) @github-actions[bot]
1656
+ - [material-ui][templates] Fix input props attributes in Landing Page template (@5-tom) (#42034) @github-actions[bot]
1657
+ - [system] Update typo on the sx prop page (@bricker) (#42078) @github-actions[bot]
1658
+
1659
+ ### Core
1660
+
1661
+ - [blog] Add post to introduce the Connect plugin (@danilo-leal) (#41929) @DiegoAndai
1662
+ - [core] Automate cherry-pick of PRs from `next` -> `master` (#41742) @aarongarciah
1663
+ - [docs-infra] Improve Twitter OG:image (#41860) @oliviertassinari
1664
+ - [docs-infra] Use edge function for card generation (#41188) @alexfauquette
1665
+ - [docs-infra] Fix drawer performances (#41807) (#41820) @alexfauquette
1666
+ - [docs-infra] Fix analytics about inline ads (#41474) @alexfauquette
1667
+ - [website] Sync career roles (@oliviertassinari) (#42059) @github-actions[bot]
1668
+ - [website] Add content about the Sync plugin in the Material UI page (@danilo-leal) (#42074) @github-actions[bot]
1669
+ - [website] Add Nadja on the about page (#42054) @mnajdova
1670
+ - [website] Close the `Design Engineer - X` role (#42014) @DanailH
1671
+ - [website] Remove customer support agent role from website (@rluzists1) (#41996) @github-actions[bot]
1672
+ - [website] Add Jose to About Us (#41759) @JCQuintas
1673
+
1674
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @DanailH, @DiegoAndai, @github-actions[bot], @JCQuintas, @mnajdova, @oliviertassinari
1675
+
1676
+ ## 5.15.15
337
1677
 
338
1678
  <!-- generated comparing v5.15.14..master -->
339
1679
 
@@ -373,7 +1713,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
373
1713
 
374
1714
  All contributors of this release in alphabetical order: @aarongarciah, @bharatkashyap, @cherniavskii, @danilo-leal, @mnajdova, @oliviertassinari, @ZeeshanTamboli
375
1715
 
376
- ## v5.15.14
1716
+ ## 5.15.14
377
1717
 
378
1718
  <!-- generated comparing v5.15.13..master -->
379
1719
 
@@ -429,7 +1769,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
429
1769
 
430
1770
  All contributors of this release in alphabetical order: @bharatkashyap, @brijeshb42, @cherniavskii, @cipherlogs, @danilo-leal, @DiegoAndai, @EyaOuenniche, @Janpot, @jherr, @michaldudak, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @zanivan
431
1771
 
432
- ## v5.15.13
1772
+ ## 5.15.13
433
1773
 
434
1774
  <!-- generated comparing v5.15.12..master -->
435
1775
 
@@ -521,7 +1861,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
521
1861
 
522
1862
  All contributors of this release in alphabetical order: @alexfauquette, @anle9650, @brijeshb42, @CGNonofr, @cipherlogs, @danilo-leal, @jwithington, @Janpot, @michaeldfoley, @michaldudak, @mnajdova, @oliviertassinari, @peterwangsc, @rakeshmusturi, @sai6855, @siriwatknp, @zanivan, @ZeeshanTamboli
523
1863
 
524
- ## v5.15.12
1864
+ ## 5.15.12
525
1865
 
526
1866
  <!-- generated comparing v5.15.11..master -->
527
1867
 
@@ -603,7 +1943,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
603
1943
 
604
1944
  All contributors of this release in alphabetical order: @alexfauquette, @atomiks, @brijeshb42, @DanailH, @danilo-leal, @DiegoAndai, @divyammadhok, @Janpot, @lhilgert9, @matystroia, @michaldudak, @michelengelen, @mj12albert, @oliviertassinari, @prakhargupta1, @PunitSoniME, @sai6855, @siriwatknp, @smox, @zanivan, @ZeeshanTamboli
605
1945
 
606
- ## v5.15.11
1946
+ ## 5.15.11
607
1947
 
608
1948
  <!-- generated comparing v5.15.10..master -->
609
1949
 
@@ -689,6 +2029,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
689
2029
  - [core] Fix TypeScript spelling in changelog @oliviertassinari
690
2030
  - [core] Fix small detail in the autocomplete demo @oliviertassinari
691
2031
  - [core] Increase node memory limit on Netlify build (#41111) @michaldudak
2032
+ - [core] Fix Netlify build cache issue (#43281) @LukasTy
692
2033
  - [core][Tooltip] Remove incorrect code comment (#41179) @ZeeshanTamboli
693
2034
  - [core] Fix missing context display names (#41168) @oliviertassinari
694
2035
  - [core][base-ui] Remove `@mui/base` dev dependency from Base UI workspace (#41216) @ZeeshanTamboli
@@ -719,7 +2060,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
719
2060
 
720
2061
  All contributors of this release in alphabetical order: @alexfauquette, @brijeshb42, @danilo-leal, @DiegoAndai, @dpertsin, @flaviendelangle, @gitstart, @gregberge, @harrydigos, @Janpot, @justintoman, @khgiddon, @KirankumarAmbati, @LukasTy, @michaldudak, @mnajdova, @nikosgavalas, @oliviertassinari, @PaulKristoffersson, @Rishi556, @rluzists1, @sai6855, @samuelsycamore, @siriwatknp, @zanivan, @ZeeshanTamboli
721
2062
 
722
- ## v5.15.10
2063
+ ## 5.15.10
723
2064
 
724
2065
  <!-- generated comparing v5.15.9..master -->
725
2066
 
@@ -767,7 +2108,9 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
767
2108
 
768
2109
  All contributors of this release in alphabetical order: @cherniavskii, @danilo-leal, @joserodolfofreitas, @millerized, @oliviertassinari, @sai6855, @siriwatknp, @Smileek
769
2110
 
770
- ## v5.15.9<!-- generated comparing v5.15.8..master -->
2111
+ ## 5.15.9
2112
+
2113
+ <!-- generated comparing v5.15.8..master -->
771
2114
 
772
2115
  _Feb 8, 2024_
773
2116
 
@@ -802,7 +2145,9 @@ A big thanks to the 7 contributors who made this release possible. Here are some
802
2145
 
803
2146
  All contributors of this release in alphabetical order: @brijeshb42, @DiegoAndai, @Janpot, @oliviertassinari, @RaghavenderSingh, @sai6855, @siriwatknp
804
2147
 
805
- ## v5.15.8<!-- generated comparing v5.15.7..master -->
2148
+ ## 5.15.8
2149
+
2150
+ <!-- generated comparing v5.15.7..master -->
806
2151
 
807
2152
  _Feb 6, 2024_
808
2153
 
@@ -881,7 +2226,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
881
2226
 
882
2227
  All contributors of this release in alphabetical order: @adebiyial, @brijeshb42, @danilo-leal, @DiegoAndai, @hsmtkk, @Janpot, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @rluzists1, @romgrk, @sai6855, @siriwatknp, @Smileek, @xuhdev, @zanivan
883
2228
 
884
- ## v5.15.7
2229
+ ## 5.15.7
885
2230
 
886
2231
  <!-- generated comparing v5.15.6..master -->
887
2232
 
@@ -976,7 +2321,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
976
2321
 
977
2322
  All contributors of this release in alphabetical order: @alexfauquette, @colmtuite, @danilo-leal, @DiegoAndai, @EyaOuenniche, @flaviendelangle, @Janpot, @Jaswanth-Sriram-Veturi, @joserodolfofreitas, @michaldudak, @mirus-ua, @mnajdova, @mohamedsaiedd, @Nikhilh26, @oliviertassinari, @romgrk, @sai6855, @siriwatknp, @srinidhi9831, @zanivan, @ZeeshanTamboli
978
2323
 
979
- ## v5.15.6
2324
+ ## 5.15.6
980
2325
 
981
2326
  <!-- generated comparing v5.15.5..master -->
982
2327
 
@@ -1035,7 +2380,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
1035
2380
 
1036
2381
  All contributors of this release in alphabetical order: @alexfauquette, @anle9650, @ANUGLYPLUGIN, @brijeshb42, @danilo-leal, @devhik0, @DiegoAndai, @DonikaV, @joserodolfofreitas, @michaldudak, @mj12albert, @mnajdova, @mohamedsaiedd, @oliviertassinari, @pcorpet, @sai6855, @zanivan
1037
2382
 
1038
- ## v5.15.5
2383
+ ## 5.15.5
1039
2384
 
1040
2385
  <!-- generated comparing v5.15.4..master -->
1041
2386
 
@@ -5116,7 +6461,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
5116
6461
 
5117
6462
  All contributors of this release in alphabetical order: @alexfauquette, @danilo-leal, @iamxukai, @Janpot, @MBilalShafi, @michaldudak, @oliviertassinari, @samuelsycamore, @siriwatknp
5118
6463
 
5119
- ## v5.10.14
6464
+ ## 5.10.14
5120
6465
 
5121
6466
  <!-- generated comparing v5.10.13..master -->
5122
6467
 
@@ -5184,7 +6529,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
5184
6529
 
5185
6530
  All contributors of this release in alphabetical order: @alexfauquette, @bharatkashyap, @cherniavskii, @danilo-leal, @hbjORbj, @Janpot, @kennethbigler, @kushagra010, @michaldudak, @mnajdova, @ofir5300, @oliviertassinari, @sai6855, @sfavello, @sidtohan, @siriwatknp, @Studio384
5186
6531
 
5187
- ## v5.10.13
6532
+ ## 5.10.13
5188
6533
 
5189
6534
  <!-- generated comparing v5.10.12..master -->
5190
6535
 
@@ -5242,7 +6587,7 @@ A big thanks to the 12 contributors who made this release possible. Here are som
5242
6587
 
5243
6588
  All contributors of this release in alphabetical order: @akshaya-venkatesh8, @alexfauquette, @hbjORbj, @Janpot, @jesrodri, @michaldudak, @oliviertassinari, @PetroSilenius, @samuelsycamore, @shivam1646, @siriwatknp, @trizotti
5244
6589
 
5245
- ## v5.10.12
6590
+ ## 5.10.12
5246
6591
 
5247
6592
  <!-- generated comparing v5.10.11..master -->
5248
6593
 
@@ -5318,7 +6663,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
5318
6663
 
5319
6664
  All contributors of this release in alphabetical order: @cherniavskii, @DanailH, @EduardoSCosta, @emlai, @hbjORbj, @Janpot, @michaldudak, @mnajdova, @oliviertassinari, @punithnayak, @PunitSoniME, @renovate[bot], @RoodyCode, @samuelsycamore, @siriwatknp, @VinceCYLiao
5320
6665
 
5321
- ## v5.10.11
6666
+ ## 5.10.11
5322
6667
 
5323
6668
  <!-- generated comparing v5.10.10..master -->
5324
6669
 
@@ -8562,7 +9907,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
8562
9907
 
8563
9908
  - &#8203;<!-- 27 -->[core] Rename mui/core to mui/base (#29585) @michaldudak
8564
9909
 
8565
- Based on the results of the [poll](https://twitter.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @mui/core was effectively a subset of MUI Core. This was confusing.
9910
+ Based on the results of the [poll](https://x.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @mui/core was effectively a subset of MUI Core. This was confusing.
8566
9911
 
8567
9912
  The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a **base** to build on.
8568
9913
 
@@ -12979,7 +14324,7 @@ A big thanks to the 34 contributors who made this release possible. Here are som
12979
14324
  ```
12980
14325
 
12981
14326
  - [Autocomplete] Remove `debug` in favor of `open` and dev tools (#23377) @eps1lon
12982
- There are a couple of simpler alternatives: `open={true}`, Chrome devtools ["Emulate focused"](https://twitter.com/sulco/status/1305841873945272321), or React devtools props.
14327
+ There are a couple of simpler alternatives: `open={true}`, Chrome devtools ["Emulate focused"](https://x.com/sulco/status/1305841873945272321), or React devtools props.
12983
14328
 
12984
14329
  #### Changes
12985
14330