1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
Commit Graph

12846 Commits

Author SHA1 Message Date
Tymoteusz Czech
de7b95a691
fix: e2e cypress create flag delay (#8968) 2024-12-12 13:43:01 +01:00
Ivar Conradi Østhus
bdfccc534a
fix: remove unused vulnerable transitive dependency 'prompt' (#8953)
My goal was to remove the "revalidator" dependency coming as a
transitive dependency from db-migrate. Everything seems to still work on
my machine...
2024-12-12 12:38:50 +00:00
dependabot[bot]
e88cbb4185
chore(deps): bump nanoid from 3.3.7 to 3.3.8 in /frontend (#8962)
Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ai/nanoid/blob/main/CHANGELOG.md">nanoid's
changelog</a>.</em></p>
<blockquote>
<h2>3.3.8</h2>
<ul>
<li>Fixed a way to break Nano ID by passing non-integer size (by <a
href="https://github.com/myndzi"><code>@​myndzi</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3044cd5e73"><code>3044cd5</code></a>
Release 3.3.8 version</li>
<li><a
href="4fe34959c3"><code>4fe3495</code></a>
Update size limit</li>
<li><a
href="d643045f40"><code>d643045</code></a>
Fix pool pollution, infinite loop (<a
href="https://redirect.github.com/ai/nanoid/issues/510">#510</a>)</li>
<li>See full diff in <a
href="https://github.com/ai/nanoid/compare/3.3.7...3.3.8">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nanoid&package-manager=npm_and_yarn&previous-version=3.3.7&new-version=3.3.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/Unleash/unleash/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-12 13:36:06 +01:00
Jaanus Sellin
59bdfcd84b
feat: first revision of delta api (#8967)
This is not changing existing logic.
We are creating a new endpoint, which is guarded behind a flag.

---------

Co-authored-by: Simon Hornby <liquidwicked64@gmail.com>
Co-authored-by: FredrikOseberg <fredrik.no@gmail.com>
2024-12-12 14:18:11 +02:00
Mateusz Kwasniewski
fe8308da1f
feat: productivity email action text (#8966) 2024-12-12 12:00:08 +01:00
Fredrik Strand Oseberg
7c646bc523
Chore/increase client api test coverage (#8950)
Added more tests around specific plans. Also added snapshot as per our
conversation @gastonfournier, but I'm unsure how much value it will give
because it seems that the tests should already catch this using
respondWithValidation and the OpenAPI schema. The problem here is that
empty array is a valid state, so there were no reason for the schema to
break the tests.
2024-12-12 11:42:18 +01:00
David Leek
8ad63bc035
feat: make segments editing work with template milestone strategies (#8964) 2024-12-12 11:27:32 +01:00
Tymoteusz Czech
828ecf8d63
fix: migrations e2e test (#8965)
Onboarding changed e2e test that should run before migration.
2024-12-12 11:19:03 +01:00
Thomas Heartman
7a436347cb
fix(1-3173): clear "removed tags" when you bulk update tags (#8952)
This PR fixes a bug wherein the list of tags to remove from a group of
tags wouldn't be correctly updated.

## Repro steps
- Add a console log line to
`frontend/src/component/feature/FeatureView/FeatureOverview/ManageTagsDialog/ManageBulkTagsDialog.tsx`'s
`ManagebulkTagsDialog`. Log the value of the`payload` variable.
- Pick a flag with no tags.
- Add tag A -> before submitting, you should have one added tag and zero
removed flags. After submitting, both should be empty.
- Now remove tag A -> before submitting, you should have one removed tag
and zero added tag. After submitting, both should be empty
- Notice that removed flags hasn't been emptied, but still contains tag
A.
- Now add tab B -> before submitting, you should have tag B in added and
nothing in removed. Notice that tag A is still in removed.



## Discussion points

This gives us both a `clear` and a `reset` event, which is unfortunate
because they sound like they do the same thing. I'd suggest renaming the
`clear` event (because it doesn't really clear the state completely),
but I'm not sure to what. Happy to do that if you have a suggestion.

I have not tested that submission of the form actually resets the state.
I spent about 45 minutes looking at it, but couldn't find a way that was
sensible and worked (considered spying: couldn't make it work;
considered refactoring and extracting components: think that's too much
of a change). I think this is benign enough that it can go without a
test for that thing actually being called.

I did, however, test the different reducer commands.
2024-12-12 09:31:39 +01:00
Mateusz Kwasniewski
37a3ec9599
fix: productivity report small screens (#8963) 2024-12-12 09:21:55 +01:00
Jaanus Sellin
17d3b5c2fb
fix: make project ui query optimized (#8961)
From 13 seconds to 0.1 seconds.

1. Joining 1 million events to projects/features is slow. **Solved by
using CTE.**
2. Running grouping on 1 million rows is slow. **Solved by adding
index.**
2024-12-12 08:41:10 +02:00
Michael Ferranti
c3f50263c8
Update fedramp and soc2 docs to point to Unleash Enterprise (#8957) 2024-12-11 14:35:55 +01:00
Christopher Kolstad
f8f7b55a53
task: Remove docker package setup. (#8959)
Keeping the index.js inside the docker folder to avoid our tsconfig
having to be changed. In addition, updated the build to copy less of the
folders into our final image, since we really only needed build and
node_modules.

Should reduce attack surface of the container.
2024-12-11 13:50:38 +01:00
Mateusz Kwasniewski
a1f147dfef
fix: move productivity report to features dir (#8960) 2024-12-11 12:06:50 +01:00
Mateusz Kwasniewski
48b21591f6
feat: productivity report trends visualization (#8956) 2024-12-11 11:19:08 +01:00
Melinda Fekete
311df82d37
Strategy docs updates (#8711)
- New navigation for Unleash Concepts
- Updated and restructured activation strategies and related concepts
2024-12-11 10:38:39 +01:00
gitar-bot[bot]
8c189cabd2
[Gitar] Cleaning up stale flag: purchaseAdditionalEnvironments with value false (#8955)
[![Gitar](https://raw.githubusercontent.com/gitarcode/.github/main/assets/gitar-banner.svg)](https://gitar.ai)
This automated PR permanently removes the
`purchaseAdditionalEnvironments` feature flag.
  
  ---
This automated PR was generated by [Gitar](https://gitar.ai). View
[docs](https://gitar.ai/docs).

---------

Co-authored-by: Gitar <noreply@gitar.ai>
Co-authored-by: sjaanus <sellinjaanus@gmail.com>
2024-12-11 10:11:23 +02:00
dependabot[bot]
eb7e2a655d
chore(deps): bump nanoid from 3.3.7 to 3.3.8 in /website (#8947)
Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ai/nanoid/blob/main/CHANGELOG.md">nanoid's
changelog</a>.</em></p>
<blockquote>
<h2>3.3.8</h2>
<ul>
<li>Fixed a way to break Nano ID by passing non-integer size (by <a
href="https://github.com/myndzi"><code>@​myndzi</code></a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3044cd5e73"><code>3044cd5</code></a>
Release 3.3.8 version</li>
<li><a
href="4fe34959c3"><code>4fe3495</code></a>
Update size limit</li>
<li><a
href="d643045f40"><code>d643045</code></a>
Fix pool pollution, infinite loop (<a
href="https://redirect.github.com/ai/nanoid/issues/510">#510</a>)</li>
<li>See full diff in <a
href="https://github.com/ai/nanoid/compare/3.3.7...3.3.8">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nanoid&package-manager=npm_and_yarn&previous-version=3.3.7&new-version=3.3.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/Unleash/unleash/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-10 16:08:28 +01:00
Alvin Bryan
708fce4428
docs: Fixed diff syntax (#8937)
The blocks with `diff` syntax didn't render correctly. This is a result
of Docusaurus v3 [changing the included languages
](https://docusaurus.io/docs/migration/v3#prism-react-renderer-v20).
2024-12-10 14:48:09 +00:00
Tymoteusz Czech
5cc0e589e8
feat(cjux-278): maintenance root roles (#8875)
Custom root roles for changing maintenance mode state and banners.

Internal ticket: CJUX-278
2024-12-10 15:22:46 +01:00
Thomas Heartman
c860d8e434
chore: remove console.log 2024-12-10 14:39:57 +01:00
Thomas Heartman
b2c58102dd
chore(unl-204): remove uses of toast text and confetti (#8941)
As of PR #8935, we no longer support both text and title, and confetti
has been removed.

This PR:
- removes `confetti` from the toast interface
- merges `text` and `title` into `text` and updates its uses across the
codebase.
- readjusts the text where necessary.
2024-12-10 13:38:04 +00:00
Thomas Heartman
2f7beceb21
chore(unl-204): make toasts smaller (#8935)
This PR makes toasts smaller and less intrusive, and gives them a new
color scheme.

Changes include:
- new color scheme
- no description, only title
- new padding
- removes confetti code (even when rendered, they're invisible; UX also
says to cut it)
- use warning triangle for error messages 

I've also set a max height on the container and made it scrollable if
it's too tall to deal with super long messages.

I'll remove the description and confetti props in a separate PR to keep
this one cleaner.

Light mode:

![image](https://github.com/user-attachments/assets/05666259-bc40-4c87-8e51-9900bc67310e)

![image](https://github.com/user-attachments/assets/25dfca09-af5f-4a2a-8490-1169f6d8accb)


Dark mode:

![image](https://github.com/user-attachments/assets/8fa199aa-3cb5-47b4-acaa-1b0fcfd668eb)

![image](https://github.com/user-attachments/assets/eca7d26e-f695-43f9-b281-a64315544212)


With line break (min-width):

![image](https://github.com/user-attachments/assets/2ebd9117-a7c2-4a96-8b4b-c217ba12993b)

With line break (max-width):

![image](https://github.com/user-attachments/assets/8015c761-fc1e-4ff9-992d-a0e9ec27a4f9)

With very long message on phone in landscape mode:


![image](https://github.com/user-attachments/assets/7dc34d25-026c-46c3-9906-dc1348daf208)
2024-12-10 13:10:04 +00:00
Mateusz Kwasniewski
7ff6a9c5c8
chore: remove oidc UI flag (#8949) 2024-12-10 11:56:50 +01:00
Fredrik Strand Oseberg
dfcb196b20
feat: add core feature alert gh action (#8948)
Adds a GH action that notifies us that core features were changed. The
action listens on paths in the source code where our client api and
frontend api are located. If there is a change to these files, we add a
comment to the PR to review carefully and add principals and CTO as
reviewers.
2024-12-10 10:09:52 +01:00
Mateusz Kwasniewski
9de96c8004
feat: OIDC redirect flag (#8944) 2024-12-10 09:07:00 +01:00
renovate[bot]
87d03e8270
chore(deps): update dependency sass to v1.81.1 (#8946)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://redirect.github.com/sass/dart-sass) | [`1.81.0` ->
`1.81.1`](https://renovatebot.com/diffs/npm/sass/1.81.0/1.81.1) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.81.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.81.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.81.0/1.81.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.81.0/1.81.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>sass/dart-sass (sass)</summary>

###
[`v1.81.1`](https://redirect.github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1811)

[Compare
Source](https://redirect.github.com/sass/dart-sass/compare/1.81.0...1.81.1)

-   No user-visible changes.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-10 03:17:09 +00:00
Mateusz Kwasniewski
23bdf0356a
feat: health rating color in email (#8943) 2024-12-09 15:44:16 +01:00
Mateusz Kwasniewski
3a0cddc345
chore: update node sdk (#8940) 2024-12-09 14:44:15 +01:00
Mateusz Kwasniewski
4274bd6635
chore: view more insights color update (#8938) 2024-12-09 13:54:12 +01:00
David Leek
15950e4ea0
feat: release plan template milestone UI listing strategies (#8933) 2024-12-09 13:39:36 +01:00
Tymoteusz Czech
e8179d4dd2
feat(productivity-report): additional email headers test (#8540)
Test ability to add custom header to non-transactional email.
2024-12-09 11:33:25 +00:00
Mateusz Kwasniewski
d40b0795f9
feat: productivity report cta (#8936) 2024-12-09 12:32:50 +01:00
renovate[bot]
d85c4d52cd
chore(deps): update material-ui monorepo (#8928)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@mui/icons-material](https://mui.com/material-ui/material-icons/)
([source](https://redirect.github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material))
| [`5.15.3` ->
`5.16.8`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.3/5.16.8)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.15.3/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.15.3/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/lab](https://mui.com/material-ui/about-the-lab/)
([source](https://redirect.github.com/mui/material-ui/tree/HEAD/packages/mui-lab))
| [`5.0.0-alpha.159` ->
`5.0.0-alpha.174`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.174)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2flab/5.0.0-alpha.174?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2flab/5.0.0-alpha.174?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.174?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.174?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/material](https://mui.com/material-ui/)
([source](https://redirect.github.com/mui/material-ui/tree/HEAD/packages/mui-material))
| [`5.15.3` ->
`5.16.8`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.15.3/5.16.8)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.15.3/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.15.3/5.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/x-date-pickers](https://mui.com/x/react-date-pickers/)
([source](https://redirect.github.com/mui/mui-x/tree/HEAD/packages/x-date-pickers))
| [`7.22.3` ->
`7.23.0`](https://renovatebot.com/diffs/npm/@mui%2fx-date-pickers/7.22.3/7.23.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-date-pickers/7.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-date-pickers/7.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-date-pickers/7.22.3/7.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-date-pickers/7.22.3/7.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mui/material-ui (@&#8203;mui/icons-material)</summary>

###
[`v5.16.8`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.8)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.7...v5.16.8)

A big thanks to the 8 contributors who made this release possible.

##### `@mui/material@5.16.8`

- Cherry pick ref accessing PRs
([#&#8203;44543](https://redirect.github.com/mui/material-ui/issues/44543))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

##### `@mui/utils@5.16.8`

- Skip deep clone React element (v5.x)
([#&#8203;44494](https://redirect.github.com/mui/material-ui/issues/44494))
[@&#8203;jukkatupamaki](https://redirect.github.com/jukkatupamaki)

##### Docs

- Keep sponsors up to date
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Fix MUI Treasury Layout broken links
([#&#8203;43753](https://redirect.github.com/mui/material-ui/issues/43753))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Strengthen CSP rule
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Give up on restoring search
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Normalize next major message
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Fix versions URL
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Fix use of absolute URLs
([#&#8203;43567](https://redirect.github.com/mui/material-ui/issues/43567))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Restore search on v5
([#&#8203;43566](https://redirect.github.com/mui/material-ui/issues/43566))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Fix link from v5 to v6
([#&#8203;43585](https://redirect.github.com/mui/material-ui/issues/43585))
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette)
- Updated mui-x roadmap links with the new project URL
([@&#8203;michelengelen](https://redirect.github.com/michelengelen))
([#&#8203;43446](https://redirect.github.com/mui/material-ui/issues/43446))
[@&#8203;michelengelen](https://redirect.github.com/michelengelen)
- Fix broken link to Next.js docs
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

##### Core

- \[blog] Polish Upcoming changes to MUI X pricing in 2024
([#&#8203;43438](https://redirect.github.com/mui/material-ui/issues/43438))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[blog] Add video to the Pigment CSS blog post
([#&#8203;42500](https://redirect.github.com/mui/material-ui/issues/42500))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[blog] Announcing pricing changes Sep 2024
([#&#8203;43272](https://redirect.github.com/mui/material-ui/issues/43272))
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii)
- Prepare for moving to v5.x branch
([#&#8203;43447](https://redirect.github.com/mui/material-ui/issues/43447))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- \[core] Cherry pick
[#&#8203;42346](https://redirect.github.com/mui/material-ui/issues/42346)
to v5
([#&#8203;44475](https://redirect.github.com/mui/material-ui/issues/44475))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- \[core] Fix CI on v5.x branch
([#&#8203;44487](https://redirect.github.com/mui/material-ui/issues/44487))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- \[core] Fix CI on v5.x branch
([#&#8203;43564](https://redirect.github.com/mui/material-ui/issues/43564))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[examples] Fix v5 clone example instructions
([#&#8203;43755](https://redirect.github.com/mui/material-ui/issues/43755))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[examples] Fix CLI download instructions
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[examples] Fix CDN live preview example
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[examples] Fix more examples to work with v5
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[examples] Freeze examples dependency range
([#&#8203;43435](https://redirect.github.com/mui/material-ui/issues/43435))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

All contributors of this release in alphabetical order:
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette),
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii),
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai),
[@&#8203;jukkatupamaki](https://redirect.github.com/jukkatupamaki),
[@&#8203;michelengelen](https://redirect.github.com/michelengelen),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;rluzists1](https://redirect.github.com/rluzists1),
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

###
[`v5.16.7`](https://redirect.github.com/mui/material-ui/compare/v5.16.6...v5.16.7)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.6...v5.16.7)

###
[`v5.16.6`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.6)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.5...v5.16.6)

<!-- generated comparing v5.16.5..master -->

*Jul 30, 2024*

A big thanks to the 5 contributors who made this release possible.

##### `@mui/material@5.16.6`

- \[Divider] Enable borderStyle enhancement in divider with children
([#&#8203;43059](https://redirect.github.com/mui/material-ui/issues/43059))
[@&#8203;anuujj](https://redirect.github.com/anuujj)

##### Docs

- \[material-ui]\[Card] Update CardMedia description
([#&#8203;43121](https://redirect.github.com/mui/material-ui/issues/43121))
[@&#8203;shahzaibdev1](https://redirect.github.com/shahzaibdev1)
- \[material-ui] Replace deprecated `<ListItem button/>` with
`ListItemButton` component in routing libraries list example
([#&#8203;43114](https://redirect.github.com/mui/material-ui/issues/43114))
[@&#8203;aliharis99](https://redirect.github.com/aliharis99)
- \[material-ui]\[Snackbar] Improve close `reason` type in demos
([#&#8203;43105](https://redirect.github.com/mui/material-ui/issues/43105))
[@&#8203;sai6855](https://redirect.github.com/sai6855)

##### Core

- \[code-infra] Use the same CI names on master & next
([#&#8203;43064](https://redirect.github.com/mui/material-ui/issues/43064))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

All contributors of this release in alphabetical order:
[@&#8203;aliharis99](https://redirect.github.com/aliharis99),
[@&#8203;anuujj](https://redirect.github.com/anuujj),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;sai6855](https://redirect.github.com/sai6855),
[@&#8203;shahzaibdev1](https://redirect.github.com/shahzaibdev1)

###
[`v5.16.5`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.5)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.4...v5.16.5)

*Jul 25, 2024*

A big thanks to the 4 contributors who made this release possible.

##### `@mui/utils@5.16.5`

- ​<!-- 1 -->\[utils] Add dependency to
[@&#8203;mui/types](https://redirect.github.com/mui/types)
([@&#8203;mnajdova](https://redirect.github.com/mnajdova))
([#&#8203;43047](https://redirect.github.com/mui/material-ui/issues/43047))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

##### Docs

- ​<!-- 4 -->\[material-ui]\[joy-ui]\[Autocomplete] Fix `Hint` demo
([@&#8203;ManthanGajjar](https://redirect.github.com/ManthanGajjar))
([#&#8203;43039](https://redirect.github.com/mui/material-ui/issues/43039))
[@&#8203;ManthanGajjar](https://redirect.github.com/ManthanGajjar)
- ​<!-- 3 -->Fix CHANGELOG convention
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 2 -->\[material-ui] Fix broken image links in blog template on
master branch
([#&#8203;42969](https://redirect.github.com/mui/material-ui/issues/42969))
[@&#8203;navedqb](https://redirect.github.com/navedqb)

All contributors of this release in alphabetical order:
[@&#8203;ManthanGajjar](https://redirect.github.com/ManthanGajjar),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;navedqb](https://redirect.github.com/navedqb),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

**Full Changelog**:
https://github.com/mui/material-ui/compare/v5.16.4...v5.16.5

###
[`v5.16.4`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.4)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.3...v5.16.4)

*Jul 16, 2024*

A big thanks to the one contributor who made this release possible.

##### `@mui/material@5.16.4`

- ​<!-- 1 -->Fix wrong import in Popover types
([#&#8203;42967](https://redirect.github.com/mui/material-ui/issues/42967))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

All contributors of this release in alphabetical order:
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

###
[`v5.16.3`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.3)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.2...v5.16.3)

*Jul 16, 2024*

A big thanks to the 3 contributors who made this release possible.

##### `@mui/material@5.16.3`

- ​<!-- 1 -->\[material] Add missing dependency
([#&#8203;42959](https://redirect.github.com/mui/material-ui/issues/42959))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

##### Docs

- ​<!-- 3 -->\[material-ui]\[Autocomplete] Add instructions about
`autosuggest-highlight` dependency
([#&#8203;42953](https://redirect.github.com/mui/material-ui/issues/42953))
[@&#8203;HoFa1997](https://redirect.github.com/HoFa1997)
- ​<!-- 2 -->Move feedback from Canny to GitHub
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

All contributors of this release in alphabetical order:
[@&#8203;HoFa1997](https://redirect.github.com/HoFa1997),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

###
[`v5.16.2`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.2)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.1...v5.16.2)

*Jul 16, 2024*

A big thanks to the 2 contributors who made this release possible.

##### `@mui/material@5.16.2`

- ​<!-- 2 -->\[material] Remove dependency to
[@&#8203;mui/base](https://redirect.github.com/mui/base)
([@&#8203;mnajdova](https://redirect.github.com/mnajdova))
([#&#8203;42917](https://redirect.github.com/mui/material-ui/issues/42917))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

##### Core

- ​<!-- 1 -->\[website] Sync /about page
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

All contributors of this release in alphabetical order:
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

###
[`v5.16.1`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.1)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.16.0...v5.16.1)

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

- ⚛️ All packages, including Material UI, are now compatible with React
18.3.1

##### `@mui/material@5.16.1`

- \[AppBar] Fix inherit color is inconsistent between ThemeProvider and
CssVarsProvider
([#&#8203;42713](https://redirect.github.com/mui/material-ui/issues/42713))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

##### `@mui/joy@5.0.0-beta.48`

- \[Autocomplete] Fix React spread key warning
([#&#8203;42856](https://redirect.github.com/mui/material-ui/issues/42856))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)

##### Docs

- \[material-ui] Fix React 18.3 key spread warnings in Autocomplete
demos
([#&#8203;42854](https://redirect.github.com/mui/material-ui/issues/42854))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[material-ui] Fix type error in virtualized table demo
([#&#8203;42852](https://redirect.github.com/mui/material-ui/issues/42852))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- Fix typos ([@&#8203;omahs](https://redirect.github.com/omahs))
([#&#8203;42888](https://redirect.github.com/mui/material-ui/issues/42888))
[@&#8203;omahs](https://redirect.github.com/omahs)
- Fix 301
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

##### Core

- \[core] Bump React to 18.3.1
([#&#8203;42846](https://redirect.github.com/mui/material-ui/issues/42846))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[core] Remove react-test-renderer
([#&#8203;42853](https://redirect.github.com/mui/material-ui/issues/42853))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[core] Replace enzyme in describeConformance
([#&#8203;42847](https://redirect.github.com/mui/material-ui/issues/42847))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[test] Remove enzyme
([#&#8203;42850](https://redirect.github.com/mui/material-ui/issues/42850))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[test] Remove createMount test util
([#&#8203;42849](https://redirect.github.com/mui/material-ui/issues/42849))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[base-ui] Fix React spread key warning in test
([#&#8203;42855](https://redirect.github.com/mui/material-ui/issues/42855))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[styles]\[withStyles] Expect React defaultProps warning in test
([#&#8203;42752](https://redirect.github.com/mui/material-ui/issues/42752))
([#&#8203;42851](https://redirect.github.com/mui/material-ui/issues/42851))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)

All contributors of this release in alphabetical order:
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;omahs](https://redirect.github.com/omahs),
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

###
[`v5.16.0`](https://redirect.github.com/mui/material-ui/releases/tag/v5.16.0)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.21...v5.16.0)

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

- 🚀 Added `InitColorSchemeScript` for Next.js App Router
([#&#8203;42829](https://redirect.github.com/mui/material-ui/issues/42829))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

##### `@mui/material@5.16.0`

- \[Alert] Add ability to override slot props
([@&#8203;alexey-kozlenkov](https://redirect.github.com/alexey-kozlenkov))
([#&#8203;42808](https://redirect.github.com/mui/material-ui/issues/42808))
[@&#8203;alexey-kozlenkov](https://redirect.github.com/alexey-kozlenkov)
- Add `InitColorSchemeScript` for Next.js App Router
([#&#8203;42829](https://redirect.github.com/mui/material-ui/issues/42829))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- Add `DefaultPropsProvider`
([#&#8203;42820](https://redirect.github.com/mui/material-ui/issues/42820))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- Support `CssVarsTheme` in `responsiveFontSizes` return type
([@&#8203;jxdp](https://redirect.github.com/jxdp))
([#&#8203;42806](https://redirect.github.com/mui/material-ui/issues/42806))
[@&#8203;jxdp](https://redirect.github.com/jxdp)
- Remove warning from `getInitColorSchemeScript`
([#&#8203;42838](https://redirect.github.com/mui/material-ui/issues/42838))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

##### Docs

- \[docs] Fix 301 MDN redirections
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

##### Core

- \[mui-utils]\[test] Remove usages of deprecated react-dom APIs
([@&#8203;aarongarciah](https://redirect.github.com/aarongarciah))
([#&#8203;42813](https://redirect.github.com/mui/material-ui/issues/42813))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)

All contributors of this release in alphabetical order:
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah),
[@&#8203;alexey-kozlenkov](https://redirect.github.com/alexey-kozlenkov),
[@&#8203;jxdp](https://redirect.github.com/jxdp),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

###
[`v5.15.21`](https://redirect.github.com/mui/material-ui/releases/tag/v5.15.21)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.20...v5.15.21)

*Jun 28, 2024*

A big thanks to the 7 contributors who made this release possible.

##### `@mui/material@5.15.21`

- \[Autocomplete] Fix renderOption props type
([@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai))
([#&#8203;42709](https://redirect.github.com/mui/material-ui/issues/42709))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- \[Stepper] Generate class for `nonLinear` prop
([@&#8203;alexismo](https://redirect.github.com/alexismo))
([#&#8203;42677](https://redirect.github.com/mui/material-ui/issues/42677))
[@&#8203;alexismo](https://redirect.github.com/alexismo)

##### Docs

- Use new email for sponsoring
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Fix 301 links
([@&#8203;alexfauquette](https://redirect.github.com/alexfauquette))
([#&#8203;42700](https://redirect.github.com/mui/material-ui/issues/42700))
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette)
- \[material-ui]\[Select] Fix the `SelectAutoWidth` demo menu item value
([@&#8203;Danielkhakbaz](https://redirect.github.com/Danielkhakbaz))
([#&#8203;42696](https://redirect.github.com/mui/material-ui/issues/42696))
[@&#8203;Danielkhakbaz](https://redirect.github.com/Danielkhakbaz)
- \[material-ui]\[Autocomplete] Fix more React 18.3 key spread warnings
in demos
([#&#8203;42766](https://redirect.github.com/mui/material-ui/issues/42766))
[@&#8203;wbt](https://redirect.github.com/wbt)
- \[material-ui] Fix sign in side image
([#&#8203;42708](https://redirect.github.com/mui/material-ui/issues/42708))
[@&#8203;zanivan](https://redirect.github.com/zanivan)
- \[website] Add Ale to team
([#&#8203;42769](https://redirect.github.com/mui/material-ui/issues/42769))
[@&#8203;alelthomas](https://redirect.github.com/alelthomas)

##### Core

- \[core] Cherry pick pnpm updates
([#&#8203;42763](https://redirect.github.com/mui/material-ui/issues/42763))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- \[website] Add Armin to the team members
([@&#8203;arminmeh](https://redirect.github.com/arminmeh))
([#&#8203;42681](https://redirect.github.com/mui/material-ui/issues/42681))
[@&#8203;arminmeh](https://redirect.github.com/arminmeh)
- \[website] Open Staff Engineer role for Pigment CSS
([@&#8203;mnajdova](https://redirect.github.com/mnajdova))
([#&#8203;42669](https://redirect.github.com/mui/material-ui/issues/42669))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

All contributors of this release in alphabetical order:
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette),
[@&#8203;alexismo](https://redirect.github.com/alexismo),
[@&#8203;arminmeh](https://redirect.github.com/arminmeh),
[@&#8203;Danielkhakbaz](https://redirect.github.com/Danielkhakbaz),
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

###
[`v5.15.20`](https://redirect.github.com/mui/material-ui/releases/tag/v5.15.20)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.19...v5.15.20)

<!-- generated comparing v5.15.19..master -->

*Jun 12, 2024*

A big thanks to the 9 contributors who made this release possible.

##### `@mui/material@5.15.20`

- ​<!-- 17 -->\[Autocomplete] Shouldn't resize when hovering
([@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli))
([#&#8203;42535](https://redirect.github.com/mui/material-ui/issues/42535))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)
- ​<!-- 07 -->\[Tab] Fix applying `iconWrapper` styles from theme and
update its description
([@&#8203;sai6855](https://redirect.github.com/sai6855))
([#&#8203;42570](https://redirect.github.com/mui/material-ui/issues/42570))
[@&#8203;sai6855](https://redirect.github.com/sai6855)

##### `@mui/utils@5.15.15`

- ​<!-- 06 -->Allow passing `NaN` as `defaultValue` to `useControlled`
([@&#8203;iammminzzy](https://redirect.github.com/iammminzzy))
([#&#8203;42571](https://redirect.github.com/mui/material-ui/issues/42571))
[@&#8203;iammminzzy](https://redirect.github.com/iammminzzy)
- ​<!-- 17 -->Fix GitHub-reported prototype pollution vulnerability in
`deepmerge`
([#&#8203;41652](https://redirect.github.com/mui/material-ui/issues/41652))
([#&#8203;42608](https://redirect.github.com/mui/material-ui/issues/42608))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

##### Docs

- ​<!-- 16 -->\[docs] Add Pigment CSS and Base UI logos SVGs
([#&#8203;42513](https://redirect.github.com/mui/material-ui/issues/42513))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 15 -->\[docs] Update twitter.com to x.com
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 14 -->\[docs] Simplify Example projects page
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 13 -->\[material-ui] Add docs for complementary stepper
components ([@&#8203;anle9650](https://redirect.github.com/anle9650))
([#&#8203;42613](https://redirect.github.com/mui/material-ui/issues/42613))
[@&#8203;anle9650](https://redirect.github.com/anle9650)
- ​<!-- 12 -->\[docs] Add changelog section to the design kits page
([@&#8203;danilo-leal](https://redirect.github.com/danilo-leal))
([#&#8203;42463](https://redirect.github.com/mui/material-ui/issues/42463))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 11 -->\[material-ui] Fix sentence in the All components page
([@&#8203;danilo-leal](https://redirect.github.com/danilo-leal))
([#&#8203;42462](https://redirect.github.com/mui/material-ui/issues/42462))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 10 -->\[material-ui] Update Figma design kit doc redirect link
([@&#8203;danilo-leal](https://redirect.github.com/danilo-leal))
([#&#8203;42456](https://redirect.github.com/mui/material-ui/issues/42456))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 09 -->\[system] Add "dynamic values" section to sx prop page
([@&#8203;aarongarciah](https://redirect.github.com/aarongarciah))
([#&#8203;42453](https://redirect.github.com/mui/material-ui/issues/42453))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)

##### Core

- ​<!-- 18 -->\[website] Move the `React Engineer - X` role to future
roles
([#&#8203;42532](https://redirect.github.com/mui/material-ui/issues/42532))
[@&#8203;DanailH](https://redirect.github.com/DanailH)
- ​<!-- 08 -->\[examples] Remove Pigment CSS examples
([#&#8203;42538](https://redirect.github.com/mui/material-ui/issues/42538))
[@&#8203;sai6855](https://redirect.github.com/sai6855)
- ​<!-- 05 -->\[website] Close Developer Advocate / Content Engineer
role
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 04 -->\[website] Update DoiT description and link in Sponsors
section
([@&#8203;erezstmn-doit](https://redirect.github.com/erezstmn-doit))
([#&#8203;42511](https://redirect.github.com/mui/material-ui/issues/42511))
[@&#8203;erezstmn-doit](https://redirect.github.com/erezstmn-doit)
- ​<!-- 03 -->\[website] Clean up the docs-infra job ad
([@&#8203;danilo-leal](https://redirect.github.com/danilo-leal))
([#&#8203;42509](https://redirect.github.com/mui/material-ui/issues/42509))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 02 -->\[website] Open the Docs-infra engineer role
([@&#8203;danilo-leal](https://redirect.github.com/danilo-leal))
([#&#8203;42496](https://redirect.github.com/mui/material-ui/issues/42496))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 01 -->\[website] Fix locationCountry in about page
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

All contributors of this release in alphabetical order:
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah),
[@&#8203;anle9650](https://redirect.github.com/anle9650),
[@&#8203;DanailH](https://redirect.github.com/DanailH),
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal),
[@&#8203;erezstmn-doit](https://redirect.github.com/erezstmn-doit),
[@&#8203;iammminzzy](https://redirect.github.com/iammminzzy),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;sai6855](https://redirect.github.com/sai6855),
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

###
[`v5.15.19`](https://redirect.github.com/mui/material-ui/compare/v5.15.18...v5.15.19)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.18...v5.15.19)

###
[`v5.15.18`](https://redirect.github.com/mui/material-ui/releases/tag/v5.15.18)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.17...v5.15.18)

<!-- generated comparing v5.15.17..master -->

*May 14, 2024*

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

##### `@mui/material@5.15.18`

- ​<!-- 6 -->\[Autocomplete] Improve design when there's a start
adornment for small autocomplete
([@&#8203;TahaRhidouani](https://redirect.github.com/TahaRhidouani))
([#&#8203;42176](https://redirect.github.com/mui/material-ui/issues/42176))
[@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot]
- ​<!-- 3 -->\[ToggleButtonGroup] Add missing `selected` class in
ToggleButtonGroupClasses type
([@&#8203;tarunrajput](https://redirect.github.com/tarunrajput))
([#&#8203;42250](https://redirect.github.com/mui/material-ui/issues/42250))
[@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot]

##### Docs

- ​<!-- 4 -->\[docs] Fix 301 to Figma
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)

##### Core

- ​<!-- 5 -->\[blog] Introducing Pigment CSS blog post
([#&#8203;42198](https://redirect.github.com/mui/material-ui/issues/42198))
([#&#8203;42255](https://redirect.github.com/mui/material-ui/issues/42255))
[@&#8203;samuelsycamore](https://redirect.github.com/samuelsycamore)
- ​<!-- 2 -->\[website] Add redirection for talk
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 1 -->\[website] Adds Arthur Balduini team info
([@&#8203;arthurbalduini](https://redirect.github.com/arthurbalduini))
([#&#8203;42226](https://redirect.github.com/mui/material-ui/issues/42226))
[@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot]

All contributors of this release in alphabetical order:
[@&#8203;arthurbalduini](https://redirect.github.com/arthurbalduini),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;samuelsycamore](https://redirect.github.com/samuelsycamore),
[@&#8203;TahaRhidouani](https://redirect.github.com/TahaRhidouani),
[@&#8203;tarunrajput](https://redirect.github.com/tarunrajput)

###
[`v5.15.17`](https://redirect.github.com/mui/material-ui/compare/v5.15.16...v5.15.17)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.16...v5.15.17)

###
[`v5.15.16`](https://redirect.github.com/mui/material-ui/compare/v5.15.15...v5.15.16)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.15...v5.15.16)

###
[`v5.15.15`](https://redirect.github.com/mui/material-ui/releases/tag/v5.15.15)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.14...v5.15.15)

A big thanks to the 7 contributors who made this release possible. Here
are some highlights :
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.

##### `@mui/material@5.15.15`

- \[Autocomplete] Display options provided to the `options` prop even if
loading is true
([#&#8203;41677](https://redirect.github.com/mui/material-ui/issues/41677))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)
- \[RadioGroup] Apply classnames
([#&#8203;41681](https://redirect.github.com/mui/material-ui/issues/41681))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

##### `@mui/system@5.15.15`

- Fix typo to avoid infinite recursion in function call
([#&#8203;41678](https://redirect.github.com/mui/material-ui/issues/41678))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

##### Docs

- \[material-ui]\[Slider] Remove `valueLabelFormat` from restricted
values demo so that the tooltip thumb label displays the same as the
value text
([#&#8203;41679](https://redirect.github.com/mui/material-ui/issues/41679))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)
- \[material-ui] Remove deleted page from the sidenav
([#&#8203;41594](https://redirect.github.com/mui/material-ui/issues/41594))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[material-ui] Fix typo in CSS theme variables customization
([#&#8203;41680](https://redirect.github.com/mui/material-ui/issues/41680))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)
- Continue migration of Base UI to sperate repository
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Add notification for MUI X v7 blog post
([#&#8203;41587](https://redirect.github.com/mui/material-ui/issues/41587))
([#&#8203;41605](https://redirect.github.com/mui/material-ui/issues/41605))
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii)
- Update the versions dropdown to show v6
([#&#8203;41557](https://redirect.github.com/mui/material-ui/issues/41557))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

##### Core

- \[blog] Link to Romain's blog post in MUI X v7 announcement post
([#&#8203;41641](https://redirect.github.com/mui/material-ui/issues/41641))
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii)
- \[blog] Blog post with MUI X v7.0.0 annoucement
([#&#8203;41563](https://redirect.github.com/mui/material-ui/issues/41563))
([#&#8203;41604](https://redirect.github.com/mui/material-ui/issues/41604))
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii)
- \[blog] Add post about remote
([#&#8203;41565](https://redirect.github.com/mui/material-ui/issues/41565))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[core] Continue rename of Toolpad
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[docs-infra] Add Toolpad product/category IDs to types
([#&#8203;41551](https://redirect.github.com/mui/material-ui/issues/41551))
[@&#8203;bharatkashyap](https://redirect.github.com/bharatkashyap)
- \[website] Add Aarón to About Us
([#&#8203;41747](https://redirect.github.com/mui/material-ui/issues/41747))
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah)
- \[website] Add stray design adjustments throughout the site
([#&#8203;41642](https://redirect.github.com/mui/material-ui/issues/41642))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- \[website] Update pricing table
([#&#8203;41606](https://redirect.github.com/mui/material-ui/issues/41606))
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii)

All contributors of this release in alphabetical order:
[@&#8203;aarongarciah](https://redirect.github.com/aarongarciah),
[@&#8203;bharatkashyap](https://redirect.github.com/bharatkashyap),
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii),
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

###
[`v5.15.14`](https://redirect.github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51514)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.13...v5.15.14)

<!-- generated comparing v5.15.13..master -->

*Mar 18, 2024*

A big thanks to the 15 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.

##### `@mui/material@5.15.13`

- \[Accordion] Convert to support CSS extraction
([#&#8203;41221](https://redirect.github.com/mui/material-ui/issues/41221))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- ​<!-- 24 -->\[Autocomplete] Convert to support CSS extraction
([#&#8203;40330](https://redirect.github.com/mui/material-ui/issues/40330))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- ​<!-- 06 -->\[Slider] Convert to support CSS extraction
([#&#8203;41201](https://redirect.github.com/mui/material-ui/issues/41201))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- ​<!-- 07 -->\[Select] Fix variant type
([#&#8203;41405](https://redirect.github.com/mui/material-ui/issues/41405))
[@&#8203;sai6855](https://redirect.github.com/sai6855)
- ​<!-- 09 -->\[typescript] Use interface instead of type for props
([#&#8203;41500](https://redirect.github.com/mui/material-ui/issues/41500))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

##### `@pigment-css/react@0.0.3`

- ​<!-- 03 -->Add Box component
([#&#8203;41451](https://redirect.github.com/mui/material-ui/issues/41451))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)

##### `pigment-css/nextjs-plugin@0.0.3`

- ​<!-- 04 -->Fix alias resolver
([#&#8203;41494](https://redirect.github.com/mui/material-ui/issues/41494))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- ​<!-- 05 -->Follow-up to
[#&#8203;41494](https://redirect.github.com/mui/material-ui/issues/41494)
([#&#8203;41502](https://redirect.github.com/mui/material-ui/issues/41502))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)

##### Docs

- ​<!-- 12 -->\[joy-ui] Add UI improvements to the side navigation demo
([#&#8203;41461](https://redirect.github.com/mui/material-ui/issues/41461))
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs)
- ​<!-- 11 -->\[pigment-css] Add media query guide
([#&#8203;41473](https://redirect.github.com/mui/material-ui/issues/41473))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- ​<!-- 10 -->\[pigment-css] Fixing location of the ExtendTheme type in
the docs
([#&#8203;41499](https://redirect.github.com/mui/material-ui/issues/41499))
[@&#8203;jherr](https://redirect.github.com/jherr)
- ​<!-- 08 -->\[material-ui]\[Progress] Add Circular progress gradient
demo from Github comment
([#&#8203;40559](https://redirect.github.com/mui/material-ui/issues/40559))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

##### Core

- ​<!-- 23 -->\[blog] Bringing consistency to Material UI customization
APIs
([#&#8203;41040](https://redirect.github.com/mui/material-ui/issues/41040))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- ​<!-- 22 -->\[code-infra] Rename
[@&#8203;mui-internal/docs-utils](https://redirect.github.com/mui-internal/docs-utils)
to
[@&#8203;mui/internal-docs-utils](https://redirect.github.com/mui/internal-docs-utils)
([#&#8203;41498](https://redirect.github.com/mui/material-ui/issues/41498))
[@&#8203;michaldudak](https://redirect.github.com/michaldudak)
- ​<!-- 21 -->\[code-infra] Copy translations.json to
[@&#8203;mui/docs](https://redirect.github.com/mui/docs) build folder
([#&#8203;41472](https://redirect.github.com/mui/material-ui/issues/41472))
[@&#8203;Janpot](https://redirect.github.com/Janpot)
- ​<!-- 20 -->\[core] Use Circle CI context
([#&#8203;41532](https://redirect.github.com/mui/material-ui/issues/41532))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 19 -->\[core] Fix CHANGELOG format and update date
([#&#8203;41481](https://redirect.github.com/mui/material-ui/issues/41481))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- ​<!-- 18 -->\[docs] Fix useStorageState regressions
([#&#8203;41223](https://redirect.github.com/mui/material-ui/issues/41223))
[@&#8203;Janpot](https://redirect.github.com/Janpot)
- ​<!-- 17 -->\[docs] Fix some Vale errors
([#&#8203;41516](https://redirect.github.com/mui/material-ui/issues/41516))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 15 -->\[material-ui]\[docs] Fix landing page template's h1 size
([#&#8203;41543](https://redirect.github.com/mui/material-ui/issues/41543))
[@&#8203;zanivan](https://redirect.github.com/zanivan)
- ​<!-- 14 -->\[material-ui]\[docs] Apply new code header docs feature
([#&#8203;41508](https://redirect.github.com/mui/material-ui/issues/41508))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 11 -->\[material-next] Drop the package
([#&#8203;41544](https://redirect.github.com/mui/material-ui/issues/41544))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- ​<!-- 16 -->\[docs-infra] Fail CI on Vale error
([#&#8203;40944](https://redirect.github.com/mui/material-ui/issues/40944))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 15 -->\[docs-infra] Improve Vale config
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- ​<!-- 14 -->\[docs-infra] Add a feature list "component"
([#&#8203;41484](https://redirect.github.com/mui/material-ui/issues/41484))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 13 -->\[docs-infra] Add code block header classes
([#&#8203;41487](https://redirect.github.com/mui/material-ui/issues/41487))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 21 -->\[docs-infra] Make the Algolia search input label
invisible
([#&#8203;41542](https://redirect.github.com/mui/material-ui/issues/41542))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- ​<!-- 03 -->\[website] Improve navbar's items hover state
([#&#8203;41535](https://redirect.github.com/mui/material-ui/issues/41535))
[@&#8203;EyaOuenniche](https://redirect.github.com/EyaOuenniche)
- ​<!-- 02 -->\[website] Split Toolpad documentation
([#&#8203;41316](https://redirect.github.com/mui/material-ui/issues/41316))
[@&#8203;bharatkashyap](https://redirect.github.com/bharatkashyap)
- ​<!-- 01 -->\[website] Use MUI X Data Grid v7-beta
([#&#8203;41276](https://redirect.github.com/mui/material-ui/issues/41276))
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii)

All contributors of this release in alphabetical order:
[@&#8203;bharatkashyap](https://redirect.github.com/bharatkashyap),
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42),
[@&#8203;cherniavskii](https://redirect.github.com/cherniavskii),
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs),
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal),
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai),
[@&#8203;EyaOuenniche](https://redirect.github.com/EyaOuenniche),
[@&#8203;Janpot](https://redirect.github.com/Janpot),
[@&#8203;jherr](https://redirect.github.com/jherr),
[@&#8203;michaldudak](https://redirect.github.com/michaldudak),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;sai6855](https://redirect.github.com/sai6855),
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp),
[@&#8203;zanivan](https://redirect.github.com/zanivan)

###
[`v5.15.13`](https://redirect.github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51513)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.12...v5.15.13)

<!-- generated comparing v5.15.12..master -->

*Mar 12, 2024*

A big thanks to the 15 contributors who made this release possible. Here
are some highights 

- The Material UI free Checkout template got a design uplift
([#&#8203;41447](https://redirect.github.com/mui/material-ui/issues/41447))
[@&#8203;zanivan](https://redirect.github.com/zanivan)

##### `@mui/material@5.15.13`

- \[Alert] Add `slots` and `slotProps` type to theme
([#&#8203;41324](https://redirect.github.com/mui/material-ui/issues/41324))
[@&#8203;sai6855](https://redirect.github.com/sai6855)
- \[Autocomplete] Fix the options list being added to the DOM in
`freeSolo` mode even when there are no options, causing style problems
([#&#8203;41300](https://redirect.github.com/mui/material-ui/issues/41300))
[@&#8203;rakeshmusturi](https://redirect.github.com/rakeshmusturi)
- Add `paperChannel` token
([#&#8203;41447](https://redirect.github.com/mui/material-ui/issues/41447))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- \[Switch] Convert to support CSS extraction
([#&#8203;41367](https://redirect.github.com/mui/material-ui/issues/41367))
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette)
- \[Tooltip] Support event handlers with extra parameters
([#&#8203;41320](https://redirect.github.com/mui/material-ui/issues/41320))
[@&#8203;LukasTy](https://redirect.github.com/LukasTy)

##### `@mui/system@5.15.13`

- \[RtlProvider] Add component & hook
([#&#8203;41241](https://redirect.github.com/mui/material-ui/issues/41241))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)

##### `@mui/utils@5.15.13`

- \[utils] Fix visually hidden styles' margin unit
([#&#8203;41477](https://redirect.github.com/mui/material-ui/issues/41477))
[@&#8203;michaldudak](https://redirect.github.com/michaldudak)

##### `@mui/codemod@5.15.13`

- Fix merging of slotProps and componentProps
([#&#8203;41323](https://redirect.github.com/mui/material-ui/issues/41323))
[@&#8203;sai6855](https://redirect.github.com/sai6855)

##### `@mui/base@5.0.0-beta.39`

- \[material-ui]\[joy-ui]\[Autocomplete] Keep in sync highlighted index
when the option still exists
([#&#8203;41306](https://redirect.github.com/mui/material-ui/issues/41306))
[@&#8203;CGNonofr](https://redirect.github.com/CGNonofr)
- \[FormControl] Export `FormControlOwnerState` type from index
([#&#8203;41287](https://redirect.github.com/mui/material-ui/issues/41287))
[@&#8203;michaeldfoley](https://redirect.github.com/michaeldfoley)
- \[material-ui]\[TextareaAutosize] Fix inline style not getting applied
([#&#8203;41369](https://redirect.github.com/mui/material-ui/issues/41369))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

##### `@pigment-css/react@0.0.2`

- Handle more scenarios while transforming sx prop
([#&#8203;41372](https://redirect.github.com/mui/material-ui/issues/41372))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- Improve testing of fixtures
([#&#8203;41389](https://redirect.github.com/mui/material-ui/issues/41389))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- Fix `keyframes` serialize styles error
([#&#8203;41395](https://redirect.github.com/mui/material-ui/issues/41395))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- Use class selector instead of class value
([#&#8203;41442](https://redirect.github.com/mui/material-ui/issues/41442))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- \[next] Warn about unsupported turbo mode in Next.js
([#&#8203;41445](https://redirect.github.com/mui/material-ui/issues/41445))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)

##### Docs

- \[material-ui] Refine checkout template
([#&#8203;40967](https://redirect.github.com/mui/material-ui/issues/40967))
[@&#8203;zanivan](https://redirect.github.com/zanivan)
- \[material-ui] Add docs for complementary List components
([#&#8203;41329](https://redirect.github.com/mui/material-ui/issues/41329))
[@&#8203;anle9650](https://redirect.github.com/anle9650)
- \[material-ui] Add docs for complementary Dialog components
([#&#8203;41313](https://redirect.github.com/mui/material-ui/issues/41313))
[@&#8203;jwithington](https://redirect.github.com/jwithington)
- \[material-ui] Fix Templates live preview link
([#&#8203;41467](https://redirect.github.com/mui/material-ui/issues/41467))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[material-ui] Polish out the templates page
([#&#8203;41468](https://redirect.github.com/mui/material-ui/issues/41468))
[@&#8203;zanivan](https://redirect.github.com/zanivan)
- \[material-ui] Adjust the Templates card design
([#&#8203;41450](https://redirect.github.com/mui/material-ui/issues/41450))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[joy-ui] Remove unnecessary styles in color inversion footer demo
([#&#8203;41419](https://redirect.github.com/mui/material-ui/issues/41419))
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs)
- \[joy-ui] Update case studies chip background color
([#&#8203;41413](https://redirect.github.com/mui/material-ui/issues/41413))
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs)
- \[joy-ui] Remove wrong CSS prop from the Sign-in-side template
([#&#8203;41383](https://redirect.github.com/mui/material-ui/issues/41383))
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs)
- \[joy-ui] Fix broken link on the Color Inversion page
([#&#8203;41407](https://redirect.github.com/mui/material-ui/issues/41407))
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs)
- \[pigment] Add example and guide section
([#&#8203;41249](https://redirect.github.com/mui/material-ui/issues/41249))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- \[pigment-css] Brand name nonbreaking space
([#&#8203;41438](https://redirect.github.com/mui/material-ui/issues/41438))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[pigment-css] Fix import on the README
([#&#8203;41411](https://redirect.github.com/mui/material-ui/issues/41411))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[pigment-css] Edit starter template links on README
([#&#8203;41409](https://redirect.github.com/mui/material-ui/issues/41409))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[pigment-css] Tweak the examples and edit READMEs
([#&#8203;41408](https://redirect.github.com/mui/material-ui/issues/41408))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[pigment-css] Adjust the bit about CSS vars on the README
([#&#8203;41463](https://redirect.github.com/mui/material-ui/issues/41463))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- Finish brand name fixes
[#&#8203;41438](https://redirect.github.com/mui/material-ui/issues/41438)
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Remove noreferrer
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- Fix v4 docs <b> appearing in notifications
([#&#8203;41390](https://redirect.github.com/mui/material-ui/issues/41390))
[@&#8203;peterwangsc](https://redirect.github.com/peterwangsc)
- Update GitHub project links
([#&#8203;41370](https://redirect.github.com/mui/material-ui/issues/41370))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)

##### Core

- \[pigment] Make all Pigment CSS packages public
([#&#8203;41404](https://redirect.github.com/mui/material-ui/issues/41404))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- \[pigment] Rename directories to match package names
([#&#8203;41453](https://redirect.github.com/mui/material-ui/issues/41453))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- \[pigment-css] Example fix leading spaces
([#&#8203;41439](https://redirect.github.com/mui/material-ui/issues/41439))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[code-infra] Add short note about e2e-website workflow schedule
([#&#8203;41355](https://redirect.github.com/mui/material-ui/issues/41355))
[@&#8203;Janpot](https://redirect.github.com/Janpot)
- \[code-infra] Add alias for icon types
([#&#8203;41248](https://redirect.github.com/mui/material-ui/issues/41248))
[@&#8203;Janpot](https://redirect.github.com/Janpot)
- \[code-infra] Reduce concurrency of typescript:ci further
([#&#8203;41392](https://redirect.github.com/mui/material-ui/issues/41392))
[@&#8203;Janpot](https://redirect.github.com/Janpot)
- \[code-infra] Reduce concurrency for test_types ci job
([#&#8203;41385](https://redirect.github.com/mui/material-ui/issues/41385))
[@&#8203;Janpot](https://redirect.github.com/Janpot)
- \[code-infra] Adapt API code generator to Base UI repo needs
([#&#8203;41475](https://redirect.github.com/mui/material-ui/issues/41475))
[@&#8203;michaldudak](https://redirect.github.com/michaldudak)
- \[docs-infra] Don't generate preview files for the templates
([#&#8203;41379](https://redirect.github.com/mui/material-ui/issues/41379))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- \[docs-infra] Fix pigment css apps path in the render mui demos script
([#&#8203;41476](https://redirect.github.com/mui/material-ui/issues/41476))
[@&#8203;mnajdova](https://redirect.github.com/mnajdova)
- \[docs-infra] move feedback to ESM
([#&#8203;41381](https://redirect.github.com/mui/material-ui/issues/41381))
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette)
- \[docs-infra] Improve color contrast throughout
([#&#8203;41387](https://redirect.github.com/mui/material-ui/issues/41387))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[docs-infra] Simplify Algolia crawler config
([#&#8203;41312](https://redirect.github.com/mui/material-ui/issues/41312))
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[docs-infra] Adjust the tabs and layout selection design
([#&#8203;41084](https://redirect.github.com/mui/material-ui/issues/41084))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[blog] Update the Base UI post with links to dedicated repo
([#&#8203;41358](https://redirect.github.com/mui/material-ui/issues/41358))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[website] Update the Careers page role
([#&#8203;41384](https://redirect.github.com/mui/material-ui/issues/41384))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[website] Compress about images
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari)
- \[website] Improve color contrast on the homepage
([#&#8203;41465](https://redirect.github.com/mui/material-ui/issues/41465))
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal)
- \[examples] Add pigment-css-vite-ts starter example
([#&#8203;41196](https://redirect.github.com/mui/material-ui/issues/41196))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- \[examples] Add pigment-css-nextjs-ts starter project
([#&#8203;41105](https://redirect.github.com/mui/material-ui/issues/41105))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

All contributors of this release in alphabetical order:
[@&#8203;alexfauquette](https://redirect.github.com/alexfauquette),
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42),
[@&#8203;CGNonofr](https://redirect.github.com/CGNonofr),
[@&#8203;cipherlogs](https://redirect.github.com/cipherlogs),
[@&#8203;danilo-leal](https://redirect.github.com/danilo-leal),
[@&#8203;Janpot](https://redirect.github.com/Janpot),
[@&#8203;michaeldfoley](https://redirect.github.com/michaeldfoley),
[@&#8203;mnajdova](https://redirect.github.com/mnajdova),
[@&#8203;oliviertassinari](https://redirect.github.com/oliviertassinari),
[@&#8203;peterwangsc](https://redirect.github.com/peterwangsc),
[@&#8203;rakeshmusturi](https://redirect.github.com/rakeshmusturi),
[@&#8203;sai6855](https://redirect.github.com/sai6855),
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp),
[@&#8203;zanivan](https://redirect.github.com/zanivan),
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

###
[`v5.15.12`](https://redirect.github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51512)

[Compare
Source](https://redirect.github.com/mui/material-ui/compare/v5.15.11...v5.15.12)

<!-- generated comparing v5.15.11..master -->

*Mar 5, 2024*

A big thanks to the 21 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.

##### `@mui/material@5.15.12`

- ​<!-- 52 -->Support props callback type in theme variants
([#&#8203;40946](https://redirect.github.com/mui/material-ui/issues/40946))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)
- ​<!-- 50 -->\[Alert] Convert to support zero runtime
([#&#8203;41230](https://redirect.github.com/mui/material-ui/issues/41230))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- ​<!-- 49 -->\[Alert] Deprecate composed classes
([#&#8203;40688](https://redirect.github.com/mui/material-ui/issues/40688))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- ​<!-- 44 -->\[Button] Deprecate classes for v6
([#&#8203;40675](https://redirect.github.com/mui/material-ui/issues/40675))
[@&#8203;sai6855](https://redirect.github.com/sai6855)
- ​<!-- 43 -->\[Checkbox] `large` size added in type
([#&#8203;34909](https://redirect.github.com/mui/material-ui/issues/34909))
[@&#8203;smox](https://redirect.github.com/smox)
- ​<!-- 42 -->\[Chip] Deprecate composed classes
([#&#8203;41235](https://redirect.github.com/mui/material-ui/issues/41235))
[@&#8203;sai6855](https://redirect.github.com/sai6855)
- ​<!-- 41 -->\[Chip] Correct `deleteIconColorPrimary` and
`deleteIconColorSecondary` class descriptions
([#&#8203;41231](https://redirect.github.com/mui/material-ui/issues/41231))
[@&#8203;sai6855](https://redirect.github.com/sai6855)
- ​<!-- 17 -->Remove unused dev dependency on
[@&#8203;mui/lab](https://redirect.github.com/mui/lab)
([#&#8203;41198](https://redirect.github.com/mui/material-ui/issues/41198))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- ​<!-- 15 -->\[Slider] Deprecate components and componentProps props
for v6
([#&#8203;40777](https://redirect.github.com/mui/material-ui/issues/40777))
[@&#8203;lhilgert9](https://redirect.github.com/lhilgert9)

##### `@mui/system@5.15.12`

- ​<!-- 16 -->\[pigment-css]\[material-ui] Render badge demos
([#&#8203;41353](https://redirect.github.com/mui/material-ui/issues/41353))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)
- ​<!-- 14 -->\[pigment-css] Update to latest wyw version
([#&#8203;41363](https://redirect.github.com/mui/material-ui/issues/41363))
[@&#8203;brijeshb42](https://redirect.github.com/brijeshb42)
- ​<!-- 13 -->\[pigment-css] Rename scope to
[@&#8203;pigment-css](https://redirect.github.com/pigment-css)
([#&#8203;41354](https://redirect.github.com/mui/material-ui/issues/41354))
[@&#8203;brijeshb42](https:

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-06 15:54:46 +00:00
Mateusz Kwasniewski
c81d45b52c
chore: default metrics storage days updated (#8931) 2024-12-06 13:04:56 +01:00
Mateusz Kwasniewski
4b443e2a57
fix: adjust favorite icon placement (#8930) 2024-12-06 12:38:40 +01:00
renovate[bot]
152dd76f02
chore(deps): update dependency sass to v1.81.0 (#8927)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://redirect.github.com/sass/dart-sass) | [`1.80.6` ->
`1.81.0`](https://renovatebot.com/diffs/npm/sass/1.80.6/1.81.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.81.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.81.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.80.6/1.81.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.80.6/1.81.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>sass/dart-sass (sass)</summary>

###
[`v1.81.0`](https://redirect.github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1810)

[Compare
Source](https://redirect.github.com/sass/dart-sass/compare/1.80.7...1.81.0)

- Fix a few cases where deprecation warnings weren't being emitted for
global
    built-in functions whose names overlap with CSS calculations.

- Add support for the CSS `round()` calculation with a single argument,
as long
    as that argument might be a unitless number.

###
[`v1.80.7`](https://redirect.github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1807)

[Compare
Source](https://redirect.github.com/sass/dart-sass/compare/1.80.6...1.80.7)

##### Embedded Host

- Don't treat `0` as `undefined` for the `green` and `blue` channels in
the
    `LegacyColor` constructor.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-05 22:20:06 +00:00
renovate[bot]
870e111f9f
chore(deps): update dependency @types/node to v20.17.9 (#8926)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`20.17.8` ->
`20.17.9`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.8/20.17.9)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.17.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.17.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.17.8/20.17.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.17.8/20.17.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-05 18:14:34 +00:00
Gastón Fournier
04eaf8d5bd
feat: add variant etag (#8922)
## About the changes
This adds a variant that allows us to control client refreshes in case
of need.
2024-12-05 15:13:11 +01:00
Mateusz Kwasniewski
ac1ba2f859
chore: streaming node sdk (#8921) 2024-12-05 13:06:53 +01:00
Melinda Fekete
d29f0c80d5
Add SOC2 docs (#8916) 2024-12-05 12:58:41 +01:00
Nuno Góis
ff9492d4f7
fix: permission button unintended full width behavior (#8920)
Follow-up to https://github.com/Unleash/unleash/pull/8882

The referenced PR caused an unintended behavior by making the button
behave like a normal button would on certain parent containers.
Previously, the span wrapper caused a side effect that restricted the
button’s width, which we were relying on.

By setting some initial styling properties, this PR should hopefully
satisfy both use cases.


![image](https://github.com/user-attachments/assets/2c5a4a97-51ff-426c-b5da-7b00d5d6516a)


![image](https://github.com/user-attachments/assets/f8f3fc13-df19-44d5-8fce-4bb0dc323d4e)


![image](https://github.com/user-attachments/assets/80625e88-0d1a-4c83-93d7-250351dae3a4)
2024-12-05 09:23:06 +00:00
renovate[bot]
bd0ad18a63
chore(deps): update dependency jsonpath-plus to v10.2.0 (#8919)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [jsonpath-plus](https://redirect.github.com/s3u/JSONPath) | [`10.1.0`
->
`10.2.0`](https://renovatebot.com/diffs/npm/jsonpath-plus/10.1.0/10.2.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/jsonpath-plus/10.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jsonpath-plus/10.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jsonpath-plus/10.1.0/10.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jsonpath-plus/10.1.0/10.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>s3u/JSONPath (jsonpath-plus)</summary>

###
[`v10.2.0`](https://redirect.github.com/s3u/JSONPath/blob/HEAD/CHANGES.md#1020)

[Compare
Source](https://redirect.github.com/s3u/JSONPath/compare/v10.1.0...v10.2.0)

- fix(eval): improve security of safe-eval
([#&#8203;233](https://redirect.github.com/s3u/JSONPath/issues/233))
-   chore: update deps. and devDeps.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-05 01:18:48 +00:00
renovate[bot]
913a158479
chore(deps): update dependency cypress to v13.16.0 (#8918)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [cypress](https://cypress.io)
([source](https://redirect.github.com/cypress-io/cypress)) | [`13.15.2`
-> `13.16.0`](https://renovatebot.com/diffs/npm/cypress/13.15.2/13.16.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/cypress/13.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/cypress/13.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/cypress/13.15.2/13.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cypress/13.15.2/13.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>cypress-io/cypress (cypress)</summary>

###
[`v13.16.0`](https://redirect.github.com/cypress-io/cypress/releases/tag/v13.16.0)

[Compare
Source](https://redirect.github.com/cypress-io/cypress/compare/v13.15.2...v13.16.0)

Changelog: https://docs.cypress.io/guides/references/changelog#13-16-0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-04 23:01:19 +00:00
renovate[bot]
602a7d8964
fix(deps): update dependency json-2-csv to v5.5.7 (#8917)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [json-2-csv](https://mrodrig.github.io/json-2-csv)
([source](https://redirect.github.com/mrodrig/json-2-csv)) | [`5.5.6` ->
`5.5.7`](https://renovatebot.com/diffs/npm/json-2-csv/5.5.6/5.5.7) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/json-2-csv/5.5.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/json-2-csv/5.5.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/json-2-csv/5.5.6/5.5.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/json-2-csv/5.5.6/5.5.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mrodrig/json-2-csv (json-2-csv)</summary>

###
[`v5.5.7`](https://redirect.github.com/mrodrig/json-2-csv/releases/tag/5.5.7):
NPM Release v5.5.7

[Compare
Source](https://redirect.github.com/mrodrig/json-2-csv/compare/5.5.6...5.5.7)

- Fixes the bug identified in
[#&#8203;265](https://redirect.github.com/mrodrig/json-2-csv/issues/265)
- Patches a high severity vulnerability identified in a dependency by
`npm audit`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-04 18:51:57 +00:00
Min Nyan Lin
50929c5e4a
refactor: Autocomplete component in PlaygroundCodeFieldset (#8912)
Custom context fields that have a list of allowed values, show values with autocomplete list
2024-12-04 16:07:29 +01:00
renovate[bot]
8fbf7976e6
chore(deps): update yarn to v4.5.3 (#8911)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [yarn](https://redirect.github.com/yarnpkg/berry)
([source](https://redirect.github.com/yarnpkg/berry/tree/HEAD/packages/yarnpkg-cli))
| [`4.5.1` ->
`4.5.3`](https://renovatebot.com/diffs/npm/yarn/4.5.1/4.5.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@yarnpkg%2fcli/4.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@yarnpkg%2fcli/4.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@yarnpkg%2fcli/4.5.1/4.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@yarnpkg%2fcli/4.5.1/4.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>yarnpkg/berry (yarn)</summary>

###
[`v4.5.3`](a38b314f0c...2fe7d635e8)

[Compare
Source](a38b314f0c...2fe7d635e8)

###
[`v4.5.2`](b5baf9bb17...a38b314f0c)

[Compare
Source](b5baf9bb17...a38b314f0c)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-04 07:39:50 +00:00
Gastón Fournier
e945f2288b
docs: switch recommendation from proxy to edge (#8908)
## About the changes
Proxy has been deprecated long ago and edge should be our main
recommendation
2024-12-04 08:33:22 +01:00
renovate[bot]
0c5ff44738
chore(deps): update dependency @vitejs/plugin-react to v4.3.4 (#8910)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@vitejs/plugin-react](https://redirect.github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme)
([source](https://redirect.github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react))
| [`4.3.3` ->
`4.3.4`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-react/4.3.3/4.3.4)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@vitejs%2fplugin-react/4.3.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitejs%2fplugin-react/4.3.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitejs%2fplugin-react/4.3.3/4.3.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitejs%2fplugin-react/4.3.3/4.3.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitejs/vite-plugin-react
(@&#8203;vitejs/plugin-react)</summary>

###
[`v4.3.4`](https://redirect.github.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#434-2024-11-26)

[Compare
Source](https://redirect.github.com/vitejs/vite-plugin-react/compare/v4.3.3...v4.3.4)

##### Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

##### Force Babel to output spec compliant import attributes
[#&#8203;386](https://redirect.github.com/vitejs/vite-plugin-react/pull/386)

The default was an old spec (`with type: "json"`). We now enforce spec
compliant (`with { type: "json" }`)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-03 23:11:47 +00:00
renovate[bot]
c695708697
chore(deps): update dependency @types/express-session to v1.18.1 (#8909)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/express-session](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-session)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express-session))
| [`1.18.0` ->
`1.18.1`](https://renovatebot.com/diffs/npm/@types%2fexpress-session/1.18.0/1.18.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fexpress-session/1.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fexpress-session/1.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fexpress-session/1.18.0/1.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fexpress-session/1.18.0/1.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Configuration

📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-03 20:40:05 +00:00