1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
Commit Graph

851 Commits

Author SHA1 Message Date
renovate[bot]
b61267e713
chore(deps): update react-router monorepo to v6.6.1 (#2762)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-router](https://togithub.com/remix-run/react-router) | [`6.4.5`
-> `6.6.1`](https://renovatebot.com/diffs/npm/react-router/6.4.5/6.6.1)
|
[![age](https://badges.renovateapi.com/packages/npm/react-router/6.6.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-router/6.6.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-router/6.6.1/compatibility-slim/6.4.5)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-router/6.6.1/confidence-slim/6.4.5)](https://docs.renovatebot.com/merge-confidence/)
|
| [react-router-dom](https://togithub.com/remix-run/react-router) |
[`6.4.5` ->
`6.6.1`](https://renovatebot.com/diffs/npm/react-router-dom/6.4.5/6.6.1)
|
[![age](https://badges.renovateapi.com/packages/npm/react-router-dom/6.6.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-router-dom/6.6.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-router-dom/6.6.1/compatibility-slim/6.4.5)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-router-dom/6.6.1/confidence-slim/6.4.5)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>remix-run/react-router (react-router)</summary>

###
[`v6.6.1`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#&#8203;661)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router@6.6.0...react-router@6.6.1)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.2.1`

###
[`v6.6.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#&#8203;660)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router@6.5.0...react-router@6.6.0)

##### Patch Changes

- Prevent `useLoaderData` usage in `errorElement`
([#&#8203;9735](https://togithub.com/remix-run/react-router/pull/9735))
-   Updated dependencies:
    -   `@remix-run/router@1.2.0`

###
[`v6.5.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#&#8203;650)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router@6.4.5...react-router@6.5.0)

This release introduces support for [Optional Route
Segments](https://togithub.com/remix-run/react-router/issues/9546). Now,
adding a `?` to the end of any path segment will make that entire
segment optional. This works for both static segments and dynamic
parameters.

**Optional Params Examples**

-   `<Route path=":lang?/about>` will match:
    -   `/:lang/about`
    -   `/about`
-   `<Route path="/multistep/:widget1?/widget2?/widget3?">` will match:
    -   `/multistep`
    -   `/multistep/:widget1`
    -   `/multistep/:widget1/:widget2`
    -   `/multistep/:widget1/:widget2/:widget3`

**Optional Static Segment Example**

-   `<Route path="/home?">` will match:
    -   `/`
    -   `/home`
-   `<Route path="/fr?/about">` will match:
    -   `/about`
    -   `/fr/about`

##### Minor Changes

- Allows optional routes and optional static segments
([#&#8203;9650](https://togithub.com/remix-run/react-router/pull/9650))

##### Patch Changes

- Stop incorrectly matching on partial named parameters, i.e. `<Route
path="prefix-:param">`, to align with how splat parameters work. If you
were previously relying on this behavior then it's recommended to
extract the static portion of the path at the `useParams` call site:
([#&#8203;9506](https://togithub.com/remix-run/react-router/pull/9506))

```jsx
// Old behavior at URL /prefix-123
<Route path="prefix-:id" element={<Comp /> }>

function Comp() {
  let params = useParams(); // { id: '123' }
  let id = params.id; // "123"
  ...
}

// New behavior at URL /prefix-123
<Route path=":id" element={<Comp /> }>

function Comp() {
  let params = useParams(); // { id: 'prefix-123' }
  let id = params.id.replace(/^prefix-/, ''); // "123"
  ...
}
```

-   Updated dependencies:
    -   `@remix-run/router@1.1.0`

</details>

<details>
<summary>remix-run/react-router (react-router-dom)</summary>

###
[`v6.6.1`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#&#8203;661)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.6.0...react-router-dom@6.6.1)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.2.1`
    -   `react-router@6.6.1`

###
[`v6.6.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#&#8203;660)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.5.0...react-router-dom@6.6.0)

##### Minor Changes

- Add `useBeforeUnload()` hook
([#&#8203;9664](https://togithub.com/remix-run/react-router/pull/9664))
- Remove `unstable_` prefix from
`createStaticHandler`/`createStaticRouter`/`StaticRouterProvider`
([#&#8203;9738](https://togithub.com/remix-run/react-router/pull/9738))

##### Patch Changes

- Proper hydration of `Error` objects from `StaticRouterProvider`
([#&#8203;9664](https://togithub.com/remix-run/react-router/pull/9664))
- Support uppercase `<Form method>` and `useSubmit` method values
([#&#8203;9664](https://togithub.com/remix-run/react-router/pull/9664))
- Skip initial scroll restoration for SSR apps with `hydrationData`
([#&#8203;9664](https://togithub.com/remix-run/react-router/pull/9664))
- Fix `<button formmethod>` form submission overriddes
([#&#8203;9664](https://togithub.com/remix-run/react-router/pull/9664))
-   Updated dependencies:
    -   `@remix-run/router@1.2.0`
    -   `react-router@6.6.0`

###
[`v6.5.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#&#8203;650)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.4.5...react-router-dom@6.5.0)

##### Patch Changes

-   Updated dependencies:
    -   `react-router@6.5.0`
    -   `@remix-run/router@1.1.0`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 21:50:42 +00:00
renovate[bot]
268f469b2b
chore(deps): update dependency chartjs-adapter-date-fns to v3 (#2767)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [chartjs-adapter-date-fns](https://www.chartjs.org)
([source](https://togithub.com/chartjs/chartjs-adapter-date-fns)) |
[`2.0.1` ->
`3.0.0`](https://renovatebot.com/diffs/npm/chartjs-adapter-date-fns/2.0.1/3.0.0)
|
[![age](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/compatibility-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/confidence-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>chartjs/chartjs-adapter-date-fns</summary>

###
[`v3.0.0`](https://togithub.com/chartjs/chartjs-adapter-date-fns/releases/tag/v3.0.0)

[Compare
Source](https://togithub.com/chartjs/chartjs-adapter-date-fns/compare/v2.0.1...v3.0.0)

### Essential Links

-   [npm](https://www.npmjs.com/package/chartjs-adapter-date-fns)

<!---->

-
[#&#8203;50](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/50)
Bump terser from 5.7.0 to 5.14.2
-
[#&#8203;57](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/57)
Bump engine.io and socket.io

#### Enhancements

-
[#&#8203;63](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/63)
feat: package as a module

Thanks to [@&#8203;dependabot](https://togithub.com/dependabot),
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot] and
[@&#8203;kurkle](https://togithub.com/kurkle)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43NC4yIiwidXBkYXRlZEluVmVyIjoiMzQuNzQuMiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 14:09:19 +01:00
renovate[bot]
6d914d2a01
chore(deps): update dependency vite-plugin-svgr to v2.4.0 (#2759)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite-plugin-svgr](https://togithub.com/pd4d10/vite-plugin-svgr) |
[`2.3.0` ->
`2.4.0`](https://renovatebot.com/diffs/npm/vite-plugin-svgr/2.3.0/2.4.0)
|
[![age](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.4.0/compatibility-slim/2.3.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.4.0/confidence-slim/2.3.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>pd4d10/vite-plugin-svgr</summary>

###
[`v2.4.0`](https://togithub.com/pd4d10/vite-plugin-svgr/releases/tag/v2.4.0)

[Compare
Source](https://togithub.com/pd4d10/vite-plugin-svgr/compare/v2.3.0...v2.4.0)

#####    🚀 Features

- Support node16 module resolution  -  by
[@&#8203;gunters63](https://togithub.com/gunters63) in
[https://github.com/pd4d10/vite-plugin-svgr/issues/66](https://togithub.com/pd4d10/vite-plugin-svgr/issues/66)
[<samp>(115bc)</samp>](https://togithub.com/pd4d10/vite-plugin-svgr/commit/115bc87)

#####     [View changes on
GitHub](https://togithub.com/pd4d10/vite-plugin-svgr/compare/v2.3.0...v2.4.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 13:06:52 +00:00
renovate[bot]
25858cae82
chore(deps): update dependency sass to v1.57.1 (#2757)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://togithub.com/sass/dart-sass) | [`1.56.2` ->
`1.57.1`](https://renovatebot.com/diffs/npm/sass/1.56.2/1.57.1) |
[![age](https://badges.renovateapi.com/packages/npm/sass/1.57.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/sass/1.57.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/sass/1.57.1/compatibility-slim/1.56.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/sass/1.57.1/confidence-slim/1.56.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v1.57.1`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#&#8203;1571)

[Compare
Source](https://togithub.com/sass/dart-sass/compare/1.57.0...1.57.1)

-   No user-visible changes.

###
[`v1.57.0`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#&#8203;1570)

[Compare
Source](https://togithub.com/sass/dart-sass/compare/1.56.2...1.57.0)

- Add a `split($string, $separator, $limit: null)` function to
`sass:string`
that splits a string into separate substrings based on a separator
string.

##### JavaScript API

- **Potentially breaking bug fix**: Custom functions in both the modern
and
legacy API now properly reject signatures with whitespace between the
function
    name and parentheses.

- Custom functions in the legacy API now allow signatures with
whitespace before
    the function name, to match a bug in Node Sass.

##### Dart API

-   **Potentially breaking bug fix**: `Callable.fromSignature()` and
`AsyncCallable.fromSignature()` now reject signatures with whitespace
between
    the function name and parentheses.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 10:26:11 +00:00
renovate[bot]
1fa75cb620
chore(deps): update dependency vitest to v0.26.2 (#2760)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vitest](https://togithub.com/vitest-dev/vitest) | [`0.25.7` ->
`0.26.2`](https://renovatebot.com/diffs/npm/vitest/0.25.7/0.26.2) |
[![age](https://badges.renovateapi.com/packages/npm/vitest/0.26.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vitest/0.26.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vitest/0.26.2/compatibility-slim/0.25.7)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vitest/0.26.2/confidence-slim/0.25.7)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitest-dev/vitest</summary>

###
[`v0.26.2`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.26.2)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.26.1...v0.26.2)

#####    🚀 Features

- Project name  -  by [@&#8203;antfu](https://togithub.com/antfu)
[<samp>(84f98)</samp>](https://togithub.com/vitest-dev/vitest/commit/84f98e70)

#####    🐞 Bug Fixes

- Improve "isInternaRequest" check  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2541](https://togithub.com/vitest-dev/vitest/issues/2541)
[<samp>(2bb9a)</samp>](https://togithub.com/vitest-dev/vitest/commit/2bb9a391)
- Use correct word when printing "long-running" warning  -  by
[@&#8203;simon-abbott](https://togithub.com/simon-abbott) in
[https://github.com/vitest-dev/vitest/issues/2546](https://togithub.com/vitest-dev/vitest/issues/2546)
[<samp>(8dc1c)</samp>](https://togithub.com/vitest-dev/vitest/commit/8dc1c3cb)
- Pass down diff options  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2545](https://togithub.com/vitest-dev/vitest/issues/2545)
[<samp>(98c94)</samp>](https://togithub.com/vitest-dev/vitest/commit/98c94e65)
- **cli**: Respect inline config `dir`  -  by
[@&#8203;antfu](https://togithub.com/antfu) in
[https://github.com/vitest-dev/vitest/issues/2550](https://togithub.com/vitest-dev/vitest/issues/2550)
[<samp>(f6b59)</samp>](https://togithub.com/vitest-dev/vitest/commit/f6b592a9)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.26.1...v0.26.2)

###
[`v0.26.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.26.1)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.26.0...v0.26.1)

#####    🚀 Features

- Add more options to configure diff output  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) and
[@&#8203;dammy001](https://togithub.com/dammy001) in
[https://github.com/vitest-dev/vitest/issues/2522](https://togithub.com/vitest-dev/vitest/issues/2522)
[<samp>(7ae14)</samp>](https://togithub.com/vitest-dev/vitest/commit/7ae1417f)

#####    🐞 Bug Fixes

- Don't resolve builtin Node modules  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2538](https://togithub.com/vitest-dev/vitest/issues/2538)
[<samp>(1cbc2)</samp>](https://togithub.com/vitest-dev/vitest/commit/1cbc24dc)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.26.0...v0.26.1)

###
[`v0.26.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.26.0)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.8...v0.26.0)

#####    🚨 Breaking Changes

- **vite-node:** Rewrite how vite-node resolves id  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2463](https://togithub.com/vitest-dev/vitest/issues/2463)
[<samp>(58ee8)</samp>](https://togithub.com/vitest-dev/vitest/commit/58ee8e9b)
- Correctly interop nested default for external and inlined modules  - 
by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2512](https://togithub.com/vitest-dev/vitest/issues/2512)
[<samp>(084e9)</samp>](https://togithub.com/vitest-dev/vitest/commit/084e929c)
- If your environment is `node`, Vitest will not resolve invalid named
exports (exports that are on "default" property will not magically
appear as named exports), unless `deps.interopDefault` is enabled, or
dependency is in `deps.inline`. This change doesn't affect `jsdom`,
`happy-dom` or `edge` environments.
- **web-worker:** Make web-worker implementation more compatible with
spec  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2431](https://togithub.com/vitest-dev/vitest/issues/2431)
[<samp>(c3a63)</samp>](https://togithub.com/vitest-dev/vitest/commit/c3a63524)
- Messages are now cloned with `structuredClone`, if it's available, or
fallbacks to a polyfill.
    -   Added support for `SharedWorker`

#####    🚀 Features

- Introduce a native way to set env and globals  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2515](https://togithub.com/vitest-dev/vitest/issues/2515)
[<samp>(b114d)</samp>](https://togithub.com/vitest-dev/vitest/commit/b114d49f)
- Add html reporter based on Vitest UI  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) and
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2444](https://togithub.com/vitest-dev/vitest/issues/2444)
[<samp>(b8f34)</samp>](https://togithub.com/vitest-dev/vitest/commit/b8f34eb8)
- If you have `@vitest/ui` installed, you can now use `'html'` reporter
to get a [beautiful UI](https://vitest.dev/guide/ui.html) to view your
test results, inspect module graph and read log messages.

#####    🐞 Bug Fixes

- Allow assigning new hotContext  -  by
[@&#8203;cometkim](https://togithub.com/cometkim) in
[https://github.com/vitest-dev/vitest/issues/2524](https://togithub.com/vitest-dev/vitest/issues/2524)
[<samp>(b4c43)</samp>](https://togithub.com/vitest-dev/vitest/commit/b4c43cd5)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.8...v0.26.0)

###
[`v0.25.8`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.8)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.7...v0.25.8)

#####    🚀 Features

- Add mts, cts files to coverage  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) and
[@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in
[https://github.com/vitest-dev/vitest/issues/2492](https://togithub.com/vitest-dev/vitest/issues/2492)
[<samp>(799f9)</samp>](https://togithub.com/vitest-dev/vitest/commit/799f9a17)

#####    🐞 Bug Fixes

- Don't throw unhandled error, if import was caught  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2494](https://togithub.com/vitest-dev/vitest/issues/2494)
[<samp>(0a87e)</samp>](https://togithub.com/vitest-dev/vitest/commit/0a87ebb4)
- **coverage**: Esbuild to preserve legal comments for ignore hints  - 
by [@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in
[https://github.com/vitest-dev/vitest/issues/2496](https://togithub.com/vitest-dev/vitest/issues/2496)
[<samp>(c85ed)</samp>](https://togithub.com/vitest-dev/vitest/commit/c85edb1e)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.7...v0.25.8)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 10:32:34 +01:00
renovate[bot]
ef86f76295
chore(deps): update dependency eslint to v8.30.0 (#2755)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.29.0` ->
`8.30.0`](https://renovatebot.com/diffs/npm/eslint/8.29.0/8.30.0) |
[![age](https://badges.renovateapi.com/packages/npm/eslint/8.30.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.30.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint/8.30.0/compatibility-slim/8.29.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.30.0/confidence-slim/8.29.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>eslint/eslint</summary>

### [`v8.30.0`](https://togithub.com/eslint/eslint/releases/tag/v8.30.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.29.0...v8.30.0)

#### Features

-
[`075ef2c`](075ef2cf31)
feat: add suggestion for no-return-await
([#&#8203;16637](https://togithub.com/eslint/eslint/issues/16637))
(Daniel Bartholomae)
-
[`7190d98`](7190d98ff4)
feat: update globals
([#&#8203;16654](https://togithub.com/eslint/eslint/issues/16654))
(Sébastien Règne)

#### Bug Fixes

-
[`1a327aa`](1a327aae57)
fix: Ensure flat config unignores work consistently like eslintrc
([#&#8203;16579](https://togithub.com/eslint/eslint/issues/16579))
(Nicholas C. Zakas)
-
[`9b8bb72`](9b8bb72c49)
fix: autofix recursive functions in no-var
([#&#8203;16611](https://togithub.com/eslint/eslint/issues/16611))
(Milos Djermanovic)

#### Documentation

-
[`6a8cd94`](6a8cd94ed0)
docs: Clarify Discord info in issue template config
([#&#8203;16663](https://togithub.com/eslint/eslint/issues/16663))
(Nicholas C. Zakas)
-
[`ad44344`](ad44344ef6)
docs: CLI documentation standardization
([#&#8203;16563](https://togithub.com/eslint/eslint/issues/16563)) (Ben
Perlmutter)
-
[`293573e`](293573eb53)
docs: fix broken line numbers
([#&#8203;16606](https://togithub.com/eslint/eslint/issues/16606)) (Sam
Chen)
-
[`fa2c64b`](fa2c64be10)
docs: use relative links for internal links
([#&#8203;16631](https://togithub.com/eslint/eslint/issues/16631))
(Percy Ma)
-
[`75276c9`](75276c9bc7)
docs: reorder options in no-unused-vars
([#&#8203;16625](https://togithub.com/eslint/eslint/issues/16625))
(Milos Djermanovic)
-
[`7276fe5`](7276fe5776)
docs: Fix anchor in URL
([#&#8203;16628](https://togithub.com/eslint/eslint/issues/16628)) (Karl
Horky)
-
[`6bef135`](6bef1350e6)
docs: don't apply layouts to html formatter example
([#&#8203;16591](https://togithub.com/eslint/eslint/issues/16591))
(Tanuj Kanti)
-
[`dfc7ec1`](dfc7ec11b1)
docs: Formatters page updates
([#&#8203;16566](https://togithub.com/eslint/eslint/issues/16566)) (Ben
Perlmutter)
-
[`8ba124c`](8ba124cfd8)
docs: update the `prefer-const` example
([#&#8203;16607](https://togithub.com/eslint/eslint/issues/16607))
(Pavel)
-
[`e6cb05a`](e6cb05aa35)
docs: fix css leaking
([#&#8203;16603](https://togithub.com/eslint/eslint/issues/16603)) (Sam
Chen)

#### Chores

-
[`f2c4737`](f2c4737242)
chore: upgrade
[@&#8203;eslint/eslintrc](https://togithub.com/eslint/eslintrc)[@&#8203;1](https://togithub.com/1).4.0
([#&#8203;16675](https://togithub.com/eslint/eslint/issues/16675))
(Milos Djermanovic)
-
[`ba74253`](ba74253e8b)
chore: standardize npm script names per
[#&#8203;14827](https://togithub.com/eslint/eslint/issues/14827)
([#&#8203;16315](https://togithub.com/eslint/eslint/issues/16315))
(Patrick McElhaney)
-
[`0d9af4c`](0d9af4c567)
ci: fix npm v9 problem with `file:`
([#&#8203;16664](https://togithub.com/eslint/eslint/issues/16664))
(Milos Djermanovic)
-
[`90c9219`](90c9219181)
refactor: migrate off deprecated function-style rules in all tests
([#&#8203;16618](https://togithub.com/eslint/eslint/issues/16618))
(Bryan Mishkin)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 07:12:58 +00:00
renovate[bot]
2b46e4b700
chore(deps): update dependency @types/react-table to v7.7.13 (#2758)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/react-table](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-table)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`7.7.12` ->
`7.7.13`](https://renovatebot.com/diffs/npm/@types%2freact-table/7.7.12/7.7.13)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2freact-table/7.7.13/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact-table/7.7.13/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2freact-table/7.7.13/compatibility-slim/7.7.12)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact-table/7.7.13/confidence-slim/7.7.12)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 04:48:17 +00:00
renovate[bot]
ee59ae0387
chore(deps): update dependency @codemirror/state to v6.2.0 (#2753)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@codemirror/state](https://togithub.com/codemirror/state) | [`6.1.4`
->
`6.2.0`](https://renovatebot.com/diffs/npm/@codemirror%2fstate/6.1.4/6.2.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.0/compatibility-slim/6.1.4)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.0/confidence-slim/6.1.4)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>codemirror/state</summary>

###
[`v6.2.0`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#&#8203;620-2022-12-26)

[Compare
Source](https://togithub.com/codemirror/state/compare/6.1.4...6.2.0)

##### New features

`EditorSelection.range` now accepts an optional 4th argument to specify
the bidi level of the range's head position.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-27 22:41:27 +00:00
renovate[bot]
d5d8c752f4
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.19.4 (#2746)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.19.2` ->
`4.19.4`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.19.2/4.19.4)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.4/compatibility-slim/4.19.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.4/confidence-slim/4.19.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.19.4`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.4)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.3...v4.19.4)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.4/file/README.md)

Documentation v4.19.4:
https://raw.githack.com/uiwjs/react-codemirror/9fbca2c/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.3...v4.19.4

```shell
npm i @&#8203;uiw/react-codemirror@4.19.4
```

- 🌟 feat(zebra-stripes): add className option.
[#&#8203;433](https://togithub.com/uiwjs/react-codemirror/issues/433)
[`964bb2c`](https://togithub.com/uiwjs/react-codemirror/commit/964bb2c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(classname): add classname extension.
[#&#8203;433](https://togithub.com/uiwjs/react-codemirror/issues/433)
[`48dbe9c`](https://togithub.com/uiwjs/react-codemirror/commit/48dbe9c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌍 website: update website theme.
[`3de68f4`](https://togithub.com/uiwjs/react-codemirror/commit/3de68f4)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.19.3`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.3)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.2...v4.19.3)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.3/file/README.md)

Documentation v4.19.3:
https://raw.githack.com/uiwjs/react-codemirror/6cae541/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.2...v4.19.3

```shell
npm i @&#8203;uiw/react-codemirror@4.19.3
```

- 🐞 fix: provide none option for theme.
[#&#8203;431](https://togithub.com/uiwjs/react-codemirror/issues/431)
[`efca8ed`](https://togithub.com/uiwjs/react-codemirror/commit/efca8ed)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-27 12:30:15 +00:00
renovate[bot]
2fb5699e84
chore(deps): update dependency msw to v0.49.2 (#2748)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [msw](https://mswjs.io/) ([source](https://togithub.com/mswjs/msw)) |
[`0.49.1` ->
`0.49.2`](https://renovatebot.com/diffs/npm/msw/0.49.1/0.49.2) |
[![age](https://badges.renovateapi.com/packages/npm/msw/0.49.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/msw/0.49.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/msw/0.49.2/compatibility-slim/0.49.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/msw/0.49.2/confidence-slim/0.49.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mswjs/msw</summary>

### [`v0.49.2`](https://togithub.com/mswjs/msw/releases/tag/v0.49.2)

[Compare
Source](https://togithub.com/mswjs/msw/compare/v0.49.1...v0.49.2)

#### v0.49.2 (2022-12-13)

##### Bug Fixes

- use `globalThis.fetch` in `ctx.fetch` utility
([#&#8203;1490](https://togithub.com/mswjs/msw/issues/1490))
([`42cdbc7`](42cdbc7965))
[@&#8203;Toxiapo](https://togithub.com/Toxiapo)
[@&#8203;kettanaito](https://togithub.com/kettanaito)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-27 12:12:17 +00:00
renovate[bot]
af209079b0
chore(deps): update dependency @uiw/react-codemirror to v4.19.4 (#2747)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.19.2` ->
`4.19.4`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.19.2/4.19.4)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.4/compatibility-slim/4.19.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.4/confidence-slim/4.19.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.19.4`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.4)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.3...v4.19.4)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.4/file/README.md)

Documentation v4.19.4:
https://raw.githack.com/uiwjs/react-codemirror/9fbca2c/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.3...v4.19.4

```shell
npm i @&#8203;uiw/react-codemirror@4.19.4
```

- 🌟 feat(zebra-stripes): add className option.
[#&#8203;433](https://togithub.com/uiwjs/react-codemirror/issues/433)
[`964bb2c`](https://togithub.com/uiwjs/react-codemirror/commit/964bb2c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(classname): add classname extension.
[#&#8203;433](https://togithub.com/uiwjs/react-codemirror/issues/433)
[`48dbe9c`](https://togithub.com/uiwjs/react-codemirror/commit/48dbe9c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌍 website: update website theme.
[`3de68f4`](https://togithub.com/uiwjs/react-codemirror/commit/3de68f4)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.19.3`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.3)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.2...v4.19.3)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.3/file/README.md)

Documentation v4.19.3:
https://raw.githack.com/uiwjs/react-codemirror/6cae541/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.2...v4.19.3

```shell
npm i @&#8203;uiw/react-codemirror@4.19.3
```

- 🐞 fix: provide none option for theme.
[#&#8203;431](https://togithub.com/uiwjs/react-codemirror/issues/431)
[`efca8ed`](https://togithub.com/uiwjs/react-codemirror/commit/efca8ed)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-27 12:11:19 +00:00
renovate[bot]
d2c898e065
chore(deps): update dependency @testing-library/dom to v8.19.1 (#2742)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@testing-library/dom](https://togithub.com/testing-library/dom-testing-library)
| [`8.19.0` ->
`8.19.1`](https://renovatebot.com/diffs/npm/@testing-library%2fdom/8.19.0/8.19.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.19.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.19.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.19.1/compatibility-slim/8.19.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.19.1/confidence-slim/8.19.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>testing-library/dom-testing-library</summary>

###
[`v8.19.1`](https://togithub.com/testing-library/dom-testing-library/releases/tag/v8.19.1)

[Compare
Source](https://togithub.com/testing-library/dom-testing-library/compare/v8.19.0...v8.19.1)

##### Bug Fixes

- Bump used `aria-query` types
([#&#8203;1198](https://togithub.com/testing-library/dom-testing-library/issues/1198))
([9f363af](9f363afe6b)),
closes
[#&#8203;1197](https://togithub.com/testing-library/dom-testing-library/issues/1197)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43My4zIiwidXBkYXRlZEluVmVyIjoiMzQuNzMuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-27 12:39:09 +01:00
renovate[bot]
470c8d96c1
chore(deps): update dependency prettier to v2.8.1 (#2509)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [prettier](https://prettier.io)
([source](https://togithub.com/prettier/prettier)) | [`2.7.1` ->
`2.8.1`](https://renovatebot.com/diffs/npm/prettier/2.7.1/2.8.1) |
[![age](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/compatibility-slim/2.7.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/confidence-slim/2.7.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prettier/prettier</summary>

###
[`v2.8.1`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;281)

[Compare
Source](https://togithub.com/prettier/prettier/compare/2.8.0...2.8.1)

[diff](https://togithub.com/prettier/prettier/compare/2.8.0...2.8.1)

##### Fix SCSS map in arguments
([#&#8203;9184](https://togithub.com/prettier/prettier/pull/9184) by
[@&#8203;agamkrbit](https://togithub.com/agamkrbit))

<!-- prettier-ignore -->

```scss
// Input
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
  ),
  $display-breakpoints
);

// Prettier 2.8.0
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, " sm
      ")-1})",
  ),
  $display-breakpoints
);

// Prettier 2.8.1
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
  ),
  $display-breakpoints
);
```

##### Support auto accessors syntax
([#&#8203;13919](https://togithub.com/prettier/prettier/pull/13919) by
[@&#8203;sosukesuzuki](https://togithub.com/sosukesuzuki))

Support for [Auto Accessors
Syntax](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#auto-accessors-in-classes)
landed in TypeScript 4.9.

(Doesn't work well with `babel-ts` parser)

<!-- prettier-ignore -->

```tsx
class Foo {
  accessor foo: number = 3;
}
```

###
[`v2.8.0`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;280)

[Compare
Source](https://togithub.com/prettier/prettier/compare/2.7.1...2.8.0)

[diff](https://togithub.com/prettier/prettier/compare/2.7.1...2.8.0)

🔗 [Release Notes](https://prettier.io/blog/2022/11/23/2.8.0.html)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4zMC4yIiwidXBkYXRlZEluVmVyIjoiMzQuNjIuMSJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gastón Fournier <gaston@getunleash.ai>
2022-12-27 10:45:43 +01:00
renovate[bot]
408b81690d
chore(deps): update dependency @vitejs/plugin-react to v3 (#2665)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@vitejs/plugin-react](https://togithub.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme)
([source](https://togithub.com/vitejs/vite-plugin-react)) | [`2.2.0` ->
`3.0.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-react/2.2.0/3.0.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.0.0/compatibility-slim/2.2.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.0.0/confidence-slim/2.2.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitejs/vite-plugin-react</summary>

###
[`v3.0.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#&#8203;300-2022-12-09)

[Compare
Source](972b8ddca7...0aaf2e56de)

- chore: update vite to ^4.0.0
([#&#8203;57](https://togithub.com/vitejs/vite-plugin-react/issues/57))
([941b20d](https://togithub.com/vitejs/vite-plugin-react/commit/941b20d)),
closes
[#&#8203;57](https://togithub.com/vitejs/vite-plugin-react/issues/57)
- chore(deps): update rollup
([#&#8203;56](https://togithub.com/vitejs/vite-plugin-react/issues/56))
([af25ec7](https://togithub.com/vitejs/vite-plugin-react/commit/af25ec7)),
closes
[#&#8203;56](https://togithub.com/vitejs/vite-plugin-react/issues/56)
- chore!: drop ast check for refresh boundary
([#&#8203;43](https://togithub.com/vitejs/vite-plugin-react/issues/43))
([e43bd76](https://togithub.com/vitejs/vite-plugin-react/commit/e43bd76)),
closes
[#&#8203;43](https://togithub.com/vitejs/vite-plugin-react/issues/43)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNjIuMSJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-27 09:55:20 +01:00
Nuno Góis
2d16730cc2
feat: adds an optional dialog and markdown support (#2728)
Adds the option of showing a dialog and adds markdown support to it,
could be useful to show changelogs inside Unleash in the future.


![image](https://user-images.githubusercontent.com/14320932/209147164-ed19c9ab-fae5-452b-9aab-075d058ba10e.png)
2022-12-22 15:47:42 +00:00
sjaanus
a0619e963d
Maintenance mode for users (#2716) 2022-12-21 13:23:44 +02:00
Nuno Góis
d2d5629a36
Feat lazy loading network (#2709)
Adds lazy loading to the network routes, so we end up with smaller
chunks in the build.

Also adds a `start:prod` script that can prove useful to test the chunk
loading behaviour locally.
2022-12-16 18:09:24 +00:00
Nuno Góis
a3ac96f763
Feat network overview (#2708)
https://linear.app/unleash/issue/2-512/exploration-network-overview-represented-as-a-flow-chart

<img width="1307" alt="image"
src="https://user-images.githubusercontent.com/14320932/208110067-294a0b91-d52e-49d1-9024-fa5e8530e2d8.png">
2022-12-16 14:12:36 +00:00
renovate[bot]
99e5dda89c
chore(deps): update dependency vitest to v0.25.7 (#2663)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vitest](https://togithub.com/vitest-dev/vitest) | [`0.25.6` ->
`0.25.7`](https://renovatebot.com/diffs/npm/vitest/0.25.6/0.25.7) |
[![age](https://badges.renovateapi.com/packages/npm/vitest/0.25.7/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vitest/0.25.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vitest/0.25.7/compatibility-slim/0.25.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vitest/0.25.7/confidence-slim/0.25.6)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitest-dev/vitest</summary>

###
[`v0.25.7`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.7)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.6...v0.25.7)

#####    🚀 Features

- Support Vite 4  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2470](https://togithub.com/vitest-dev/vitest/issues/2470)
[<samp>(3bb6b)</samp>](https://togithub.com/vitest-dev/vitest/commit/3bb6b0c8)

#####    🐞 Bug Fixes

- Restart on config change crashes  -  by
[@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in
[https://github.com/vitest-dev/vitest/issues/2481](https://togithub.com/vitest-dev/vitest/issues/2481)
[<samp>(286e9)</samp>](https://togithub.com/vitest-dev/vitest/commit/286e9cf7)
- **coverage-istanbul**: Clear coverage map after use  -  by
[@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in
[https://github.com/vitest-dev/vitest/issues/2466](https://togithub.com/vitest-dev/vitest/issues/2466)
[<samp>(e6a18)</samp>](https://togithub.com/vitest-dev/vitest/commit/e6a18c74)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.6...v0.25.7)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 22:58:44 +00:00
renovate[bot]
14dd9c7c9d
chore(deps): update dependency vite-plugin-svgr to v2.3.0 (#2661)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite-plugin-svgr](https://togithub.com/pd4d10/vite-plugin-svgr) |
[`2.2.2` ->
`2.3.0`](https://renovatebot.com/diffs/npm/vite-plugin-svgr/2.2.2/2.3.0)
|
[![age](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.3.0/compatibility-slim/2.2.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vite-plugin-svgr/2.3.0/confidence-slim/2.2.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>pd4d10/vite-plugin-svgr</summary>

###
[`v2.3.0`](https://togithub.com/pd4d10/vite-plugin-svgr/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/pd4d10/vite-plugin-svgr/compare/v2.2.2...v2.3.0)

#####    🚀 Features

- Add compatibility with vite@4  -  by
[@&#8203;twhitbeck](https://togithub.com/twhitbeck) in
[https://github.com/pd4d10/vite-plugin-svgr/issues/64](https://togithub.com/pd4d10/vite-plugin-svgr/issues/64)
[<samp>(4689c)</samp>](https://togithub.com/pd4d10/vite-plugin-svgr/commit/4689cd9)

#####     [View changes on
GitHub](https://togithub.com/pd4d10/vite-plugin-svgr/compare/v2.2.2...v2.3.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 20:23:29 +00:00
renovate[bot]
8fc5d39141
chore(deps): update dependency react-hooks-global-state to v2.1.0 (#2660)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[react-hooks-global-state](https://togithub.com/dai-shi/react-hooks-global-state)
| [`2.0.0` ->
`2.1.0`](https://renovatebot.com/diffs/npm/react-hooks-global-state/2.0.0/2.1.0)
|
[![age](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/compatibility-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/confidence-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>dai-shi/react-hooks-global-state</summary>

###
[`v2.1.0`](https://togithub.com/dai-shi/react-hooks-global-state/blob/HEAD/CHANGELOG.md#&#8203;210---2022-12-04)

[Compare
Source](https://togithub.com/dai-shi/react-hooks-global-state/compare/v2.0.0...v2.1.0)

##### Added

- expose "subscribe" function for "createGlobalState"
[#&#8203;85](https://togithub.com/dai-shi/react-hooks-global-state/issues/85)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 17:26:53 +00:00
renovate[bot]
41d125956a
chore(deps): update dependency eslint to v8.29.0 (#2658)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.28.0` ->
`8.29.0`](https://renovatebot.com/diffs/npm/eslint/8.28.0/8.29.0) |
[![age](https://badges.renovateapi.com/packages/npm/eslint/8.29.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.29.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint/8.29.0/compatibility-slim/8.28.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.29.0/confidence-slim/8.28.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>eslint/eslint</summary>

### [`v8.29.0`](https://togithub.com/eslint/eslint/releases/tag/v8.29.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.28.0...v8.29.0)

#### Features

-
[`49a07c5`](49a07c52c5)
feat: add `allowParensAfterCommentPattern` option to no-extra-parens
([#&#8203;16561](https://togithub.com/eslint/eslint/issues/16561))
(Nitin Kumar)
-
[`e6a865d`](e6a865d70a)
feat: `prefer-named-capture-group` add suggestions
([#&#8203;16544](https://togithub.com/eslint/eslint/issues/16544)) (Josh
Goldberg)
-
[`a91332b`](a91332b8bd)
feat: In no-invalid-regexp validate flags also for non-literal patterns
([#&#8203;16583](https://togithub.com/eslint/eslint/issues/16583))
(trosos)

#### Documentation

-
[`0311d81`](0311d81834)
docs: Configuring Plugins page intro, page tweaks, and rename
([#&#8203;16534](https://togithub.com/eslint/eslint/issues/16534)) (Ben
Perlmutter)
-
[`57089b1`](57089b1ede)
docs: add a property assignment example for camelcase rule
([#&#8203;16605](https://togithub.com/eslint/eslint/issues/16605))
(Milos Djermanovic)
-
[`b6ab030`](b6ab030897)
docs: add docs codeowners
([#&#8203;16601](https://togithub.com/eslint/eslint/issues/16601))
(Strek)
-
[`6380c87`](6380c87c56)
docs: fix sitemap and feed
([#&#8203;16592](https://togithub.com/eslint/eslint/issues/16592))
(Milos Djermanovic)
-
[`ade621d`](ade621dd12)
docs: perf debounce the search query
([#&#8203;16586](https://togithub.com/eslint/eslint/issues/16586))
(Shanmughapriyan S)
-
[`fbcf3ab`](fbcf3abd54)
docs: fix searchbar clear button
([#&#8203;16585](https://togithub.com/eslint/eslint/issues/16585))
(Shanmughapriyan S)
-
[`f894035`](f89403553b)
docs: HTTPS link to yeoman.io
([#&#8203;16582](https://togithub.com/eslint/eslint/issues/16582))
(Christian Oliff)
-
[`de12b26`](de12b266f2)
docs: Update configuration file pages
([#&#8203;16509](https://togithub.com/eslint/eslint/issues/16509)) (Ben
Perlmutter)
-
[`1ae9f20`](1ae9f20674)
docs: update correct code examples for `no-extra-parens` rule
([#&#8203;16560](https://togithub.com/eslint/eslint/issues/16560))
(Nitin Kumar)

#### Chores

-
[`7628403`](7628403a57)
chore: add discord channel link
([#&#8203;16590](https://togithub.com/eslint/eslint/issues/16590))
(Amaresh S M)
-
[`f5808cb`](f5808cb515)
chore: fix rule doc headers check
([#&#8203;16564](https://togithub.com/eslint/eslint/issues/16564))
(Milos Djermanovic)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 12:50:10 +00:00
renovate[bot]
4d4590afe9
chore(deps): update dependency @uiw/react-codemirror to v4.19.2 (#2657)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.19.1` ->
`4.19.2`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.19.1/4.19.2)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.2/compatibility-slim/4.19.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.2/confidence-slim/4.19.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.19.2`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.2)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.1...v4.19.2)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.2/file/README.md)

Documentation v4.19.2:
https://raw.githack.com/uiwjs/react-codemirror/01a4b43/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.1...v4.19.2

```shell
npm i @&#8203;uiw/react-codemirror@4.19.2
```

- 🌍 website: update sider menus.
[`a78b606`](https://togithub.com/uiwjs/react-codemirror/commit/a78b606)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 📖 doc(tokyo-night): update document.
[`73b518e`](https://togithub.com/uiwjs/react-codemirror/commit/73b518e)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌍 website: fix menu active.
[`b19e563`](https://togithub.com/uiwjs/react-codemirror/commit/b19e563)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(theme): Highlight components with green
([#&#8203;429](https://togithub.com/uiwjs/react-codemirror/issues/429))
[`cbb7c7a`](https://togithub.com/uiwjs/react-codemirror/commit/cbb7c7a)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🌍 website(theme): Support tags.standard(tags.tagName) in Theme Editor.
[#&#8203;430](https://togithub.com/uiwjs/react-codemirror/issues/430)
[`af0e3c1`](https://togithub.com/uiwjs/react-codemirror/commit/af0e3c1)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(github): modify tagName color in github theme.
[#&#8203;430](https://togithub.com/uiwjs/react-codemirror/issues/430)
[`c50705e`](https://togithub.com/uiwjs/react-codemirror/commit/c50705e)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(sublime): modify tagName color in sublime theme.
([#&#8203;430](https://togithub.com/uiwjs/react-codemirror/issues/430))
[`cbb41d1`](https://togithub.com/uiwjs/react-codemirror/commit/cbb41d1)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 10:37:47 +00:00
renovate[bot]
ab033290b2
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.19.2 (#2656)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.19.1` ->
`4.19.2`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.19.1/4.19.2)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.2/compatibility-slim/4.19.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.2/confidence-slim/4.19.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.19.2`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.2)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.1...v4.19.2)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.2/file/README.md)

Documentation v4.19.2:
https://raw.githack.com/uiwjs/react-codemirror/01a4b43/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.1...v4.19.2

```shell
npm i @&#8203;uiw/react-codemirror@4.19.2
```

- 🌍 website: update sider menus.
[`a78b606`](https://togithub.com/uiwjs/react-codemirror/commit/a78b606)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 📖 doc(tokyo-night): update document.
[`73b518e`](https://togithub.com/uiwjs/react-codemirror/commit/73b518e)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌍 website: fix menu active.
[`b19e563`](https://togithub.com/uiwjs/react-codemirror/commit/b19e563)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(theme): Highlight components with green
([#&#8203;429](https://togithub.com/uiwjs/react-codemirror/issues/429))
[`cbb7c7a`](https://togithub.com/uiwjs/react-codemirror/commit/cbb7c7a)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🌍 website(theme): Support tags.standard(tags.tagName) in Theme Editor.
[#&#8203;430](https://togithub.com/uiwjs/react-codemirror/issues/430)
[`af0e3c1`](https://togithub.com/uiwjs/react-codemirror/commit/af0e3c1)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(github): modify tagName color in github theme.
[#&#8203;430](https://togithub.com/uiwjs/react-codemirror/issues/430)
[`c50705e`](https://togithub.com/uiwjs/react-codemirror/commit/c50705e)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(sublime): modify tagName color in sublime theme.
([#&#8203;430](https://togithub.com/uiwjs/react-codemirror/issues/430))
[`cbb41d1`](https://togithub.com/uiwjs/react-codemirror/commit/cbb41d1)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 07:34:38 +00:00
renovate[bot]
a67f85358c
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.19.1 (#2654)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.15.1` ->
`4.19.1`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.15.1/4.19.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.1/compatibility-slim/4.15.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.19.1/confidence-slim/4.15.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.19.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.0...v4.19.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.1/file/README.md)

Documentation v4.19.1:
https://raw.githack.com/uiwjs/react-codemirror/a71c6e1/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.0...v4.19.1

```shell
npm i @&#8203;uiw/react-codemirror@4.19.1
```

- 🌟 feat(material): add materialLightInit/materialDarkInit/materialLight
method to material theme.
[`c488397`](https://togithub.com/uiwjs/react-codemirror/commit/c488397)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.19.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.18.2...v4.19.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.0/file/README.md)

Documentation v4.19.0:
https://raw.githack.com/uiwjs/react-codemirror/aa2b4d8/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.18.2...v4.19.0

```shell
npm i @&#8203;uiw/react-codemirror@4.19.0
```

- 🌟 feat(theme): add aura theme.
[`e7c7f0f`](https://togithub.com/uiwjs/react-codemirror/commit/e7c7f0f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add TokyoNight theme.
[`4af4add`](https://togithub.com/uiwjs/react-codemirror/commit/4af4add)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add TokyoNightStorm theme.
[`e67f5ee`](https://togithub.com/uiwjs/react-codemirror/commit/e67f5ee)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add tokyoNightDay theme.
[`6f5a908`](https://togithub.com/uiwjs/react-codemirror/commit/6f5a908)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore: update workflows config.
[`709fabb`](https://togithub.com/uiwjs/react-codemirror/commit/709fabb)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.18.2`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.18.2)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.18.1...v4.18.2)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.18.2/file/README.md)

Documentation v4.18.2:
https://raw.githack.com/uiwjs/react-codemirror/1fd4697/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.18.1...v4.18.2

```shell
npm i @&#8203;uiw/react-codemirror@4.18.2
```

- 🎨 style(themes): Modify the gutter border-right style.
[`64b5993`](https://togithub.com/uiwjs/react-codemirror/commit/64b5993)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.18.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.18.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.18.0...v4.18.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.18.1/file/README.md)

Documentation v4.18.1:
https://raw.githack.com/uiwjs/react-codemirror/545f986/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.18.0...v4.18.1

```shell
npm i @&#8203;uiw/react-codemirror@4.18.1
```

- 🌍 website: add themes home page.
[`fea984f`](https://togithub.com/uiwjs/react-codemirror/commit/fea984f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add noctis-lilac theme.
[`f30c552`](https://togithub.com/uiwjs/react-codemirror/commit/f30c552)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.18.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.18.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.17.1...v4.18.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.18.0/file/README.md)

Documentation v4.18.0:
https://raw.githack.com/uiwjs/react-codemirror/1b62d39/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.17.1...v4.18.0

```shell
npm i @&#8203;uiw/react-codemirror@4.18.0
```

- 🌍 website: update website example.
[`a4411dc`](https://togithub.com/uiwjs/react-codemirror/commit/a4411dc)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(xcode): add xcodeLightInit/xcodeDarkInit method to xcode theme.
[`70d3db5`](https://togithub.com/uiwjs/react-codemirror/commit/70d3db5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(sublime): add sublimeInit method to xcode theme.
[`a664aae`](https://togithub.com/uiwjs/react-codemirror/commit/a664aae)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(solarized): add solarizedLightInit/solarizedDarkInit method to
solarized theme.
[`26aee9f`](https://togithub.com/uiwjs/react-codemirror/commit/26aee9f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌍 website: fix theme all type errors.
[`d45e5ee`](https://togithub.com/uiwjs/react-codemirror/commit/d45e5ee)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(okaidia): add okaidiaInit method to okaidia theme.
[`adf94e5`](https://togithub.com/uiwjs/react-codemirror/commit/adf94e5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(nord): add nordInit method to nord theme.
[`14811ae`](https://togithub.com/uiwjs/react-codemirror/commit/14811ae)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(material): add materialInit method to material theme.
[`129d8e3`](https://togithub.com/uiwjs/react-codemirror/commit/129d8e3)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(gruvbox): add gruvboxDarkInit/gruvboxLightInit method to
gruvbox theme.
[`c5c0afe`](https://togithub.com/uiwjs/react-codemirror/commit/c5c0afe)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(github): add githubDarkInit/githubLightInit method to github
theme.
[`2aacb6f`](https://togithub.com/uiwjs/react-codemirror/commit/2aacb6f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(eclipse): add eclipseInit method to eclipse theme.
[`3cd796d`](https://togithub.com/uiwjs/react-codemirror/commit/3cd796d)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(duotone): add duotoneLightInit/duotoneDarkInit method to
duotone theme.
[`4044b17`](https://togithub.com/uiwjs/react-codemirror/commit/4044b17)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(dracula): add draculaInit method to dracula theme.
[`8c4e397`](https://togithub.com/uiwjs/react-codemirror/commit/8c4e397)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(darcula): add darculaInit method to darcula theme.
[`23c896c`](https://togithub.com/uiwjs/react-codemirror/commit/23c896c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(bespin): add bespinInit method to bespin theme.
[`0515402`](https://togithub.com/uiwjs/react-codemirror/commit/0515402)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(bbedit): add bbeditInit method to bbedit theme.
[`e6b66d0`](https://togithub.com/uiwjs/react-codemirror/commit/e6b66d0)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(atomone): add atomoneInit method to atomone theme.
[`82d86e5`](https://togithub.com/uiwjs/react-codemirror/commit/82d86e5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(androidstudio): add androidstudioInit method to androidstudio
theme.
[`61f38d1`](https://togithub.com/uiwjs/react-codemirror/commit/61f38d1)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(abcdef): add abcdefInit method to abcdef theme.
[`b8cf12f`](https://togithub.com/uiwjs/react-codemirror/commit/b8cf12f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.17.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.17.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.17.0...v4.17.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.17.1/file/README.md)

Documentation v4.17.1:
https://raw.githack.com/uiwjs/react-codemirror/0fcc2c9/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.17.0...v4.17.1

```shell
npm i @&#8203;uiw/react-codemirror@4.17.1
```

- 🎨 style(github): update github style.
[`0d483e8`](https://togithub.com/uiwjs/react-codemirror/commit/0d483e8)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.17.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.17.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.16.0...v4.17.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.17.0/file/README.md)

Documentation v4.17.0:
https://raw.githack.com/uiwjs/react-codemirror/d8e3be4/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.16.0...v4.17.0

```shell
npm i @&#8203;uiw/react-codemirror@4.17.0
```

- 🌟 feat: add workflows config.
[`43e76ac`](https://togithub.com/uiwjs/react-codemirror/commit/43e76ac)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore: update workflows config.
[`0eb8053`](https://togithub.com/uiwjs/react-codemirror/commit/0eb8053)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add material theme.
[`a2fe1d8`](https://togithub.com/uiwjs/react-codemirror/commit/a2fe1d8)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore(theme): update gruvbox theme.
[`18c1977`](https://togithub.com/uiwjs/react-codemirror/commit/18c1977)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add solarized theme.
[`d6899db`](https://togithub.com/uiwjs/react-codemirror/commit/d6899db)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore: update workflows config.
[`a104c88`](https://togithub.com/uiwjs/react-codemirror/commit/a104c88)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.16.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.16.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.15.1...v4.16.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.16.0/file/README.md)

Documentation v4.16.0:
https://raw.githack.com/uiwjs/react-codemirror/cacf4ae/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.15.1...v4.16.0

```shell
npm i @&#8203;uiw/react-codemirror@4.16.0
```

- 📖 doc(vscode): update README.md
[`7bd0ed7`](https://togithub.com/uiwjs/react-codemirror/commit/7bd0ed7)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat: add zebra-stripes component.
[#&#8203;424](https://togithub.com/uiwjs/react-codemirror/issues/424)
[`bdb7e9a`](https://togithub.com/uiwjs/react-codemirror/commit/bdb7e9a)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(deps): update codemirror
([#&#8203;417](https://togithub.com/uiwjs/react-codemirror/issues/417))
[`09ab14f`](https://togithub.com/uiwjs/react-codemirror/commit/09ab14f)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 💄 chore(deps): update dependency prettier to ~2.8.0
([#&#8203;420](https://togithub.com/uiwjs/react-codemirror/issues/420))
[`52822d8`](https://togithub.com/uiwjs/react-codemirror/commit/52822d8)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 💄 chore(deps): update dependency lint-staged to ~13.1.0
([#&#8203;425](https://togithub.com/uiwjs/react-codemirror/issues/425))
[`b9d6ef6`](https://togithub.com/uiwjs/react-codemirror/commit/b9d6ef6)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 🌟 feat(theme): add nord theme.
[`2717cdd`](https://togithub.com/uiwjs/react-codemirror/commit/2717cdd)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add gruvbox light theme.
[`2df3352`](https://togithub.com/uiwjs/react-codemirror/commit/2df3352)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 01:56:58 +00:00
renovate[bot]
55ed4bf81a
chore(deps): update dependency @uiw/react-codemirror to v4.19.1 (#2653)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.15.1` ->
`4.19.1`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.15.1/4.19.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.1/compatibility-slim/4.15.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.19.1/confidence-slim/4.15.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.19.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.19.0...v4.19.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.1/file/README.md)

Documentation v4.19.1:
https://raw.githack.com/uiwjs/react-codemirror/a71c6e1/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.19.0...v4.19.1

```shell
npm i @&#8203;uiw/react-codemirror@4.19.1
```

- 🌟 feat(material): add materialLightInit/materialDarkInit/materialLight
method to material theme.
[`c488397`](https://togithub.com/uiwjs/react-codemirror/commit/c488397)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.19.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.19.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.18.2...v4.19.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.19.0/file/README.md)

Documentation v4.19.0:
https://raw.githack.com/uiwjs/react-codemirror/aa2b4d8/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.18.2...v4.19.0

```shell
npm i @&#8203;uiw/react-codemirror@4.19.0
```

- 🌟 feat(theme): add aura theme.
[`e7c7f0f`](https://togithub.com/uiwjs/react-codemirror/commit/e7c7f0f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add TokyoNight theme.
[`4af4add`](https://togithub.com/uiwjs/react-codemirror/commit/4af4add)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add TokyoNightStorm theme.
[`e67f5ee`](https://togithub.com/uiwjs/react-codemirror/commit/e67f5ee)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add tokyoNightDay theme.
[`6f5a908`](https://togithub.com/uiwjs/react-codemirror/commit/6f5a908)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore: update workflows config.
[`709fabb`](https://togithub.com/uiwjs/react-codemirror/commit/709fabb)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.18.2`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.18.2)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.18.1...v4.18.2)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.18.2/file/README.md)

Documentation v4.18.2:
https://raw.githack.com/uiwjs/react-codemirror/1fd4697/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.18.1...v4.18.2

```shell
npm i @&#8203;uiw/react-codemirror@4.18.2
```

- 🎨 style(themes): Modify the gutter border-right style.
[`64b5993`](https://togithub.com/uiwjs/react-codemirror/commit/64b5993)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.18.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.18.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.18.0...v4.18.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.18.1/file/README.md)

Documentation v4.18.1:
https://raw.githack.com/uiwjs/react-codemirror/545f986/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.18.0...v4.18.1

```shell
npm i @&#8203;uiw/react-codemirror@4.18.1
```

- 🌍 website: add themes home page.
[`fea984f`](https://togithub.com/uiwjs/react-codemirror/commit/fea984f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add noctis-lilac theme.
[`f30c552`](https://togithub.com/uiwjs/react-codemirror/commit/f30c552)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.18.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.18.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.17.1...v4.18.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.18.0/file/README.md)

Documentation v4.18.0:
https://raw.githack.com/uiwjs/react-codemirror/1b62d39/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.17.1...v4.18.0

```shell
npm i @&#8203;uiw/react-codemirror@4.18.0
```

- 🌍 website: update website example.
[`a4411dc`](https://togithub.com/uiwjs/react-codemirror/commit/a4411dc)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(xcode): add xcodeLightInit/xcodeDarkInit method to xcode theme.
[`70d3db5`](https://togithub.com/uiwjs/react-codemirror/commit/70d3db5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(sublime): add sublimeInit method to xcode theme.
[`a664aae`](https://togithub.com/uiwjs/react-codemirror/commit/a664aae)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(solarized): add solarizedLightInit/solarizedDarkInit method to
solarized theme.
[`26aee9f`](https://togithub.com/uiwjs/react-codemirror/commit/26aee9f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌍 website: fix theme all type errors.
[`d45e5ee`](https://togithub.com/uiwjs/react-codemirror/commit/d45e5ee)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(okaidia): add okaidiaInit method to okaidia theme.
[`adf94e5`](https://togithub.com/uiwjs/react-codemirror/commit/adf94e5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(nord): add nordInit method to nord theme.
[`14811ae`](https://togithub.com/uiwjs/react-codemirror/commit/14811ae)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(material): add materialInit method to material theme.
[`129d8e3`](https://togithub.com/uiwjs/react-codemirror/commit/129d8e3)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(gruvbox): add gruvboxDarkInit/gruvboxLightInit method to
gruvbox theme.
[`c5c0afe`](https://togithub.com/uiwjs/react-codemirror/commit/c5c0afe)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(github): add githubDarkInit/githubLightInit method to github
theme.
[`2aacb6f`](https://togithub.com/uiwjs/react-codemirror/commit/2aacb6f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(eclipse): add eclipseInit method to eclipse theme.
[`3cd796d`](https://togithub.com/uiwjs/react-codemirror/commit/3cd796d)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(duotone): add duotoneLightInit/duotoneDarkInit method to
duotone theme.
[`4044b17`](https://togithub.com/uiwjs/react-codemirror/commit/4044b17)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(dracula): add draculaInit method to dracula theme.
[`8c4e397`](https://togithub.com/uiwjs/react-codemirror/commit/8c4e397)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(darcula): add darculaInit method to darcula theme.
[`23c896c`](https://togithub.com/uiwjs/react-codemirror/commit/23c896c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(bespin): add bespinInit method to bespin theme.
[`0515402`](https://togithub.com/uiwjs/react-codemirror/commit/0515402)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(bbedit): add bbeditInit method to bbedit theme.
[`e6b66d0`](https://togithub.com/uiwjs/react-codemirror/commit/e6b66d0)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(atomone): add atomoneInit method to atomone theme.
[`82d86e5`](https://togithub.com/uiwjs/react-codemirror/commit/82d86e5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(androidstudio): add androidstudioInit method to androidstudio
theme.
[`61f38d1`](https://togithub.com/uiwjs/react-codemirror/commit/61f38d1)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(abcdef): add abcdefInit method to abcdef theme.
[`b8cf12f`](https://togithub.com/uiwjs/react-codemirror/commit/b8cf12f)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.17.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.17.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.17.0...v4.17.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.17.1/file/README.md)

Documentation v4.17.1:
https://raw.githack.com/uiwjs/react-codemirror/0fcc2c9/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.17.0...v4.17.1

```shell
npm i @&#8203;uiw/react-codemirror@4.17.1
```

- 🎨 style(github): update github style.
[`0d483e8`](https://togithub.com/uiwjs/react-codemirror/commit/0d483e8)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.17.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.17.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.16.0...v4.17.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.17.0/file/README.md)

Documentation v4.17.0:
https://raw.githack.com/uiwjs/react-codemirror/d8e3be4/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.16.0...v4.17.0

```shell
npm i @&#8203;uiw/react-codemirror@4.17.0
```

- 🌟 feat: add workflows config.
[`43e76ac`](https://togithub.com/uiwjs/react-codemirror/commit/43e76ac)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore: update workflows config.
[`0eb8053`](https://togithub.com/uiwjs/react-codemirror/commit/0eb8053)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add material theme.
[`a2fe1d8`](https://togithub.com/uiwjs/react-codemirror/commit/a2fe1d8)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore(theme): update gruvbox theme.
[`18c1977`](https://togithub.com/uiwjs/react-codemirror/commit/18c1977)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add solarized theme.
[`d6899db`](https://togithub.com/uiwjs/react-codemirror/commit/d6899db)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 💄 chore: update workflows config.
[`a104c88`](https://togithub.com/uiwjs/react-codemirror/commit/a104c88)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.16.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.16.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.15.1...v4.16.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.16.0/file/README.md)

Documentation v4.16.0:
https://raw.githack.com/uiwjs/react-codemirror/cacf4ae/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.15.1...v4.16.0

```shell
npm i @&#8203;uiw/react-codemirror@4.16.0
```

- 📖 doc(vscode): update README.md
[`7bd0ed7`](https://togithub.com/uiwjs/react-codemirror/commit/7bd0ed7)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat: add zebra-stripes component.
[#&#8203;424](https://togithub.com/uiwjs/react-codemirror/issues/424)
[`bdb7e9a`](https://togithub.com/uiwjs/react-codemirror/commit/bdb7e9a)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(deps): update codemirror
([#&#8203;417](https://togithub.com/uiwjs/react-codemirror/issues/417))
[`09ab14f`](https://togithub.com/uiwjs/react-codemirror/commit/09ab14f)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 💄 chore(deps): update dependency prettier to ~2.8.0
([#&#8203;420](https://togithub.com/uiwjs/react-codemirror/issues/420))
[`52822d8`](https://togithub.com/uiwjs/react-codemirror/commit/52822d8)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 💄 chore(deps): update dependency lint-staged to ~13.1.0
([#&#8203;425](https://togithub.com/uiwjs/react-codemirror/issues/425))
[`b9d6ef6`](https://togithub.com/uiwjs/react-codemirror/commit/b9d6ef6)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 🌟 feat(theme): add nord theme.
[`2717cdd`](https://togithub.com/uiwjs/react-codemirror/commit/2717cdd)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat(theme): add gruvbox light theme.
[`2df3352`](https://togithub.com/uiwjs/react-codemirror/commit/2df3352)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-09 23:27:57 +00:00
renovate[bot]
f91bc136bb
chore(deps): update dependency sass to v1.56.2 (#2644)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://togithub.com/sass/dart-sass) | [`1.56.1` ->
`1.56.2`](https://renovatebot.com/diffs/npm/sass/1.56.1/1.56.2) |
[![age](https://badges.renovateapi.com/packages/npm/sass/1.56.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/sass/1.56.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/sass/1.56.2/compatibility-slim/1.56.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/sass/1.56.2/confidence-slim/1.56.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v1.56.2`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#&#8203;1562)

[Compare
Source](https://togithub.com/sass/dart-sass/compare/1.56.1...1.56.2)

##### Embedded Sass

-   The embedded compiler now supports version 1.2.0 of [the embedded
    protocol](https://togithub.com/sass/embedded-protocol).

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-09 00:03:09 +00:00
renovate[bot]
ae107ee230
chore(deps): update react-router monorepo to v6.4.5 (#2643)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-router](https://togithub.com/remix-run/react-router) | [`6.4.3`
-> `6.4.5`](https://renovatebot.com/diffs/npm/react-router/6.4.3/6.4.5)
|
[![age](https://badges.renovateapi.com/packages/npm/react-router/6.4.5/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-router/6.4.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-router/6.4.5/compatibility-slim/6.4.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-router/6.4.5/confidence-slim/6.4.3)](https://docs.renovatebot.com/merge-confidence/)
|
| [react-router-dom](https://togithub.com/remix-run/react-router) |
[`6.4.3` ->
`6.4.5`](https://renovatebot.com/diffs/npm/react-router-dom/6.4.3/6.4.5)
|
[![age](https://badges.renovateapi.com/packages/npm/react-router-dom/6.4.5/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-router-dom/6.4.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-router-dom/6.4.5/compatibility-slim/6.4.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-router-dom/6.4.5/confidence-slim/6.4.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>remix-run/react-router (react-router)</summary>

###
[`v6.4.5`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#&#8203;645)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router@6.4.4...react-router@6.4.5)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.0.5`

###
[`v6.4.4`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#&#8203;644)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router@6.4.3...react-router@6.4.4)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.0.4`

</details>

<details>
<summary>remix-run/react-router (react-router-dom)</summary>

###
[`v6.4.5`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#&#8203;645)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.4.4...react-router-dom@6.4.5)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.0.5`
    -   `react-router@6.4.5`

###
[`v6.4.4`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#&#8203;644)

[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.4.3...react-router-dom@6.4.4)

##### Patch Changes

- Fix issues with encoded characters in `NavLink` and descendant
`<Routes>`
([#&#8203;9589](https://togithub.com/remix-run/react-router/pull/9589),
[#&#8203;9647](https://togithub.com/remix-run/react-router/pull/9647))
- Properly serialize/deserialize `ErrorResponse` instances when using
built-in hydration
([#&#8203;9593](https://togithub.com/remix-run/react-router/pull/9593))
- Support `basename` in static data routers
([#&#8203;9591](https://togithub.com/remix-run/react-router/pull/9591))
-   Updated dependencies:
    -   `@remix-run/router@1.0.4`
    -   `react-router@6.4.4`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-08 23:52:35 +00:00
renovate[bot]
cdf386deb4
chore(deps): update dependency vitest to v0.25.6 (#2633)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vitest](https://togithub.com/vitest-dev/vitest) | [`0.25.3` ->
`0.25.6`](https://renovatebot.com/diffs/npm/vitest/0.25.3/0.25.6) |
[![age](https://badges.renovateapi.com/packages/npm/vitest/0.25.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vitest/0.25.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vitest/0.25.6/compatibility-slim/0.25.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vitest/0.25.6/confidence-slim/0.25.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitest-dev/vitest</summary>

###
[`v0.25.6`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.6)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.5...v0.25.6)

#####    🐞 Bug Fixes

- Expected reversed with actual  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) in
[https://github.com/vitest-dev/vitest/issues/2460](https://togithub.com/vitest-dev/vitest/issues/2460)
[<samp>(f02c9)</samp>](https://togithub.com/vitest-dev/vitest/commit/f02c9828)
- Try to resolve id, if relative path is provided  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2461](https://togithub.com/vitest-dev/vitest/issues/2461)
[<samp>(e9cb4)</samp>](https://togithub.com/vitest-dev/vitest/commit/e9cb4136)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.5...v0.25.6)

###
[`v0.25.5`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.5)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.4...v0.25.5)

#####    🚀 Features

- **ui**: Show diff in report panel  -  by
[@&#8203;scarf005](https://togithub.com/scarf005) and
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2406](https://togithub.com/vitest-dev/vitest/issues/2406)
and
[https://github.com/vitest-dev/vitest/issues/2423](https://togithub.com/vitest-dev/vitest/issues/2423)
[<samp>(8595c)</samp>](https://togithub.com/vitest-dev/vitest/commit/8595c0e5)

#####    🐞 Bug Fixes

- Correctly resolve filename, when running code  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2439](https://togithub.com/vitest-dev/vitest/issues/2439)
[<samp>(2e789)</samp>](https://togithub.com/vitest-dev/vitest/commit/2e7892cb)
- Move sourcemapping source out of the sourcemap  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2443](https://togithub.com/vitest-dev/vitest/issues/2443)
[<samp>(cc13c)</samp>](https://togithub.com/vitest-dev/vitest/commit/cc13c28c)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.4...v0.25.5)

###
[`v0.25.4`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.4)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.3...v0.25.4)

#####    🚀 Features

- Slow test threshold  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) and
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2396](https://togithub.com/vitest-dev/vitest/issues/2396)
[<samp>(98974)</samp>](https://togithub.com/vitest-dev/vitest/commit/98974ba4)
- Format test tablename  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) in
[https://github.com/vitest-dev/vitest/issues/2405](https://togithub.com/vitest-dev/vitest/issues/2405)
[<samp>(45c5c)</samp>](https://togithub.com/vitest-dev/vitest/commit/45c5c45a)
- Suspend process  -  by [@&#8203;poyoho](https://togithub.com/poyoho)
in
[https://github.com/vitest-dev/vitest/issues/2422](https://togithub.com/vitest-dev/vitest/issues/2422)
[<samp>(b8ee8)</samp>](https://togithub.com/vitest-dev/vitest/commit/b8ee821c)
- Format test objects in `each` title  -  by
[@&#8203;scarf005](https://togithub.com/scarf005) in
[https://github.com/vitest-dev/vitest/issues/2420](https://togithub.com/vitest-dev/vitest/issues/2420)
and
[https://github.com/vitest-dev/vitest/issues/2421](https://togithub.com/vitest-dev/vitest/issues/2421)
[<samp>(1868f)</samp>](https://togithub.com/vitest-dev/vitest/commit/1868f1c4)

#####    🐞 Bug Fixes

- Exit with code 1, when type tests fail  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2378](https://togithub.com/vitest-dev/vitest/issues/2378)
[<samp>(98141)</samp>](https://togithub.com/vitest-dev/vitest/commit/9814124e)
- Tab affect vi.mock  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) in
[https://github.com/vitest-dev/vitest/issues/2402](https://togithub.com/vitest-dev/vitest/issues/2402)
[<samp>(5a3de)</samp>](https://togithub.com/vitest-dev/vitest/commit/5a3deba5)
- Don't escape "\\" in diff view  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) in
[https://github.com/vitest-dev/vitest/issues/2430](https://togithub.com/vitest-dev/vitest/issues/2430)
[<samp>(7d4e3)</samp>](https://togithub.com/vitest-dev/vitest/commit/7d4e3ed0)
- Correct test files status in json reporter  -  by
[@&#8203;brzezinskimarcin](https://togithub.com/brzezinskimarcin) in
[https://github.com/vitest-dev/vitest/issues/2417](https://togithub.com/vitest-dev/vitest/issues/2417)
and
[https://github.com/vitest-dev/vitest/issues/2419](https://togithub.com/vitest-dev/vitest/issues/2419)
[<samp>(ce931)</samp>](https://togithub.com/vitest-dev/vitest/commit/ce931956)
- Export all named CJS exports, if default export is a function  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2435](https://togithub.com/vitest-dev/vitest/issues/2435)
[<samp>(d43f3)</samp>](https://togithub.com/vitest-dev/vitest/commit/d43f3f5c)
- Add test attributes to "testsuites" in junit reporter  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2362](https://togithub.com/vitest-dev/vitest/issues/2362)
[<samp>(d0506)</samp>](https://togithub.com/vitest-dev/vitest/commit/d050604f)
- DynamicImportSettled also waits for nested imports  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2389](https://togithub.com/vitest-dev/vitest/issues/2389)
[<samp>(5098b)</samp>](https://togithub.com/vitest-dev/vitest/commit/5098b217)
- Always apply vite ssr source maps  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va) in
[https://github.com/vitest-dev/vitest/issues/2433](https://togithub.com/vitest-dev/vitest/issues/2433)
[<samp>(cbf91)</samp>](https://togithub.com/vitest-dev/vitest/commit/cbf91ba7)
- Copy-pasting from module graph browser  -  by
[@&#8203;g4rry420](https://togithub.com/g4rry420) in
[https://github.com/vitest-dev/vitest/issues/2321](https://togithub.com/vitest-dev/vitest/issues/2321)
[<samp>(8920a)</samp>](https://togithub.com/vitest-dev/vitest/commit/8920aa45)
- **deps**: Update dependency strip-literal to v1  -  by
[@&#8203;renovate](https://togithub.com/renovate)\[bot]
in[https://github.com/vitest-dev/vitest/issues/2387](https://togithub.com/vitest-dev/vitest/issues/2387)7
[<samp>(824e1)</samp>](https://togithub.com/vitest-dev/vitest/commit/824e18c3)
- **mocker**: Set cache before mocking to allow circular dependencies
 -  by [@&#8203;danez](https://togithub.com/danez) in
[https://github.com/vitest-dev/vitest/issues/2391](https://togithub.com/vitest-dev/vitest/issues/2391)
[<samp>(fd829)</samp>](https://togithub.com/vitest-dev/vitest/commit/fd8292ac)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.3...v0.25.4)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-08 20:13:00 +00:00
renovate[bot]
1e0602c134
chore(deps): update dependency vite to v3.2.5 (#2632)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme)
([source](https://togithub.com/vitejs/vite)) | [`3.2.4` ->
`3.2.5`](https://renovatebot.com/diffs/npm/vite/3.2.4/3.2.5) |
[![age](https://badges.renovateapi.com/packages/npm/vite/3.2.5/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vite/3.2.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vite/3.2.5/compatibility-slim/3.2.4)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vite/3.2.5/confidence-slim/3.2.4)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitejs/vite</summary>

###
[`v3.2.5`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small325-2022-12-05-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v3.2.4...v3.2.5)

- chore: cherry pick more v4 bug fixes to v3
([#&#8203;11189](https://togithub.com/vitejs/vite/issues/11189))
([eba9b42](https://togithub.com/vitejs/vite/commit/eba9b42)), closes
[#&#8203;11189](https://togithub.com/vitejs/vite/issues/11189)
[#&#8203;10949](https://togithub.com/vitejs/vite/issues/10949)
[#&#8203;11056](https://togithub.com/vitejs/vite/issues/11056)
[#&#8203;8663](https://togithub.com/vitejs/vite/issues/8663)
[#&#8203;10958](https://togithub.com/vitejs/vite/issues/10958)
[#&#8203;11120](https://togithub.com/vitejs/vite/issues/11120)
[#&#8203;11122](https://togithub.com/vitejs/vite/issues/11122)
[#&#8203;11123](https://togithub.com/vitejs/vite/issues/11123)
[#&#8203;11132](https://togithub.com/vitejs/vite/issues/11132)
- chore: cherry pick v4 bug fix to v3
([#&#8203;11110](https://togithub.com/vitejs/vite/issues/11110))
([c93a526](https://togithub.com/vitejs/vite/commit/c93a526)), closes
[#&#8203;11110](https://togithub.com/vitejs/vite/issues/11110)
[#&#8203;10941](https://togithub.com/vitejs/vite/issues/10941)
[#&#8203;10987](https://togithub.com/vitejs/vite/issues/10987)
[#&#8203;10985](https://togithub.com/vitejs/vite/issues/10985)
[#&#8203;11067](https://togithub.com/vitejs/vite/issues/11067)
- fix: relocated logger to respect config.
([#&#8203;10787](https://togithub.com/vitejs/vite/issues/10787))
([#&#8203;10967](https://togithub.com/vitejs/vite/issues/10967))
([bc3b5a9](https://togithub.com/vitejs/vite/commit/bc3b5a9)), closes
[#&#8203;10787](https://togithub.com/vitejs/vite/issues/10787)
[#&#8203;10967](https://togithub.com/vitejs/vite/issues/10967)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41MS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-08 07:22:55 +00:00
renovate[bot]
7aa2ac4803
chore(deps): update dependency @types/jest to v29.2.4 (#2626)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/jest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`29.2.3` ->
`29.2.4`](https://renovatebot.com/diffs/npm/@types%2fjest/29.2.3/29.2.4)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.4/compatibility-slim/29.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.4/confidence-slim/29.2.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC40OS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNDkuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-07 20:34:54 +00:00
renovate[bot]
cec7edd370
chore(deps): update dependency @types/deep-diff to v1.0.2 (#2615)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/deep-diff](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/deep-diff)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`1.0.1` ->
`1.0.2`](https://renovatebot.com/diffs/npm/@types%2fdeep-diff/1.0.1/1.0.2)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/compatibility-slim/1.0.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/confidence-slim/1.0.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC40OS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNDkuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-07 16:22:03 +00:00
Fredrik Strand Oseberg
928b3515dc
fix: update package json and remove empty exports (#2625)
* Removes exports statements in e2e tests
* Updates package.json to optionally use heroku url for e2e tests when
running locally
2022-12-07 14:08:59 +01:00
Mateusz Kwasniewski
055c2acddd
removing sort order from diff in change requests (#2587) 2022-12-02 10:39:20 +01:00
renovate[bot]
af15742e3f
chore(deps): update dependency msw to v0.49.1 (#2553)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [msw](https://mswjs.io/) ([source](https://togithub.com/mswjs/msw)) |
[`0.49.0` ->
`0.49.1`](https://renovatebot.com/diffs/npm/msw/0.49.0/0.49.1) |
[![age](https://badges.renovateapi.com/packages/npm/msw/0.49.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/msw/0.49.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/msw/0.49.1/compatibility-slim/0.49.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/msw/0.49.1/confidence-slim/0.49.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mswjs/msw</summary>

### [`v0.49.1`](https://togithub.com/mswjs/msw/releases/tag/v0.49.1)

[Compare
Source](https://togithub.com/mswjs/msw/compare/v0.49.0...v0.49.1)

#### v0.49.1 (2022-11-28)

##### Bug Fixes

- **setupWorker:** resolve the TS4094 error
([#&#8203;1477](https://togithub.com/mswjs/msw/issues/1477))
([`c268796`](c268796eb7))
[@&#8203;gduliscouet-ubitransport](https://togithub.com/gduliscouet-ubitransport)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC40MC4yIiwidXBkYXRlZEluVmVyIjoiMzQuNDAuMiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-30 20:01:29 +00:00
renovate[bot]
f87feb9b84
chore(deps): update material-ui monorepo (#2494)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@mui/icons-material](https://mui.com/material-ui/material-icons/)
([source](https://togithub.com/mui/material-ui)) | [`5.10.14` ->
`5.10.15`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.10.14/5.10.15)
|
[![age](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.15/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.15/compatibility-slim/5.10.14)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.15/confidence-slim/5.10.14)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/lab](https://mui.com/material-ui/about-the-lab/)
([source](https://togithub.com/mui/material-ui)) | [`5.0.0-alpha.108` ->
`5.0.0-alpha.109`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.108/5.0.0-alpha.109)
|
[![age](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.109/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.109/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.109/compatibility-slim/5.0.0-alpha.108)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.109/confidence-slim/5.0.0-alpha.108)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/material](https://mui.com/material-ui/getting-started/overview/)
([source](https://togithub.com/mui/material-ui)) | [`5.10.14` ->
`5.10.15`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.10.14/5.10.15)
|
[![age](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.15/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.15/compatibility-slim/5.10.14)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.15/confidence-slim/5.10.14)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v5.10.15`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;51015)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.10.14...v5.10.15)

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

*Nov 21, 2022*

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

- 🚀 [@&#8203;mnajdova](https://togithub.com/mnajdova) added the button
as the first component that implements [Material
You](https://m3.material.io/) design (MD3)
- 🌐 [@&#8203;MBilalShafi](https://togithub.com/MBilalShafi) added Urdu
(Pakistan) localization
- Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure
improvements

##### `@mui/material@5.10.15`

- \[Autocomplete] Fix keyboard navigation when using custom popover
([#&#8203;35160](https://togithub.com/mui/material-ui/issues/35160))
[@&#8203;sai6855](https://togithub.com/sai6855)
- \[typescript] Add `background.defaultChannel` to `CssVarsPalette`
([#&#8203;35174](https://togithub.com/mui/material-ui/issues/35174))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[l10n] Add Urdu (ur-PK) locale
([#&#8203;35154](https://togithub.com/mui/material-ui/issues/35154))
[@&#8203;MBilalShafi](https://togithub.com/MBilalShafi)

##### `@mui/icons-material@5.10.15`

- \[icons] Update the Material Design icons
([#&#8203;35194](https://togithub.com/mui/material-ui/issues/35194))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/material-next@6.0.0-alpha.63`

- \[Material You] Add theme structure & Button component
([#&#8203;34650](https://togithub.com/mui/material-ui/issues/34650))
[@&#8203;mnajdova](https://togithub.com/mnajdova)

##### `@mui/base@5.0.0-alpha.107`

- \[Select] Add attributes to conform with ARIA 1.2
([#&#8203;35182](https://togithub.com/mui/material-ui/issues/35182))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### Docs

- \[docs] Fix a couple documentation errors
([#&#8203;35217](https://togithub.com/mui/material-ui/issues/35217))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs] Change MUI -> Material UI in icons-material's readme
([#&#8203;35220](https://togithub.com/mui/material-ui/issues/35220))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- \[docs] the pages have no \<link rel=canonical so we need to tell
Google to not index the staging envs
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix confusion in TOCs when reaching scroll bottom
([#&#8203;35214](https://togithub.com/mui/material-ui/issues/35214))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix typos in section titles
([#&#8203;35025](https://togithub.com/mui/material-ui/issues/35025))
[@&#8203;iamxukai](https://togithub.com/iamxukai)
- \[docs] Fix typo in legacy date picker migration guide
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Iterating on recent Joy UI Component page updates
([#&#8203;35162](https://togithub.com/mui/material-ui/issues/35162))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)
- \[docs] Inform that pickers are in X repository
([#&#8203;35189](https://togithub.com/mui/material-ui/issues/35189))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[docs] Explain how the `error` prop works in the Unstyled Input
([#&#8203;35171](https://togithub.com/mui/material-ui/issues/35171))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- \[docs] Hotfix missing styles in dark mode
([#&#8203;35179](https://togithub.com/mui/material-ui/issues/35179))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[docs] Add Joy UI theme typography page
([#&#8203;34811](https://togithub.com/mui/material-ui/issues/34811))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[docs] Fix undo/redo in live editor
([#&#8203;35163](https://togithub.com/mui/material-ui/issues/35163))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Revise the Joy UI "Avatar" component page
([#&#8203;35152](https://togithub.com/mui/material-ui/issues/35152))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)
- \[docs] Make navbar backdrop filter consistent with website
([#&#8203;35157](https://togithub.com/mui/material-ui/issues/35157))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs] Host CodeSandbox on MUI org
([#&#8203;35110](https://togithub.com/mui/material-ui/issues/35110))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Uplift introduction demos & make consistent with Base
([#&#8203;34316](https://togithub.com/mui/material-ui/issues/34316))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[website] Add Security questionnaire in pricing
([#&#8203;35172](https://togithub.com/mui/material-ui/issues/35172))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[website] Fix theme mode toggle state
([#&#8203;35216](https://togithub.com/mui/material-ui/issues/35216))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[website] Exclude experiment pages in production
([#&#8203;35180](https://togithub.com/mui/material-ui/issues/35180))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[website] Disable SEO for performance pages
([#&#8203;35173](https://togithub.com/mui/material-ui/issues/35173))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

##### Core

- \[core] Convert icons scripts to ESM
([#&#8203;35101](https://togithub.com/mui/material-ui/issues/35101))
[@&#8203;Janpot](https://togithub.com/Janpot)
- \[core] Group renovate GitHub Action dependency updates
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Upgrade eslint-config-airbnb-typescript
([#&#8203;34642](https://togithub.com/mui/material-ui/issues/34642))
[@&#8203;Janpot](https://togithub.com/Janpot)
- \[core] Ensure that prettier CI step fails when code is badly
formatted
([#&#8203;35170](https://togithub.com/mui/material-ui/issues/35170))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

All contributors of this release in alphabetical order:
[@&#8203;alexfauquette](https://togithub.com/alexfauquette),
[@&#8203;danilo-leal](https://togithub.com/danilo-leal),
[@&#8203;iamxukai](https://togithub.com/iamxukai),
[@&#8203;Janpot](https://togithub.com/Janpot),
[@&#8203;MBilalShafi](https://togithub.com/MBilalShafi),
[@&#8203;michaldudak](https://togithub.com/michaldudak),
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari),
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore),
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)

</details>

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

###
[`v5.0.0-alpha.109`](c2da6de1c5...14a6e1c61e)

[Compare
Source](c2da6de1c5...14a6e1c61e)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yOS4yIiwidXBkYXRlZEluVmVyIjoiMzQuMzAuMiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-23 10:48:56 +00:00
renovate[bot]
51deb9b947
chore(deps): update dependency vitest to v0.25.3 (#2500)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vitest](https://togithub.com/vitest-dev/vitest) | [`0.25.2` ->
`0.25.3`](https://renovatebot.com/diffs/npm/vitest/0.25.2/0.25.3) |
[![age](https://badges.renovateapi.com/packages/npm/vitest/0.25.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vitest/0.25.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vitest/0.25.3/compatibility-slim/0.25.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vitest/0.25.3/confidence-slim/0.25.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vitest-dev/vitest</summary>

###
[`v0.25.3`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.3)

[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.2...v0.25.3)

#####    🚀 Features

- Test.each support string template  -  by
[@&#8203;poyoho](https://togithub.com/poyoho) in
[https://github.com/vitest-dev/vitest/issues/2337](https://togithub.com/vitest-dev/vitest/issues/2337)
[<samp>(f7897)</samp>](https://togithub.com/vitest-dev/vitest/commit/f7897765)

#####    🐞 Bug Fixes

- Junit consistently puts "skipped" inside "testcase"  -  by
[@&#8203;sheremet-va](https://togithub.com/sheremet-va)
[<samp>(f7b27)</samp>](https://togithub.com/vitest-dev/vitest/commit/f7b27af0)
- Detect tests in folders starting with `.`  -  by
[@&#8203;sidharthv96](https://togithub.com/sidharthv96) in
[https://github.com/vitest-dev/vitest/issues/2344](https://togithub.com/vitest-dev/vitest/issues/2344)
and
[https://github.com/vitest-dev/vitest/issues/2359](https://togithub.com/vitest-dev/vitest/issues/2359)
[<samp>(c3951)</samp>](https://togithub.com/vitest-dev/vitest/commit/c395177f)
- **cli**: Don't override config by setting cli options to undefined  - 
by [@&#8203;rmehner](https://togithub.com/rmehner) in
[https://github.com/vitest-dev/vitest/issues/2330](https://togithub.com/vitest-dev/vitest/issues/2330)
[<samp>(6ce3e)</samp>](https://togithub.com/vitest-dev/vitest/commit/6ce3ed7f)
- **coverage**: Env-replacer to add filenames into sourcemaps  -  by
[@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in
[https://github.com/vitest-dev/vitest/issues/2338](https://togithub.com/vitest-dev/vitest/issues/2338)
[<samp>(a2e9d)</samp>](https://togithub.com/vitest-dev/vitest/commit/a2e9daf6)
- **mocker**: Clear automocked modules on unmock  -  by
[@&#8203;mcous](https://togithub.com/mcous) in
[https://github.com/vitest-dev/vitest/issues/2353](https://togithub.com/vitest-dev/vitest/issues/2353)
[<samp>(60918)</samp>](https://togithub.com/vitest-dev/vitest/commit/609185bd)

#####     [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.2...v0.25.3)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4zMC4yIiwidXBkYXRlZEluVmVyIjoiMzQuMzAuMiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-22 19:10:29 +00:00
renovate[bot]
39e9643226
chore(deps): update dependency msw to v0.49.0 (#2480)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [msw](https://mswjs.io/) ([source](https://togithub.com/mswjs/msw)) |
[`0.48.3` ->
`0.49.0`](https://renovatebot.com/diffs/npm/msw/0.48.3/0.49.0) |
[![age](https://badges.renovateapi.com/packages/npm/msw/0.49.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/msw/0.49.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/msw/0.49.0/compatibility-slim/0.48.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/msw/0.49.0/confidence-slim/0.48.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mswjs/msw</summary>

### [`v0.49.0`](https://togithub.com/mswjs/msw/releases/tag/v0.49.0)

[Compare
Source](https://togithub.com/mswjs/msw/compare/v0.48.3...v0.49.0)

#### v0.49.0 (2022-11-19)

##### Features

- support TypeScript 4.9, drop support for TypeScript 4.2, 4.3
([#&#8203;1467](https://togithub.com/mswjs/msw/issues/1467))
([`af0277d`](af0277da90))
[@&#8203;wtchnm](https://togithub.com/wtchnm)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNy4zIiwidXBkYXRlZEluVmVyIjoiMzQuMjcuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-21 06:30:22 +00:00
renovate[bot]
1c5dfe9a9e
chore(deps): update dependency jsdom to v20.0.3 (#2483)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [jsdom](https://togithub.com/jsdom/jsdom) | [`20.0.2` ->
`20.0.3`](https://renovatebot.com/diffs/npm/jsdom/20.0.2/20.0.3) |
[![age](https://badges.renovateapi.com/packages/npm/jsdom/20.0.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/jsdom/20.0.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/jsdom/20.0.3/compatibility-slim/20.0.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/jsdom/20.0.3/confidence-slim/20.0.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>jsdom/jsdom</summary>

###
[`v20.0.3`](https://togithub.com/jsdom/jsdom/blob/HEAD/Changelog.md#&#8203;2003)

[Compare
Source](https://togithub.com/jsdom/jsdom/compare/20.0.2...20.0.3)

- Updated dependencies, notably `w3c-xmlserializer`, which fixes using
`DOMParser` on XML documents containing emoji.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yOC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjguMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-21 03:20:40 +00:00
renovate[bot]
f5c1d472b0
chore(deps): update dependency eslint to v8.28.0 (#2479)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.27.0` ->
`8.28.0`](https://renovatebot.com/diffs/npm/eslint/8.27.0/8.28.0) |
[![age](https://badges.renovateapi.com/packages/npm/eslint/8.28.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.28.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint/8.28.0/compatibility-slim/8.27.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.28.0/confidence-slim/8.27.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>eslint/eslint</summary>

### [`v8.28.0`](https://togithub.com/eslint/eslint/releases/tag/v8.28.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.27.0...v8.28.0)

#### Features

-
[`63bce44`](63bce44e7b)
feat: add `ignoreClassFieldInitialValues` option to no-magic-numbers
([#&#8203;16539](https://togithub.com/eslint/eslint/issues/16539))
(Milos Djermanovic)
-
[`8385ecd`](8385ecdbbe)
feat: multiline properties in rule `key-spacing` with option `align`
([#&#8203;16532](https://togithub.com/eslint/eslint/issues/16532))
(Francesco Trotta)
-
[`a4e89db`](a4e89dbe85)
feat: `no-obj-calls` support `Intl`
([#&#8203;16543](https://togithub.com/eslint/eslint/issues/16543))
(Sosuke Suzuki)

#### Bug Fixes

-
[`c50ae4f`](c50ae4f840)
fix: Ensure that dot files are found with globs.
([#&#8203;16550](https://togithub.com/eslint/eslint/issues/16550))
(Nicholas C. Zakas)
-
[`9432b67`](9432b67f76)
fix: throw error for first unmatched pattern
([#&#8203;16533](https://togithub.com/eslint/eslint/issues/16533))
(Milos Djermanovic)
-
[`e76c382`](e76c382772)
fix: allow `* 1` when followed by `/` in no-implicit-coercion
([#&#8203;16522](https://togithub.com/eslint/eslint/issues/16522))
(Milos Djermanovic)

#### Documentation

-
[`34c05a7`](34c05a779a)
docs: Language Options page intro and tweaks
([#&#8203;16511](https://togithub.com/eslint/eslint/issues/16511)) (Ben
Perlmutter)
-
[`3e66387`](3e663873c9)
docs: add intro and edit ignoring files page
([#&#8203;16510](https://togithub.com/eslint/eslint/issues/16510)) (Ben
Perlmutter)
-
[`436f712`](436f712843)
docs: fix Header UI inconsistency
([#&#8203;16464](https://togithub.com/eslint/eslint/issues/16464))
(Tanuj Kanti)
-
[`f743816`](f743816967)
docs: switch to wrench emoji for auto-fixable rules
([#&#8203;16545](https://togithub.com/eslint/eslint/issues/16545))
(Bryan Mishkin)
-
[`bc0547e`](bc0547eb14)
docs: improve styles for versions and languages page
([#&#8203;16553](https://togithub.com/eslint/eslint/issues/16553))
(Nitin Kumar)
-
[`6070f58`](6070f58d80)
docs: clarify esquery issue workaround
([#&#8203;16556](https://togithub.com/eslint/eslint/issues/16556))
(Milos Djermanovic)
-
[`b48e4f8`](b48e4f89c5)
docs: Command Line Interface intro and tweaks
([#&#8203;16535](https://togithub.com/eslint/eslint/issues/16535)) (Ben
Perlmutter)
-
[`b92b30f`](b92b30f93d)
docs: Add Rules page intro and content tweaks
([#&#8203;16523](https://togithub.com/eslint/eslint/issues/16523)) (Ben
Perlmutter)
-
[`1769b42`](1769b42339)
docs: Integrations page introduction
([#&#8203;16548](https://togithub.com/eslint/eslint/issues/16548)) (Ben
Perlmutter)
-
[`a8d0a57`](a8d0a57cbc)
docs: make table of contents sticky on desktop
([#&#8203;16506](https://togithub.com/eslint/eslint/issues/16506)) (Sam
Chen)
-
[`a01315a`](a01315a7d8)
docs: fix route of japanese translation site
([#&#8203;16542](https://togithub.com/eslint/eslint/issues/16542))
(Tanuj Kanti)
-
[`0515628`](0515628539)
docs: use emoji instead of svg for deprecated rule
([#&#8203;16536](https://togithub.com/eslint/eslint/issues/16536))
(Bryan Mishkin)
-
[`68f1288`](68f12882fb)
docs: set default layouts
([#&#8203;16484](https://togithub.com/eslint/eslint/issues/16484))
(Percy Ma)
-
[`776827a`](776827a174)
docs: init config about specifying shared configs
([#&#8203;16483](https://togithub.com/eslint/eslint/issues/16483))
(Percy Ma)
-
[`5c39425`](5c39425fc5)
docs: fix broken link to plugins
([#&#8203;16520](https://togithub.com/eslint/eslint/issues/16520)) (Ádám
T. Nagy)
-
[`c97c789`](c97c789768)
docs: Add missing no-new-native-nonconstructor docs code fence
([#&#8203;16503](https://togithub.com/eslint/eslint/issues/16503))
(Brandon Mills)

#### Chores

-
[`e94a4a9`](e94a4a95ee)
chore: Add tests to verify
[#&#8203;16038](https://togithub.com/eslint/eslint/issues/16038) is
fixed ([#&#8203;16538](https://togithub.com/eslint/eslint/issues/16538))
(Nicholas C. Zakas)
-
[`e13f194`](e13f194f89)
chore: stricter validation of `meta.docs.description` in core rules
([#&#8203;16529](https://togithub.com/eslint/eslint/issues/16529))
(Milos Djermanovic)
-
[`72dbfbc`](72dbfbc0c4)
chore: use `pkg` parameter in `getNpmPackageVersion`
([#&#8203;16525](https://togithub.com/eslint/eslint/issues/16525))
(webxmsj)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNy4zIiwidXBkYXRlZEluVmVyIjoiMzQuMjcuMyJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-19 23:32:29 +00:00
renovate[bot]
1aad6fca46
chore(deps): update dependency vite-tsconfig-paths to v3.6.0 (#2481)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[vite-tsconfig-paths](https://togithub.com/aleclarson/vite-tsconfig-paths)
| [`3.5.2` ->
`3.6.0`](https://renovatebot.com/diffs/npm/vite-tsconfig-paths/3.5.2/3.6.0)
|
[![age](https://badges.renovateapi.com/packages/npm/vite-tsconfig-paths/3.6.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/vite-tsconfig-paths/3.6.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/vite-tsconfig-paths/3.6.0/compatibility-slim/3.5.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/vite-tsconfig-paths/3.6.0/confidence-slim/3.5.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>aleclarson/vite-tsconfig-paths</summary>

###
[`v3.6.0`](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v3.5.2...v3.6.0)

[Compare
Source](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v3.5.2...v3.6.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yOC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjguMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-19 21:15:20 +00:00
renovate[bot]
d9cf6a377a
chore(deps): update dependency @uiw/react-codemirror to v4.15.1 (#2469)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.15.0` ->
`4.15.1`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.15.0/4.15.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.1/compatibility-slim/4.15.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.1/confidence-slim/4.15.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.15.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.15.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.15.0...v4.15.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.15.1/file/README.md)

Documentation v4.15.1:
https://raw.githack.com/uiwjs/react-codemirror/732e9c3/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.15.0...v4.15.1

```shell
npm i @&#8203;uiw/react-codemirror@4.15.1
```

- 🐞 fix(theme): Fix and simplify VS Code dark theme
([#&#8203;416](https://togithub.com/uiwjs/react-codemirror/issues/416))
[`c2f74b2`](https://togithub.com/uiwjs/react-codemirror/commit/c2f74b2)
[@&#8203;karlhorky](https://togithub.com/karlhorky)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNi40IiwidXBkYXRlZEluVmVyIjoiMzQuMjYuNCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-18 19:56:14 +00:00
renovate[bot]
51ccf65367
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.15.1 (#2468)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.15.0` ->
`4.15.1`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.15.0/4.15.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.1/compatibility-slim/4.15.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.1/confidence-slim/4.15.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.15.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.15.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.15.0...v4.15.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.15.1/file/README.md)

Documentation v4.15.1:
https://raw.githack.com/uiwjs/react-codemirror/732e9c3/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.15.0...v4.15.1

```shell
npm i @&#8203;uiw/react-codemirror@4.15.1
```

- 🐞 fix(theme): Fix and simplify VS Code dark theme
([#&#8203;416](https://togithub.com/uiwjs/react-codemirror/issues/416))
[`c2f74b2`](https://togithub.com/uiwjs/react-codemirror/commit/c2f74b2)
[@&#8203;karlhorky](https://togithub.com/karlhorky)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNi40IiwidXBkYXRlZEluVmVyIjoiMzQuMjYuNCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-18 07:27:15 +00:00
renovate[bot]
865cfeaf99
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.15.0 (#2461)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.14.0` ->
`4.15.0`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.14.0/4.15.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.0/compatibility-slim/4.14.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.15.0/confidence-slim/4.14.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.15.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.15.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.3...v4.15.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.15.0/file/README.md)

Documentation v4.15.0:
https://raw.githack.com/uiwjs/react-codemirror/21cd7a1/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.3...v4.15.0

```shell
npm i @&#8203;uiw/react-codemirror@4.15.0
```

- 🌟 feat(theme): add fontFamily option.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`6fa5ad5`](https://togithub.com/uiwjs/react-codemirror/commit/6fa5ad5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(theme): Add font-family to VS Code dark theme
([#&#8203;413](https://togithub.com/uiwjs/react-codemirror/issues/413))
[`d1150da`](https://togithub.com/uiwjs/react-codemirror/commit/d1150da)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🎨 style(vscode): add vscodeDarkInit method.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`82e931c`](https://togithub.com/uiwjs/react-codemirror/commit/82e931c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 📖 doc(vscode): Update preview image
([#&#8203;414](https://togithub.com/uiwjs/react-codemirror/issues/414))
[`9d09fb0`](https://togithub.com/uiwjs/react-codemirror/commit/9d09fb0)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🐞 fix: Fix "cannot set properties of undefined"
([#&#8203;415](https://togithub.com/uiwjs/react-codemirror/issues/415))
[`3a566f2`](https://togithub.com/uiwjs/react-codemirror/commit/3a566f2)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🌍 website: fix type error.
[`15b2bee`](https://togithub.com/uiwjs/react-codemirror/commit/15b2bee)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.14.3`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.3)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.2...v4.14.3)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.3/file/README.md)

Documentation v4.14.3:
https://raw.githack.com/uiwjs/react-codemirror/1310dcb/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.2...v4.14.3

```shell
npm i @&#8203;uiw/react-codemirror@4.14.3
```

- 🐞 fix(theme): Fix foreground and function name colors
([#&#8203;412](https://togithub.com/uiwjs/react-codemirror/issues/412))
[`aa703c6`](https://togithub.com/uiwjs/react-codemirror/commit/aa703c6)
[@&#8203;karlhorky](https://togithub.com/karlhorky)

###
[`v4.14.2`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.2)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.1...v4.14.2)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.2/file/README.md)

Documentation v4.14.2:
https://raw.githack.com/uiwjs/react-codemirror/4df190b/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.1...v4.14.2

```shell
npm i @&#8203;uiw/react-codemirror@4.14.2
```

- 🐞 fix(codemirror-themes): fix theme selection style error.
[#&#8203;406](https://togithub.com/uiwjs/react-codemirror/issues/406)
[`a029a3e`](https://togithub.com/uiwjs/react-codemirror/commit/a029a3e)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(deps): update codemirror to ~6.2.0
([#&#8203;407](https://togithub.com/uiwjs/react-codemirror/issues/407))
[`47d18e0`](https://togithub.com/uiwjs/react-codemirror/commit/47d18e0)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 💄 chore(deps): update dependency lerna to v6
([#&#8203;387](https://togithub.com/uiwjs/react-codemirror/issues/387))
[`7176370`](https://togithub.com/uiwjs/react-codemirror/commit/7176370)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 📖 doc(vscode): update vscode theme document.
[`92a06fc`](https://togithub.com/uiwjs/react-codemirror/commit/92a06fc)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.14.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.0...v4.14.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.1/file/README.md)

Documentation v4.14.1:
https://raw.githack.com/uiwjs/react-codemirror/6686da7/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.0...v4.14.1

```shell
npm i @&#8203;uiw/react-codemirror@4.14.1
```

- 📖 doc(theme): Update README.md
[`09521dd`](https://togithub.com/uiwjs/react-codemirror/commit/09521dd)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🎨 style(vscode): modify vscode theme backgournd color.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`20b3978`](https://togithub.com/uiwjs/react-codemirror/commit/20b3978)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNi40IiwidXBkYXRlZEluVmVyIjoiMzQuMjYuNCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-18 00:50:07 +00:00
renovate[bot]
f46be4439f
chore(deps): update dependency @uiw/react-codemirror to v4.15.0 (#2457)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.13.2` ->
`4.15.0`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.13.2/4.15.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.0/compatibility-slim/4.13.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2freact-codemirror/4.15.0/confidence-slim/4.13.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.15.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.15.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.3...v4.15.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.15.0/file/README.md)

Documentation v4.15.0:
https://raw.githack.com/uiwjs/react-codemirror/21cd7a1/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.3...v4.15.0

```shell
npm i @&#8203;uiw/react-codemirror@4.15.0
```

- 🌟 feat(theme): add fontFamily option.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`6fa5ad5`](https://togithub.com/uiwjs/react-codemirror/commit/6fa5ad5)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(theme): Add font-family to VS Code dark theme
([#&#8203;413](https://togithub.com/uiwjs/react-codemirror/issues/413))
[`d1150da`](https://togithub.com/uiwjs/react-codemirror/commit/d1150da)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🎨 style(vscode): add vscodeDarkInit method.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`82e931c`](https://togithub.com/uiwjs/react-codemirror/commit/82e931c)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 📖 doc(vscode): Update preview image
([#&#8203;414](https://togithub.com/uiwjs/react-codemirror/issues/414))
[`9d09fb0`](https://togithub.com/uiwjs/react-codemirror/commit/9d09fb0)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🐞 fix: Fix "cannot set properties of undefined"
([#&#8203;415](https://togithub.com/uiwjs/react-codemirror/issues/415))
[`3a566f2`](https://togithub.com/uiwjs/react-codemirror/commit/3a566f2)
[@&#8203;karlhorky](https://togithub.com/karlhorky)
- 🌍 website: fix type error.
[`15b2bee`](https://togithub.com/uiwjs/react-codemirror/commit/15b2bee)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.14.3`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.3)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.2...v4.14.3)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.3/file/README.md)

Documentation v4.14.3:
https://raw.githack.com/uiwjs/react-codemirror/1310dcb/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.2...v4.14.3

```shell
npm i @&#8203;uiw/react-codemirror@4.14.3
```

- 🐞 fix(theme): Fix foreground and function name colors
([#&#8203;412](https://togithub.com/uiwjs/react-codemirror/issues/412))
[`aa703c6`](https://togithub.com/uiwjs/react-codemirror/commit/aa703c6)
[@&#8203;karlhorky](https://togithub.com/karlhorky)

###
[`v4.14.2`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.2)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.1...v4.14.2)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.2/file/README.md)

Documentation v4.14.2:
https://raw.githack.com/uiwjs/react-codemirror/4df190b/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.1...v4.14.2

```shell
npm i @&#8203;uiw/react-codemirror@4.14.2
```

- 🐞 fix(codemirror-themes): fix theme selection style error.
[#&#8203;406](https://togithub.com/uiwjs/react-codemirror/issues/406)
[`a029a3e`](https://togithub.com/uiwjs/react-codemirror/commit/a029a3e)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🐞 fix(deps): update codemirror to ~6.2.0
([#&#8203;407](https://togithub.com/uiwjs/react-codemirror/issues/407))
[`47d18e0`](https://togithub.com/uiwjs/react-codemirror/commit/47d18e0)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 💄 chore(deps): update dependency lerna to v6
([#&#8203;387](https://togithub.com/uiwjs/react-codemirror/issues/387))
[`7176370`](https://togithub.com/uiwjs/react-codemirror/commit/7176370)
[@&#8203;renovate-bot](https://togithub.com/renovate-bot)
- 📖 doc(vscode): update vscode theme document.
[`92a06fc`](https://togithub.com/uiwjs/react-codemirror/commit/92a06fc)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.14.1`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.1)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.14.0...v4.14.1)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.1/file/README.md)

Documentation v4.14.1:
https://raw.githack.com/uiwjs/react-codemirror/6686da7/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.14.0...v4.14.1

```shell
npm i @&#8203;uiw/react-codemirror@4.14.1
```

- 📖 doc(theme): Update README.md
[`09521dd`](https://togithub.com/uiwjs/react-codemirror/commit/09521dd)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🎨 style(vscode): modify vscode theme backgournd color.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`20b3978`](https://togithub.com/uiwjs/react-codemirror/commit/20b3978)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

###
[`v4.14.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.13.2...v4.14.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.0/file/README.md)

Documentation v4.14.0:
https://raw.githack.com/uiwjs/react-codemirror/73f21ee/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.13.2...v4.14.0

```shell
npm i @&#8203;uiw/react-codemirror@4.14.0
```

- 🌟 feat: add gutterActiveForeground option.
[`4566d71`](https://togithub.com/uiwjs/react-codemirror/commit/4566d71)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat: add `vscode` theme.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`c1be57a`](https://togithub.com/uiwjs/react-codemirror/commit/c1be57a)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNi4yIiwidXBkYXRlZEluVmVyIjoiMzQuMjYuNCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-17 21:22:36 +00:00
renovate[bot]
1b901bb6c0
chore(deps): update dependency chartjs-adapter-date-fns to v2.0.1 (#2454)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [chartjs-adapter-date-fns](https://www.chartjs.org)
([source](https://togithub.com/chartjs/chartjs-adapter-date-fns)) |
[`2.0.0` ->
`2.0.1`](https://renovatebot.com/diffs/npm/chartjs-adapter-date-fns/2.0.0/2.0.1)
|
[![age](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/2.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/2.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/2.0.1/compatibility-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/2.0.1/confidence-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>chartjs/chartjs-adapter-date-fns</summary>

###
[`v2.0.1`](https://togithub.com/chartjs/chartjs-adapter-date-fns/releases/tag/v2.0.1)

[Compare
Source](https://togithub.com/chartjs/chartjs-adapter-date-fns/compare/v2.0.0...v2.0.1)

### Essential Links

-   [npm](https://www.npmjs.com/package/chartjs-adapter-date-fns)

<!---->

-
[#&#8203;52](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/52)
Bump version to v2.0.1
-
[#&#8203;55](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/55)
Bump minimatch from 3.0.4 to 3.1.2
-
[#&#8203;48](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/48)
Fix peerDependencies of chart.js version <3.0.0
-
[#&#8203;47](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/47)
Bump ansi-regex from 5.0.0 to 5.0.1
-
[#&#8203;46](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/46)
Bump path-parse from 1.0.6 to 1.0.7
-
[#&#8203;43](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/43)
Bump follow-redirects from 1.14.1 to 1.14.8
-
[#&#8203;44](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/44)
Bump karma from 6.3.2 to 6.3.16
-
[#&#8203;45](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/45)
Bump minimist from 1.2.5 to 1.2.6
-
[#&#8203;36](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/36)
Bump hosted-git-info from 2.8.8 to 2.8.9

#### Development

-
[#&#8203;37](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/37)
Fix indent of rollup.config, update deps

Thanks to [@&#8203;LeeLenaleee](https://togithub.com/LeeLenaleee),
[@&#8203;dependabot](https://togithub.com/dependabot),
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot],
[@&#8203;jacksonGross](https://togithub.com/jacksonGross) and
[@&#8203;kurkle](https://togithub.com/kurkle)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNi4yIiwidXBkYXRlZEluVmVyIjoiMzQuMjYuMiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-17 18:18:27 +00:00
renovate[bot]
6cd61466f3
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.14.0 (#2456)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light)
([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.13.2` ->
`4.14.0`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.13.2/4.14.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.14.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.14.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.14.0/compatibility-slim/4.13.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.14.0/confidence-slim/4.13.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uiwjs/react-codemirror</summary>

###
[`v4.14.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.14.0)

[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.13.2...v4.14.0)


[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.14.0/file/README.md)

Documentation v4.14.0:
https://raw.githack.com/uiwjs/react-codemirror/73f21ee/index.html\
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.13.2...v4.14.0

```shell
npm i @&#8203;uiw/react-codemirror@4.14.0
```

- 🌟 feat: add gutterActiveForeground option.
[`4566d71`](https://togithub.com/uiwjs/react-codemirror/commit/4566d71)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)
- 🌟 feat: add `vscode` theme.
[#&#8203;409](https://togithub.com/uiwjs/react-codemirror/issues/409)
[`c1be57a`](https://togithub.com/uiwjs/react-codemirror/commit/c1be57a)
[@&#8203;jaywcjlove](https://togithub.com/jaywcjlove)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNi4yIiwidXBkYXRlZEluVmVyIjoiMzQuMjYuMiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-17 06:11:22 +00:00
renovate[bot]
5761aabb76
chore(deps): update dependency msw to v0.48.3 (#2443)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [msw](https://mswjs.io/) ([source](https://togithub.com/mswjs/msw)) |
[`0.48.2` ->
`0.48.3`](https://renovatebot.com/diffs/npm/msw/0.48.2/0.48.3) |
[![age](https://badges.renovateapi.com/packages/npm/msw/0.48.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/msw/0.48.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/msw/0.48.3/compatibility-slim/0.48.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/msw/0.48.3/confidence-slim/0.48.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mswjs/msw</summary>

### [`v0.48.3`](https://togithub.com/mswjs/msw/releases/tag/v0.48.3)

[Compare
Source](https://togithub.com/mswjs/msw/compare/v0.48.2...v0.48.3)

#### v0.48.3 (2022-11-15)

##### Bug Fixes

- **SetupApi:** validate given request handlers
([#&#8203;1460](https://togithub.com/mswjs/msw/issues/1460))
([`a06a944`](a06a9447d0))
[@&#8203;kettanaito](https://togithub.com/kettanaito)
- inline `statuses` dependency during the build
([#&#8203;1458](https://togithub.com/mswjs/msw/issues/1458))
([`99d49f9`](99d49f9b1e))
[@&#8203;mattcosta7](https://togithub.com/mattcosta7)
[@&#8203;kettanaito](https://togithub.com/kettanaito)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4xIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMSJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-16 04:56:29 +00:00
renovate[bot]
e29b7d6738
chore(deps): update material-ui monorepo (#2432)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@mui/icons-material](https://mui.com/material-ui/material-icons/)
([source](https://togithub.com/mui/material-ui)) | [`5.10.9` ->
`5.10.14`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.10.9/5.10.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.14/compatibility-slim/5.10.9)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.10.14/confidence-slim/5.10.9)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/lab](https://mui.com/material-ui/about-the-lab/)
([source](https://togithub.com/mui/material-ui)) | [`5.0.0-alpha.107` ->
`5.0.0-alpha.108`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.107/5.0.0-alpha.108)
|
[![age](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.108/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.108/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.108/compatibility-slim/5.0.0-alpha.107)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.108/confidence-slim/5.0.0-alpha.107)](https://docs.renovatebot.com/merge-confidence/)
|
| [@mui/material](https://mui.com/material-ui/getting-started/overview/)
([source](https://togithub.com/mui/material-ui)) | [`5.10.13` ->
`5.10.14`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.10.13/5.10.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.14/compatibility-slim/5.10.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.10.14/confidence-slim/5.10.13)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v5.10.14`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51014)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.10.9...v5.10.14)

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

*Nov 14, 2022*

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

- 🚀 [@&#8203;siriwatknp](https://togithub.com/siriwatknp) added the
Autocomplete component to the Joy UI
([#&#8203;34315](https://togithub.com/mui/material-ui/issues/34315))
-  [@&#8203;sfavello](https://togithub.com/sfavello) improved the
accessibility of the Material UI's Autocomplete by adding support for
the Delete key
([#&#8203;33822](https://togithub.com/mui/material-ui/issues/33822))
- Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure
improvements.

##### `@mui/material@5.10.14`

- \[Material UI] Add `palette.background.defaultChannel` token
([#&#8203;35061](https://togithub.com/mui/material-ui/issues/35061))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[Autocomplete] Remove tags with the Delete key
([#&#8203;33822](https://togithub.com/mui/material-ui/issues/33822))
[@&#8203;sfavello](https://togithub.com/sfavello)
- \[IconButton] custom color causes type error
([#&#8203;34521](https://togithub.com/mui/material-ui/issues/34521))
[@&#8203;kushagra010](https://togithub.com/kushagra010)

##### `@mui/system@5.10.14`

- \[Unstable_Gridv2] sorted responsize keys based on breakpoint value
([#&#8203;34987](https://togithub.com/mui/material-ui/issues/34987))
[@&#8203;sai6855](https://togithub.com/sai6855)

##### `@mui/joy@5.0.0-alpha.54`

- \[Joy] Export `FormControl`, `LinearProgress` and `ListSubheader`
components from `@mui/joy`
([#&#8203;35003](https://togithub.com/mui/material-ui/issues/35003))
[@&#8203;Studio384](https://togithub.com/Studio384)
- \[Joy] Miscellaneous fixes
([#&#8203;35044](https://togithub.com/mui/material-ui/issues/35044))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[Joy] Add `Autocomplete` component
([#&#8203;34315](https://togithub.com/mui/material-ui/issues/34315))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[Joy] Saturate a bit the gray palette
([#&#8203;35148](https://togithub.com/mui/material-ui/issues/35148))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[Autocomplete]\[joy] Fix types
([#&#8203;35153](https://togithub.com/mui/material-ui/issues/35153))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)

##### Docs

- \[blog] Fix font size of code blocks on iOS
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Accessibility - increase default contrastThreshold for WCAG AA
compliance
([#&#8203;34901](https://togithub.com/mui/material-ui/issues/34901))
[@&#8203;kennethbigler](https://togithub.com/kennethbigler)
- \[docs] Correct the keepMounted section on the Drawer page
([#&#8203;35076](https://togithub.com/mui/material-ui/issues/35076))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- \[docs] Fix code editor styles mismatches
([#&#8203;35108](https://togithub.com/mui/material-ui/issues/35108))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Allows to access the next MUI-X
([#&#8203;34798](https://togithub.com/mui/material-ui/issues/34798))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[docs] Fix bugs with live edit demos
([#&#8203;35106](https://togithub.com/mui/material-ui/issues/35106))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix `MarkdownElement` regression from adding CSS variables
([#&#8203;35096](https://togithub.com/mui/material-ui/issues/35096))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[docs] Add a new gold sponsor
([#&#8203;35089](https://togithub.com/mui/material-ui/issues/35089))
[@&#8203;hbjORbj](https://togithub.com/hbjORbj)
- \[docs] Fix scroll issue on expanded live demos
([#&#8203;35064](https://togithub.com/mui/material-ui/issues/35064))
[@&#8203;bharatkashyap](https://togithub.com/bharatkashyap)
- \[docs] Improve alignment of the sponsors
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Improve code font family v2
([#&#8203;35053](https://togithub.com/mui/material-ui/issues/35053))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Upgrade to Next.js 13
([#&#8203;35001](https://togithub.com/mui/material-ui/issues/35001))
[@&#8203;mnajdova](https://togithub.com/mnajdova)
- \[docs] Fix typo in changelog
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Update Joy UI templates to use latest components
([#&#8203;35058](https://togithub.com/mui/material-ui/issues/35058))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[website] Fix design kits showcase throwing an error
([#&#8203;35093](https://togithub.com/mui/material-ui/issues/35093))
[@&#8203;cherniavskii](https://togithub.com/cherniavskii)
- \[website] Fix margin bug on CTA
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[website] Link respective repositories in product pages
([#&#8203;35046](https://togithub.com/mui/material-ui/issues/35046))
[@&#8203;sidtohan](https://togithub.com/sidtohan)
- \[website] Migrate blog pages to use CSS theme variables
([#&#8203;34976](https://togithub.com/mui/material-ui/issues/34976))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[website] Update DoiT International logo and links with new brand
([#&#8203;35030](https://togithub.com/mui/material-ui/issues/35030))
[@&#8203;ofir5300](https://togithub.com/ofir5300)
- \[website] Improve visual design app bar
([#&#8203;35111](https://togithub.com/mui/material-ui/issues/35111))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

##### Core

- \[core] Convert scripts to ES modules
([#&#8203;35036](https://togithub.com/mui/material-ui/issues/35036))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- \[core] Show the whole version to make blame easier
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Polish GitHub Action version
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Ignore icons to speed up CodeQL
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Feedback on branch protection
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Revert CI
([#&#8203;35098](https://togithub.com/mui/material-ui/issues/35098))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[core] Fix job name to match the CI
([#&#8203;35097](https://togithub.com/mui/material-ui/issues/35097))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[core] ESLint fixes for tests
([#&#8203;34924](https://togithub.com/mui/material-ui/issues/34924))
[@&#8203;Janpot](https://togithub.com/Janpot)
- \[core] Ignore unrelated folders from github actions
([#&#8203;35028](https://togithub.com/mui/material-ui/issues/35028))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[core] Use pretty-quick instead of custom script
([#&#8203;34062](https://togithub.com/mui/material-ui/issues/34062))
[@&#8203;Janpot](https://togithub.com/Janpot)

All contributors of this release in alphabetical order:
[@&#8203;alexfauquette](https://togithub.com/alexfauquette),
[@&#8203;bharatkashyap](https://togithub.com/bharatkashyap),
[@&#8203;cherniavskii](https://togithub.com/cherniavskii),
[@&#8203;danilo-leal](https://togithub.com/danilo-leal),
[@&#8203;hbjORbj](https://togithub.com/hbjORbj),
[@&#8203;Janpot](https://togithub.com/Janpot),
[@&#8203;kennethbigler](https://togithub.com/kennethbigler),
[@&#8203;kushagra010](https://togithub.com/kushagra010),
[@&#8203;michaldudak](https://togithub.com/michaldudak),
[@&#8203;mnajdova](https://togithub.com/mnajdova),
[@&#8203;ofir5300](https://togithub.com/ofir5300),
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari),
[@&#8203;sai6855](https://togithub.com/sai6855),
[@&#8203;sfavello](https://togithub.com/sfavello),
[@&#8203;sidtohan](https://togithub.com/sidtohan),
[@&#8203;siriwatknp](https://togithub.com/siriwatknp),
[@&#8203;Studio384](https://togithub.com/Studio384)

</details>

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

###
[`v5.0.0-alpha.108`](2f4c2190d1...c2da6de1c5)

[Compare
Source](2f4c2190d1...c2da6de1c5)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4xIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMSJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-16 02:07:58 +00:00
renovate[bot]
3638f0d09a
chore(deps): update dependency @codemirror/state to v6.1.4 (#2441)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@codemirror/state](https://togithub.com/codemirror/state) | [`6.1.3`
->
`6.1.4`](https://renovatebot.com/diffs/npm/@codemirror%2fstate/6.1.3/6.1.4)
|
[![age](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.1.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.1.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.1.4/compatibility-slim/6.1.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.1.4/confidence-slim/6.1.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>codemirror/state</summary>

###
[`v6.1.4`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#&#8203;614-2022-11-15)

[Compare
Source](https://togithub.com/codemirror/state/compare/6.1.3...6.1.4)

##### Bug fixes

Fix a bug that caused the `openStart` value passed to span iterators to
be incorrect around widgets in some circumstances.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4xIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMSJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-15 22:27:26 +00:00