1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00
Commit Graph

13090 Commits

Author SHA1 Message Date
Thomas Heartman
89a70cf253
chore(1-3333): add new pnps reset 2025-02-05 14:26:48 +01:00
Thomas Heartman
17a4099dbf
refactor: add functions to estimate monthly usage from data directly (#9219)
Adds new monthly estimation functions that operate on raw usage data
instead of chart data. This brings those methods in line with the rest
of the traffic calculation functions that we have in that file and means
we can remove other external dependencies.

 This is somewhat inspired by #9218, but not directly linked.
2025-02-05 11:12:17 +01:00
Thomas Heartman
543be6dede
chore(1-3342): extract into hook, use new endpoint if flag on (#9218)
Updates the existing BillingDetails pages (pro and payg) to use the new
traffic search endpoint (and calculations) if the flag to do so is on.
Otherwise, it falls back to using the existing method.

I've extracted the overage calculation into a separate shared hook.
2025-02-05 10:45:41 +01:00
Mateusz Kwasniewski
ebcbd7b637
feat: productivity report only for seen users (#9204) 2025-02-05 10:05:35 +01:00
Thomas Heartman
bd6a90ffd4
chore: add tests for new traffic usage functions (#9208)
This PR adds tests to all the TODOs created in
https://github.com/Unleash/unleash/pull/9191.

Additionally it finally manages to refactor the `toChartData` function.
2025-02-05 09:47:36 +01:00
renovate[bot]
419d189ddc
chore(deps): update dependency lint-staged to v15.4.3 (#9216)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>lint-staged/lint-staged (lint-staged)</summary>

###
[`v15.4.3`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#1543)

[Compare
Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.4.2...v15.4.3)

##### Patch Changes

-
[#&#8203;1512](https://redirect.github.com/lint-staged/lint-staged/pull/1512)
[`cbfed1d`](cbfed1dfd2)
Thanks [@&#8203;tarik02](https://redirect.github.com/tarik02)! - Adjust
TypeScript types for the default export so that it can be used as a
value without error TS2693.

###
[`v15.4.2`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#1542)

[Compare
Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.4.1...v15.4.2)

##### Patch Changes

-
[#&#8203;1509](https://redirect.github.com/lint-staged/lint-staged/pull/1509)
[`8827ebf`](8827ebf29d)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! - Change
*lint-staged*'s dependencies to use [caret (`^`)
ranges](https://docs.npmjs.com/cli/v6/using-npm/semver#caret-ranges-123-025-004)
instead of [tilde
(`~`)](https://docs.npmjs.com/cli/v6/using-npm/semver#tilde-ranges-123-12-1).
This makes it easier for package managers to perform dependency
management when minor-level updates are also permitted instead of just
patch-level.

###
[`v15.4.1`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#1541)

[Compare
Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.4.0...v15.4.1)

##### Patch Changes

-
[#&#8203;1504](https://redirect.github.com/lint-staged/lint-staged/pull/1504)
[`1c7a45e`](1c7a45ed2c)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! - Default
TypeScript config filenames match JS equivalents.

-
[#&#8203;1504](https://redirect.github.com/lint-staged/lint-staged/pull/1504)
[`9cc18c9`](9cc18c9deb)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! - Add missing
conditional exports syntax for TypeScript types.

###
[`v15.4.0`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#1540)

[Compare
Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.3.0...v15.4.0)

##### Minor Changes

-
[#&#8203;1500](https://redirect.github.com/lint-staged/lint-staged/pull/1500)
[`a8ec1dd`](a8ec1ddb58)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! -
*Lint-staged* now provides TypeScript types for the configuration and
main Node.js API. You can use the JSDoc syntax in your JS configuration
files:

    ```js
    /**
     * @&#8203;filename: lint-staged.config.js
     * @&#8203;type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }
    ```

It's also possible to use the `.ts` file extension for the configuration
if your Node.js version supports it. The `--experimental-strip-types`
flag was introduced in [Node.js
v22.6.0](https://redirect.github.com/nodejs/node/releases/tag/v22.6.0)
and unflagged in
[v23.6.0](https://redirect.github.com/nodejs/node/releases/tag/v23.6.0),
enabling Node.js to execute TypeScript files without additional
configuration.

    ```shell
    export NODE_OPTIONS="--experimental-strip-types"

    npx lint-staged --config lint-staged.config.ts
    ```

##### Patch Changes

-
[#&#8203;1501](https://redirect.github.com/lint-staged/lint-staged/pull/1501)
[`9b79364`](9b793640e1)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! - Handle
possible failures when logging user shell for debug info.

###
[`v15.3.0`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#1530)

[Compare
Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.2.11...v15.3.0)

##### Minor Changes

-
[#&#8203;1495](https://redirect.github.com/lint-staged/lint-staged/pull/1495)
[`e69da9e`](e69da9e614)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! - Added more
info to the debug logs so that "environment" info doesn't need to be
added separately to GitHub issues.

-
[#&#8203;1493](https://redirect.github.com/lint-staged/lint-staged/pull/1493)
[`fa0fe98`](fa0fe98104)
Thanks [@&#8203;iiroj](https://redirect.github.com/iiroj)! - Added more
help messages around the automatic `git stash` that *lint-staged*
creates as a backup (by default). The console output also displays the
short git *hash* of the stash so that it's easier to recover lost files
in case some fatal errors are encountered, or the process is killed
before completing.

    For example:

        % npx lint-staged
        ✔ Backed up original state in git stash (20addf8)
        ✔ Running tasks for staged files...
        ✔ Applying modifications from tasks...
        ✔ Cleaning up temporary files...

where the backup can be seen with `git show 20addf8`, or `git stash
list`:

        % git stash list
        stash@{0}: lint-staged automatic backup (20addf8)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-05 01:40:09 +00:00
renovate[bot]
29a4fe6c5d
chore(deps): update dependency cypress-vite to v1.6.0 (#9215)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>mammadataei/cypress-vite (cypress-vite)</summary>

###
[`v1.6.0`](https://redirect.github.com/mammadataei/cypress-vite/blob/HEAD/CHANGELOG.md#160-2024-12-31)

[Compare
Source](https://redirect.github.com/mammadataei/cypress-vite/compare/v1.5.0...v1.6.0)

##### Features

- add support for vite v6
([#&#8203;104](https://redirect.github.com/mammadataei/cypress-vite/issues/104))
([6680e60](6680e60107))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-05 01:39:45 +00:00
renovate[bot]
cc09b038d8
chore(deps): update dependency @cyclonedx/yarn-plugin-cyclonedx to v1.1.0 (#9214)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@cyclonedx/yarn-plugin-cyclonedx](https://redirect.github.com/CycloneDX/cyclonedx-node-yarn)
| [`1.0.2` ->
`1.1.0`](https://renovatebot.com/diffs/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.0.2/1.1.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.0.2/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.0.2/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>CycloneDX/cyclonedx-node-yarn
(@&#8203;cyclonedx/yarn-plugin-cyclonedx)</summary>

###
[`v1.1.0`](https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/blob/HEAD/HISTORY.md#110---2025-01-14)

[Compare
Source](https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/compare/v1.0.2...v1.1.0)

-   Added
- Capability to gather license text evidences ([#&#8203;33] via
[#&#8203;193])\
This feature can be controlled via CLI switch `--gather-license-texts`.\
This feature is experimental. This feature is disabled per default.
-   Dependencies
- Upgraded runtime-dependency `@cyclonedx/cyclonedx-library@6.13.1`, was
`@6.11.0` (via [#&#8203;206], [#&#8203;237])\
This was done to incorporate non-breaking upstream changes and fixes.
- Upgraded runtime-dependency `normalize-package-data@6.0.2`, was
`@6.0.1` (via [#&#8203;141])\
This was done to incorporate non-breaking upstream changes and fixes.
- Removed unused runtime dependency `packageurl-js` (via [#&#8203;220])
-   Build
- Use *TypeScript* `v5.7.3` now, was `v5.5.3` (via [#&#8203;160],
[#&#8203;178], [#&#8203;233], [#&#8203;212], [#&#8203;244])
- Use
*[@&#8203;yarnpkg/builder](https://redirect.github.com/yarnpkg/builder)*
`v4.2.0` now, was `v4.1.1` (via [#&#8203;164], [#&#8203;172])

[#&#8203;33]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/issues/33

[#&#8203;141]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/141

[#&#8203;160]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/160

[#&#8203;164]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/164

[#&#8203;172]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/172

[#&#8203;178]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/178

[#&#8203;193]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/193

[#&#8203;206]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/206

[#&#8203;212]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/212

[#&#8203;220]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/220

[#&#8203;233]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/233

[#&#8203;237]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/237

[#&#8203;244]:
https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/244

\[#]:

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-04 22:19:13 +00:00
renovate[bot]
f6c7b466a5
fix(deps): update dependency unleash-client to v6.4.2 (#9213)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>Unleash/unleash-client-node (unleash-client)</summary>

###
[`v6.4.2`](https://redirect.github.com/Unleash/unleash-client-node/releases/tag/v6.4.2)

[Compare
Source](https://redirect.github.com/Unleash/unleash-client-node/compare/v6.4.1...v6.4.2)

#### What's Changed

- test: make regexes less strict for unleash version by
[@&#8203;thomasheartman](https://redirect.github.com/thomasheartman) in
[https://github.com/Unleash/unleash-client-node/pull/698](https://redirect.github.com/Unleash/unleash-client-node/pull/698)
- fix: use existing convention for sdk name by
[@&#8203;kwasniew](https://redirect.github.com/kwasniew) in
[https://github.com/Unleash/unleash-client-node/pull/699](https://redirect.github.com/Unleash/unleash-client-node/pull/699)

**Full Changelog**:
https://github.com/Unleash/unleash-client-node/compare/v6.4.1...v6.4.2

###
[`v6.4.1`](https://redirect.github.com/Unleash/unleash-client-node/releases/tag/v6.4.1)

[Compare
Source](https://redirect.github.com/Unleash/unleash-client-node/compare/v6.4.0...v6.4.1)

#### What's Changed

- fix: cross platform uuid by
[@&#8203;kwasniew](https://redirect.github.com/kwasniew) in
[https://github.com/Unleash/unleash-client-node/pull/696](https://redirect.github.com/Unleash/unleash-client-node/pull/696)
- Meta: update release action to v2 by
[@&#8203;thomasheartman](https://redirect.github.com/thomasheartman) in
[https://github.com/Unleash/unleash-client-node/pull/697](https://redirect.github.com/Unleash/unleash-client-node/pull/697)

**Full Changelog**:
https://github.com/Unleash/unleash-client-node/compare/v6.4.0...v6.4.1

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-04 22:18:53 +00:00
renovate[bot]
31b1ee70e3
fix(deps): update dependency json-2-csv to v5.5.8 (#9211)
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.7` ->
`5.5.8`](https://renovatebot.com/diffs/npm/json-2-csv/5.5.7/5.5.8) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/json-2-csv/5.5.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/json-2-csv/5.5.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/json-2-csv/5.5.7/5.5.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/json-2-csv/5.5.7/5.5.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

- Incorporates [@&#8203;sevrai](https://redirect.github.com/sevrai)'s
fix from
[#&#8203;271](https://redirect.github.com/mrodrig/json-2-csv/issues/271)
-   Dev Dependency vulnerability patch

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-04 18:46:10 +00:00
Gastón Fournier
a4a5687687
feat: render markdown in toats (#9207)
## About the changes
Toasts sometimes render messages that are in markdown format. This
changes how we display them from

![image](https://github.com/user-attachments/assets/61930d1d-b54c-49a0-b982-af1484cd2981)
to this:
![Screenshot from 2025-02-04
15-23-36](https://github.com/user-attachments/assets/a569345c-abf5-4d9d-9cf6-4c94701689c7)
2025-02-04 16:35:25 +01:00
Gastón Fournier
ae65919f92
fix: license banner using message type (#9209)
## About the changes
Actually uses messageType and maps from warn to warning.
2025-02-04 15:14:47 +00:00
Jaanus Sellin
640db0c057
chore: pull delta controller out of OSS (#9206)
We are moving delta controller to enterprise. This sets it up.
2025-02-04 14:37:39 +02:00
Thomas Heartman
c85c687816
chore(1-3335): filters data coming from the API to remove data points we're not interested in (#9205)
Implements a function that cleans and filters incoming data from the
new traffic API.

Specifically, it:
- Removes `/edge` data points
- Removes any data from before may 2024, which is the first full month
we have on record

Because all uses of the existing hook do this filtering themselves, I
have added the filtering at the hook level. This is to avoid
forgetting this filtering later. If we find out we need this data, we
can move the filtering.
2025-02-04 13:26:08 +01:00
Jaanus Sellin
d8a47ce39d
fix: now hydration event is being returned if revision does not exist in cache (#9203)
Now when customer is coming with revision ID that does not exist in
cache, we return hydration.
2025-02-04 13:21:17 +02:00
Thomas Heartman
96dac84880
refactor: period selector component (#9202)
Refactors the period selector component now that the design / system is
pretty much finished.

Main points are: change from using CSS selectors to using styled
components; use props instead of classes. This is in keeping with the
general Unleash approach.

There's two very slight visual changes here:
1. There is 4px of added space below the "range" "header" text.
2. The months in the grid are a little closer together and not as wide.
This is because we remove the explicit column gap due to the grid having
a set width. Previously the width was automatic, but because we want
this to line up with the button, we need to set the width explicitly on
both items. As such, with the padding, the grid was a little too wide,
so there was too little padding on the right. This rectifies that.
2025-02-04 11:37:58 +01:00
Thomas Heartman
2980c0de4e
refactor(1-3336): useTrafficData / NetworkTrafficUsage.tsx cleanup (#9191)
This PR refactors the `NetworkTrafficUsage.tsx` and `useTrafficData`
files a bit.

The primary objective was to make the network traffic usage component
easier to work with, so I suggest to the reviewer that they start there.

Part of that refactoring, was taking things out of the useTraffic hook
that didn't need to be there. In the end, I'd removed so much that I
didn't even need the hook itself in the new component, so I switched
that to a regular useState.

It made more sense to me to put some of the functions inside the hook
into a separate file and import them directly (because they don't rely
on any hook state), so I have done that and removed those functions from
the trafficData hook. In this case, I also moved the tests.

I have not added any new tests in this PR, but will do so in a
follow-up. The functions I intend to test have been marked as such.
2025-02-04 10:32:59 +01:00
Tymoteusz Czech
c1e41b2b05
fix: users groups table columns on small screens (#9194)
On page "edit users for group", prevent user names and avatars form
disappearing on devices with small screen.
2025-02-04 10:19:40 +01:00
Mateusz Kwasniewski
c68a542a63
refactor: project users virtual autocomplete (#9196) 2025-02-04 10:04:36 +01:00
Melinda Fekete
ef8191c68d
Update API tokens and client keys pages (#9143) 2025-02-04 09:32:32 +01:00
renovate[bot]
e5e7e2fdd3
chore(deps): update node.js to v20.18.2 (#9199)
This PR contains the following updates:

| Package | Type | Update | Change | Pending | Age | Adoption | Passing
| Confidence |
|---|---|---|---|---|---|---|---|---|
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | | patch |
`20.18.1` -> `20.18.2` | |
[![age](https://developer.mend.io/api/mc/badges/age/node-version/node/v20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/node-version/node/v20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/node-version/node/v20.18.1/v20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/node-version/node/v20.18.1/v20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [node](https://redirect.github.com/nodejs/node) | final | patch |
`20.18.1-alpine` -> `20.18.2-alpine` | |
[![age](https://developer.mend.io/api/mc/badges/age/docker/node/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/docker/node/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/docker/node/20.18.1/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/node/20.18.1/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [node](https://redirect.github.com/nodejs/node) | stage | patch |
`20.18.1-alpine` -> `20.18.2-alpine` | |
[![age](https://developer.mend.io/api/mc/badges/age/docker/node/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/docker/node/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/docker/node/20.18.1/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/node/20.18.1/20.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| devDependencies | patch | [`20.17.14` ->
`20.17.16`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.14/20.17.16)
| `20.17.17` |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.17.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.17.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.17.14/20.17.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.17.14/20.17.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>nodejs/node (node)</summary>

###
[`v20.18.2`](https://redirect.github.com/nodejs/node/compare/v20.18.1...v20.18.2)

[Compare
Source](https://redirect.github.com/nodejs/node/compare/v20.18.1...v20.18.2)

</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 these
updates 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-04 04:37:46 +00:00
renovate[bot]
e3ec05fd51
fix(deps): update dependency docusaurus-theme-openapi-docs to v4.3.2 (#9201)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[docusaurus-theme-openapi-docs](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs)
([source](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/tree/HEAD/packages/docusaurus-theme-openapi-docs))
| [`4.3.1` ->
`4.3.2`](https://renovatebot.com/diffs/npm/docusaurus-theme-openapi-docs/4.3.1/4.3.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/docusaurus-theme-openapi-docs/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/docusaurus-theme-openapi-docs/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/docusaurus-theme-openapi-docs/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/docusaurus-theme-openapi-docs/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>PaloAltoNetworks/docusaurus-openapi-docs
(docusaurus-theme-openapi-docs)</summary>

###
[`v4.3.2`](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/blob/HEAD/CHANGELOG.md#432-Jan-24-2025)

[Compare
Source](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/compare/v4.3.1...v4.3.2)

High level enhancements

-   Add support for JSON Schema `null` type
-   Improve handling of required fields in request bodies
-   Normalize response body arrays to improve consistency

Other enhancements and bug fixes

- add support for json schema null type
([#&#8203;1068](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1068))
- allow default body to satisfy required
([#&#8203;1067](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1067))
- normalize body array instead of returning literal
([#&#8203;1066](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1066))
- Upgrade demo and packages to support 3.7.0
([#&#8203;1064](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1064))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-04 02:03:23 +00:00
renovate[bot]
5e62b52249
fix(deps): update dependency docusaurus-plugin-openapi-docs to v4.3.2 (#9200)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[docusaurus-plugin-openapi-docs](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs)
([source](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/tree/HEAD/packages/docusaurus-plugin-openapi-docs))
| [`4.3.1` ->
`4.3.2`](https://renovatebot.com/diffs/npm/docusaurus-plugin-openapi-docs/4.3.1/4.3.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/docusaurus-plugin-openapi-docs/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/docusaurus-plugin-openapi-docs/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/docusaurus-plugin-openapi-docs/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/docusaurus-plugin-openapi-docs/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>PaloAltoNetworks/docusaurus-openapi-docs
(docusaurus-plugin-openapi-docs)</summary>

###
[`v4.3.2`](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/blob/HEAD/CHANGELOG.md#432-Jan-24-2025)

[Compare
Source](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/compare/v4.3.1...v4.3.2)

High level enhancements

-   Add support for JSON Schema `null` type
-   Improve handling of required fields in request bodies
-   Normalize response body arrays to improve consistency

Other enhancements and bug fixes

- add support for json schema null type
([#&#8203;1068](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1068))
- allow default body to satisfy required
([#&#8203;1067](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1067))
- normalize body array instead of returning literal
([#&#8203;1066](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1066))
- Upgrade demo and packages to support 3.7.0
([#&#8203;1064](https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1064))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-04 02:03:02 +00:00
renovate[bot]
b238ddb2fe
chore(deps): update dependency @swc/core to v1.10.11 (#9198)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@swc/core](https://swc.rs)
([source](https://redirect.github.com/swc-project/swc)) | [`1.10.9` ->
`1.10.11`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.9/1.10.11)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@swc%2fcore/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@swc%2fcore/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@swc%2fcore/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@swc%2fcore/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>swc-project/swc (@&#8203;swc/core)</summary>

###
[`v1.10.11`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11011---2025-01-27)

[Compare
Source](https://redirect.github.com/swc-project/swc/compare/v1.10.9...v1.10.11)

##### Bug Fixes

- **(es)** Restore JSON config & Adjust feature renaming
([#&#8203;9967](https://redirect.github.com/swc-project/swc/issues/9967))
([72e5455](72e545575b))

- **(es/minifier)** Avoid paren when compressing ternary
([#&#8203;9920](https://redirect.github.com/swc-project/swc/issues/9920))
([9d6fe37](9d6fe370cf))

- **(es/parser)** Parse `yield<T> (v: T)=>v`
([#&#8203;9915](https://redirect.github.com/swc-project/swc/issues/9915))
([04333aa](04333aacfe))

- **(ts/fast-strip)** More robust generic arrow handling
([#&#8203;9913](https://redirect.github.com/swc-project/swc/issues/9913))
([f7faa7c](f7faa7c08c))

- **(typescript)** Allow references to the global Symbol in computed
property names under `isolatedDeclarations`
([#&#8203;9869](https://redirect.github.com/swc-project/swc/issues/9869))
([e4c1e03](e4c1e03e17))

##### Features

- **(es/minifier)** Compress negate eq
([#&#8203;9911](https://redirect.github.com/swc-project/swc/issues/9911))
([e8f23cf](e8f23cf921))

- **(es/minifier)** Compress Assign to number
([#&#8203;9943](https://redirect.github.com/swc-project/swc/issues/9943))
([d5f40a0](d5f40a0bc0))

- **(parallel)** Add `merge_in_parallel`
([#&#8203;9939](https://redirect.github.com/swc-project/swc/issues/9939))
([c5b8390](c5b8390d62))

- Merge `hstr` into the main repository
([#&#8203;9963](https://redirect.github.com/swc-project/swc/issues/9963))
([bc61c13](bc61c1317f))

##### Miscellaneous Tasks

- **(es/minifier)** Add a script for samply profiler
([#&#8203;9923](https://redirect.github.com/swc-project/swc/issues/9923))
([8f8dcaa](8f8dcaac2f))

- **(preset-env)** Update `browserslist-rs`
([#&#8203;9918](https://redirect.github.com/swc-project/swc/issues/9918))
([606ffe5](606ffe51ea))

##### Performance

- **(es/react)** Use proper string types for react configuration
([#&#8203;9949](https://redirect.github.com/swc-project/swc/issues/9949))
([1bf837e](1bf837e476))

- **(es/utils)** Prevent too many recursion
([#&#8203;9931](https://redirect.github.com/swc-project/swc/issues/9931))
([d24f785](d24f785a5c))

- **(es/utils)** Restrict recursion of `get_type`
([#&#8203;9933](https://redirect.github.com/swc-project/swc/issues/9933))
([1781b85](1781b85ddb))

- **(preset-env)** Store `Versions` in `Arc`
([#&#8203;9950](https://redirect.github.com/swc-project/swc/issues/9950))
([03dffb5](03dffb50fb))

##### Refactor

- **(es/minifier)** Make `minify-all` example sequential
([#&#8203;9912](https://redirect.github.com/swc-project/swc/issues/9912))
([5b5c87e](5b5c87e724))

- **(hstr)** Remove needless operations
([#&#8203;9964](https://redirect.github.com/swc-project/swc/issues/9964))
([6f781d8](6f781d8fd4))

- **(swc)** Remove typo feature
([#&#8203;9965](https://redirect.github.com/swc-project/swc/issues/9965))
([4b14eec](4b14eecabf))

- Apply all pending breaking changes
([#&#8203;9966](https://redirect.github.com/swc-project/swc/issues/9966))
([1c2f7e9](1c2f7e9db7))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-03 21:30:33 +00:00
Nuno Góis
138410eafd
chore: drop release plan template view permissions (#9195)
https://linear.app/unleash/issue/2-3225/drop-the-release-template-view-permissions

Drops the release plan template view permissions in favor of an "open by
default" approach.

Should merge the Enterprise PR first.
2025-02-03 16:24:25 +00:00
Mateusz Kwasniewski
f9e0c27bf1
fix: heroku reset for tests (#9197) 2025-02-03 16:45:25 +01:00
Mateusz Kwasniewski
c86ea091b7
feat: virtual autocomplete (#9181) 2025-02-03 16:07:24 +01:00
Gastón Fournier
6f19ce090d
feat: move create user validations to the input (#9189)
## About the changes
Validations in the constructor were executed on the way out (i.e. when
reading users). Instead we should validate when we insert the users.

We're also relaxing the email validation to support top domain emails
(e.g. `...@jp`)
2025-02-03 15:18:20 +01:00
Gastón Fournier
b9aa554b0d
feat: ability to communicate other license messages (#9192)
## About the changes
This gives us the ability to communicate other license messages which
are not errors. By default they'll be warning but I'm opening the
possibility of using a backend-provided value to make them informative
instead of warning.

The intention is to communicate things like:
- Your license is about to expire in x days.
- You are getting close to the maximum number of seats in your license
- etc
2025-02-03 15:17:06 +01:00
renovate[bot]
575bc41af0
chore(deps): update dependency vite to v5.4.14 (#9187)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://vite.dev)
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite))
| [`5.4.12` ->
`5.4.14`](https://renovatebot.com/diffs/npm/vite/5.4.12/5.4.14) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.4.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.4.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.4.12/5.4.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.4.12/5.4.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitejs/vite (vite)</summary>

###
[`v5.4.14`](https://redirect.github.com/vitejs/vite/releases/tag/v5.4.14)

[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v5.4.13...v5.4.14)

Please refer to
[CHANGELOG.md](https://redirect.github.com/vitejs/vite/blob/v5.4.14/packages/vite/CHANGELOG.md)
for details.

###
[`v5.4.13`](https://redirect.github.com/vitejs/vite/releases/tag/v5.4.13)

[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v5.4.12...v5.4.13)

Please refer to
[CHANGELOG.md](https://redirect.github.com/vitejs/vite/blob/v5.4.13/packages/vite/CHANGELOG.md)
for details.

</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 these
updates 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-03 13:34:56 +00:00
renovate[bot]
f7b346e792
chore(deps): update dependency tss-react to v4.9.15 (#9186)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>garronej/tss-react (tss-react)</summary>

###
[`v4.9.15`](https://redirect.github.com/garronej/tss-react/releases/tag/v4.9.15)

[Compare
Source](https://redirect.github.com/garronej/tss-react/compare/v4.9.14...v4.9.15)

<!-- Release notes generated using configuration in .github/release.yaml
at refs/heads/main -->

**Full Changelog**:
https://github.com/garronej/tss-react/compare/v4.9.14...v4.9.15

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-03 13:34:40 +00:00
Thomas Heartman
fd1ad31bb5
fix: make traffic usage test more robust by using this month's actual numbers (#9193)
The test was breaking because it assumed a month would have at least
30 days.

Because the test relies on the current month, this isn't necessarily
true.

Further, there's parts of the code that relies on "impure" state via
the "current date" (which will change based on when you run it), so
setting a specific month in the test won't work.

As such, this test makes the calculation explicit and uses the number
of days in the current month.
2025-02-03 13:29:07 +00:00
Thomas Heartman
bd12cfce7c
fix(1-3334): re-align the dropdown menu with the dropdown (#9188)
Makes it so that the dropdown menu sits below the dropdown button,
rather than being offset to the end of the containing flexbox.

The issue was caused by the surrounding container being a flexbox.
This caused the popover anchor to grow to the full height of the box,
making the menu look offset.

By using `align-items: start`, we get around this.

Before

![image](https://github.com/user-attachments/assets/0f044627-05a3-4225-9a25-b20393c40158)


After:

![image](https://github.com/user-attachments/assets/9a6d1d7f-7f18-48d3-abdf-f4bb7c02ba68)
2025-02-03 11:00:15 +01:00
renovate[bot]
bf71d397a9
chore(deps): update dependency @babel/core to v7.26.7 (#9184)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@babel/core](https://babel.dev/docs/en/next/babel-core)
([source](https://redirect.github.com/babel/babel/tree/HEAD/packages/babel-core))
| [`7.26.0` ->
`7.26.7`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.26.0/7.26.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@babel%2fcore/7.26.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@babel%2fcore/7.26.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@babel%2fcore/7.26.0/7.26.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@babel%2fcore/7.26.0/7.26.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>babel/babel (@&#8203;babel/core)</summary>

###
[`v7.26.7`](https://redirect.github.com/babel/babel/blob/HEAD/CHANGELOG.md#v7267-2025-01-24)

[Compare
Source](https://redirect.github.com/babel/babel/compare/v7.26.0...v7.26.7)

##### 🐛 Bug Fix

-   `babel-helpers`, `babel-preset-env`, `babel-runtime-corejs3`
- [#&#8203;17086](https://redirect.github.com/babel/babel/pull/17086)
Make "object without properties" helpers ES6-compatible
([@&#8203;tquetano-netflix](https://redirect.github.com/tquetano-netflix))
-   `babel-plugin-transform-typeof-symbol`
- [#&#8203;17085](https://redirect.github.com/babel/babel/pull/17085)
fix: Correctly handle `typeof` in arrow functions
([@&#8203;liuxingbaoyu](https://redirect.github.com/liuxingbaoyu))
-   `babel-parser`
- [#&#8203;17079](https://redirect.github.com/babel/babel/pull/17079)
Respect `ranges` option in estree method value
([@&#8203;JLHwung](https://redirect.github.com/JLHwung))
-   `babel-core`
- [#&#8203;17052](https://redirect.github.com/babel/babel/pull/17052) Do
not try to parse .ts configs as JSON if natively supported
([@&#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-   `babel-plugin-transform-typescript`
- [#&#8203;17050](https://redirect.github.com/babel/babel/pull/17050)
fix: correctly resolve references to non-constant enum members
([@&#8203;branchseer](https://redirect.github.com/branchseer))
-   `babel-plugin-transform-typescript`, `babel-traverse`, `babel-types`
- [#&#8203;17025](https://redirect.github.com/babel/babel/pull/17025)
fix: Remove type-only `import x = y.z`
([@&#8203;liuxingbaoyu](https://redirect.github.com/liuxingbaoyu))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-31 20:47:22 +00:00
renovate[bot]
d83422ac45
chore(deps): update dependency sass to v1.83.4 (#9185)
This PR contains the following updates:

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

---

### Release Notes

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

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

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

-   No user-visible changes.

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

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

-   No user-visible changes.

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

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

-   Properly display deprecation IDs for the JS Sass API.

-   Don't display deprecation IDs for user-defined deprecations.

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

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

- Fix a bug where `--quiet-deps` would get deactivated for `@content`
blocks,
    even when those blocks were entirely contained within dependencies.

- Include deprecation IDs in deprecation warnings to make it easier to
determine
    what to pass to `--silence-deprecation` or `--fatal-deprecation`.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-31 20:47:05 +00:00
Mateusz Kwasniewski
3b76c31838
fix: relax email checking (#9183) 2025-01-31 15:10:18 +01:00
Mateusz Kwasniewski
9f568b79b2
fix: relax email checking (#9182) 2025-01-31 14:50:24 +01:00
Thomas Heartman
e72a7c1197
chore(1-3316): update request info boxes to new design (#9180)
Updates the existing number of requests and overage info boxes to the
new design.

The existing versions of the boxes had some issues on narrower screens,
so it was easier to just leave them as is and start from scratch.

The previous boxes on narrow screens:

![image](https://github.com/user-attachments/assets/f3efa00d-ac0d-41ed-82d8-11766e043cb5)


The current ones (from wide to narrower):
Wide

![image](https://github.com/user-attachments/assets/0a48c013-afcd-4652-9229-0fca19a83733)

Mid (the text should probably ideally wrap at the same time here, but
I'm not sure how at the moment)

![image](https://github.com/user-attachments/assets/2ea3a672-80a6-4445-ae90-736c91c6e88e)

Narrow

![image](https://github.com/user-attachments/assets/03e3de0e-23c1-436a-8f6c-4c78cd4fdae7)

Extra narrow:

![image](https://github.com/user-attachments/assets/652c0c3b-71b1-4b2e-9e86-217f0c827aa6)



There's still some work we **could** do, but we should have UX have a
look first. In particular, it's about how the text wraps in certain
places etc, but I think it's good enough for now.

I'll come back with tests for the calculations and some refactoring and
cleanup in a followup.
2025-01-31 14:05:36 +01:00
renovate[bot]
eba183a12c
chore(deps): update material-ui monorepo (#9033)
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.14`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.3/5.16.14)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.16.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.16.14?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.14?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.14?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.175`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.175)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2flab/5.0.0-alpha.175?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2flab/5.0.0-alpha.175?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.175?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.175?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.14`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.15.3/5.16.14)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.16.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.16.14?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.14?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.14?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.23.3` ->
`7.24.1`](https://renovatebot.com/diffs/npm/@mui%2fx-date-pickers/7.23.3/7.24.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-date-pickers/7.24.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-date-pickers/7.24.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-date-pickers/7.23.3/7.24.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-date-pickers/7.23.3/7.24.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

<!-- generated comparing v5.16.13..v5.x -->

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

##### `@mui/material@5.16.14`

- \[Autocomplete] Revert: Fix options list rendering in freeSolo mode
([#&#8203;44857](https://redirect.github.com/mui/material-ui/issues/44857))
[@&#8203;ZeeshanTamboli](https://redirect.github.com/ZeeshanTamboli)

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

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

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

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

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

<!-- generated comparing v5.16.11..v5.x -->

*Dec 16, 2024*

Material UI v5 is now compatible with React 19
([#&#8203;44720](https://redirect.github.com/mui/material-ui/issues/44720))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

##### Core

- Bump react 19 in v5
([#&#8203;44720](https://redirect.github.com/mui/material-ui/issues/44720))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- Add `latest-v5` tag to v5 releases
([#&#8203;44757](https://redirect.github.com/mui/material-ui/issues/44757))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

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

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

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

##### Core

- Bump pnpm to 9.14.4 in v5
([#&#8203;44705](https://redirect.github.com/mui/material-ui/issues/44705))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- Fix UMD examples
([#&#8203;44706](https://redirect.github.com/mui/material-ui/issues/44706))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)
- \[typescript] Rescue missing backports v5
([#&#8203;44712](https://redirect.github.com/mui/material-ui/issues/44712))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

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

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

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

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

##### `@mui/material@5.16.9`

- \[Tabs] Cherry pick `ScrollbarSize` ref being overridden fix
([#&#8203;44595](https://redirect.github.com/mui/material-ui/issues/44595))
[@&#8203;DiegoAndai](https://redirect.github.com/DiegoAndai)

##### Core

- Ignore browserslist and remove tag latest
([#&#8203;44589](https://redirect.github.com/mui/material-ui/issues/44589))
[@&#8203;siriwatknp](https://redirect.github.com/siriwatknp)

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

###
[`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/michaeldfo

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuMTQ1LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-31 11:57:22 +00:00
Nuno Góis
25e8f80f21
chore: drag to reorder release plan template milestones (#9176)
https://linear.app/unleash/issue/2-2821/drag-to-reorder-template-milestones

This PR introduces reordering release plan template milestones by
dragging and dropping them.

Was a bit undecided on the approach, but it seems like using an old
`useDragItem` hook we have is pretty elegant and behaves as expected.

I suggest reviewers try it out themselves.

Includes a slight refactor to `useDragItem`, which so far is only used
here and in environments. I manually tested, but I suggest trying that
one out as well just in case.


![image](https://github.com/user-attachments/assets/3e433f70-53f8-4860-a704-60361f3b0ed7)
2025-01-31 09:12:27 +00:00
Mateusz Kwasniewski
ec014c0fdf
feat: limit user filter options (#9179) 2025-01-31 10:09:29 +01:00
renovate[bot]
1b97b1b931
chore(deps): update dependency react-github-calendar to v4.5.4 (#9178)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>grubersjoe/react-github-calendar
(react-github-calendar)</summary>

###
[`v4.5.4`](0605291497...46ad6786ae)

[Compare
Source](0605291497...46ad6786ae)

###
[`v4.5.3`](29135ac8c3...0605291497)

[Compare
Source](29135ac8c3...0605291497)

###
[`v4.5.2`](f8d44788e3...29135ac8c3)

[Compare
Source](f8d44788e3...29135ac8c3)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-31 00:34:20 +00:00
renovate[bot]
2c6cb849ca
chore(deps): update dependency @types/pg to v8.11.11 (#9177)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/pg](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pg)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg))
| [`8.11.10` ->
`8.11.11`](https://renovatebot.com/diffs/npm/@types%2fpg/8.11.10/8.11.11)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fpg/8.11.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fpg/8.11.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fpg/8.11.10/8.11.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fpg/8.11.10/8.11.11?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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-30 21:00:16 +00:00
renovate[bot]
473e1aee58
chore(deps): update dependency @swc/core to v1.10.9 (#9173)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@swc/core](https://swc.rs)
([source](https://redirect.github.com/swc-project/swc)) | [`1.10.8` ->
`1.10.9`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.8/1.10.9) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@swc%2fcore/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@swc%2fcore/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@swc%2fcore/1.10.8/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@swc%2fcore/1.10.8/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>swc-project/swc (@&#8203;swc/core)</summary>

###
[`v1.10.9`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1109---2025-01-21)

[Compare
Source](https://redirect.github.com/swc-project/swc/compare/v1.10.8...v1.10.9)

##### Bug Fixes

- **(es/minifier)** Set param type to unknown
([#&#8203;9905](https://redirect.github.com/swc-project/swc/issues/9905))
([09b3b37](09b3b371f9))

##### Documentation

- **(es/parallel)** Improve document of `Parallel`
([#&#8203;9896](https://redirect.github.com/swc-project/swc/issues/9896))
([9962c9c](9962c9c98d))

##### Features

- **(es/minifier)** Print total size from `minify-all` example
([#&#8203;9897](https://redirect.github.com/swc-project/swc/issues/9897))
([134000f](134000fe93))

- **(es/minifier)** Turn `1 * v` into `+v`
([#&#8203;9903](https://redirect.github.com/swc-project/swc/issues/9903))
([a228347](a2283475b1))

- **(es/minifier)** Compress `foo ? num : 0` into `num * !!foo`
([#&#8203;9908](https://redirect.github.com/swc-project/swc/issues/9908))
([ce22557](ce22557a05))

##### Miscellaneous Tasks

- **(es/minifier)** Print slow files from `minify-all` example
([#&#8203;9899](https://redirect.github.com/swc-project/swc/issues/9899))
([2d87b89](2d87b897e6))

##### Performance

- **(es/minifier)** Make character frequency analysis parallel
([#&#8203;9895](https://redirect.github.com/swc-project/swc/issues/9895))
([ca2fd1e](ca2fd1ebdf))

- **(es/minifier)** Parallelize handling of class members
([#&#8203;9900](https://redirect.github.com/swc-project/swc/issues/9900))
([ed74839](ed748394be))

- **(es/minifier)** Adjust threshold for parallel char frequency
calculation
([#&#8203;9901](https://redirect.github.com/swc-project/swc/issues/9901))
([47ea8de](47ea8de277))

- **(es/minifier)** Do heavy operation only if required
([#&#8203;9902](https://redirect.github.com/swc-project/swc/issues/9902))
([2687231](26872310f6))

- **(es/minifier)** Cache `var_or_default` calls
([#&#8203;9909](https://redirect.github.com/swc-project/swc/issues/9909))
([4a3be8d](4a3be8d60b))

- **(es/minifier)** Invert cache to be really a cache
([#&#8203;9910](https://redirect.github.com/swc-project/swc/issues/9910))
([8bfb0e5](8bfb0e5edd))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-30 15:15:03 +00:00
Mateusz Kwasniewski
77cb30a82f
feat: drop x- header prefix (#9175) 2025-01-30 16:09:26 +01:00
David Leek
b04079c82d
feat: send the add release plan change request from dialog when submitted (#9174) 2025-01-30 10:56:31 +01:00
Mateusz Kwasniewski
07d4693f6d
fix: original url for uniqueness tracking (#9172) 2025-01-29 21:58:43 +01:00
Nuno Góis
91d318a495
chore: add hint to release plan template gradual rollout strategy groupId (#9171)
https://linear.app/unleash/issue/2-3101/ui-hint-for-gradual-rollout-groupid-magic-string-featurename

Explains the current release plan milestone gradual rollout strategy
groupId behavior with an HelpIcon and a tooltip next to the field, when
creating or editing a release plan template.


![image](https://github.com/user-attachments/assets/46f3d943-d9cf-4670-b05b-322c14401a19)
2025-01-29 15:39:02 +00:00
Thomas Heartman
08c016b755
chore: minor button style adjustments (#9170)
Make it look more like a dropdown
2025-01-29 15:43:10 +01:00
Thomas Heartman
f4556839c8
feat(1-3281): wraps the new datepicker in a dropdown (#9169)
Wraps the datepicker in a popover, making it function largely the same
as a dropdown list.

The dropdown displays one of:
- "current month" if you've selected the current month
- "<month> <year>" (e.g. "December 2024") if you've selected a month
that isn't the current month
- "Last n months" (e.g. "Last 3 months") if you have selected a range

Additionally, the range selections have been updated to span the whole
row, aligning with the look of generic dropdown lists.


![image](https://github.com/user-attachments/assets/d356aec5-d51b-42fa-9591-60e2b5038a8e)

Like with the rest of this file (`PeriodSelector`), the code is rough
and not according to Unleash standards. However, I'm prioritizing fast
changes so UX can have a look before I clean up the code to switch to
using styled components etc later. It's still behind a flag, so I'm not
very worried about it.
2025-01-29 15:29:30 +01:00