Bumps
[@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates)
from 7.6.0 to 7.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@mantine/dates</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.0 ✨</h2>
<p><a href="https://mantine.dev/changelog/7-9-0">View changelog with
demos on mantine.dev website</a></p>
<h2><code>@mantine/emotion</code> package</h2>
<p>New <a
href="https://mantine.dev/styles/emotion"><code>@mantine/emotion</code></a>
package is now available to simplify migration
from <a href="https://mantine.dev/guides/6x-to-7x/">6.x to 7.x</a>. It
includes <code>createStyles</code> function and additional
functionality for <code>sx</code> and <code>styles</code> props for all
components similar to what was available
in <code>@mantine/core</code> package in v6.</p>
<p>If you still haven't migrated to 7.x because of the change in styling
approach, you can now
have a smoother transition by using <code>@mantine/emotion</code>
package. To learn more about the package,
visit the <a href="https://mantine.dev/styles/emotion">documentation
page</a> and updated <a href="https://mantine.dev/guides/6x-to-7x/">6.x
to 7.x migration guide</a>.</p>
<pre lang="tsx"><code>import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
<p>const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 'auto',
marginRight: 'auto',
borderRadius: theme.radius.sm,</p>
<pre><code>// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
backgroundColor: theme.colors.gray[1],
},
[u.dark]: {
backgroundColor: theme.colors.dark[5],
},
// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
// Child reference in nested selectors via ref
[`&amp; .${u.ref('child')}`]: {
fontSize: theme.fontSizes.xs,
},
},
</code></pre>
<p>},</p>
<p>child: {
// Assign selector to a ref to reference it in other styles
</tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="b95051c4fc"><code>b95051c</code></a>
[release] Version: 7.8.1</li>
<li><a
href="d372b39a1b"><code>d372b39</code></a>
[<code>@mantine/dates</code>] DatePicker: Fix date range being stuck in
incorrect state wh...</li>
<li><a
href="94051f502c"><code>94051f5</code></a>
[mantine.dev] Fix typo (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates/issues/6075">#6075</a>)</li>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li><a
href="6d195cb5bb"><code>6d195cb</code></a>
[core] Migrate to auto-rem</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.0/packages/@mantine/dates">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications)
from 7.6.0 to 7.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@mantine/notifications</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.0 ✨</h2>
<p><a href="https://mantine.dev/changelog/7-9-0">View changelog with
demos on mantine.dev website</a></p>
<h2><code>@mantine/emotion</code> package</h2>
<p>New <a
href="https://mantine.dev/styles/emotion"><code>@mantine/emotion</code></a>
package is now available to simplify migration
from <a href="https://mantine.dev/guides/6x-to-7x/">6.x to 7.x</a>. It
includes <code>createStyles</code> function and additional
functionality for <code>sx</code> and <code>styles</code> props for all
components similar to what was available
in <code>@mantine/core</code> package in v6.</p>
<p>If you still haven't migrated to 7.x because of the change in styling
approach, you can now
have a smoother transition by using <code>@mantine/emotion</code>
package. To learn more about the package,
visit the <a href="https://mantine.dev/styles/emotion">documentation
page</a> and updated <a href="https://mantine.dev/guides/6x-to-7x/">6.x
to 7.x migration guide</a>.</p>
<pre lang="tsx"><code>import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
<p>const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 'auto',
marginRight: 'auto',
borderRadius: theme.radius.sm,</p>
<pre><code>// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
backgroundColor: theme.colors.gray[1],
},
[u.dark]: {
backgroundColor: theme.colors.dark[5],
},
// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
// Child reference in nested selectors via ref
[`&amp; .${u.ref('child')}`]: {
fontSize: theme.fontSizes.xs,
},
},
</code></pre>
<p>},</p>
<p>child: {
// Assign selector to a ref to reference it in other styles
</tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="b95051c4fc"><code>b95051c</code></a>
[release] Version: 7.8.1</li>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li><a
href="878720bf26"><code>878720b</code></a>
[core] Remove baseUrl from all packages tsconfigs</li>
<li><a
href="30a48dfca3"><code>30a48df</code></a>
[release] Version: 7.7.1</li>
<li><a
href="6b14c7ace7"><code>6b14c7a</code></a>
[release] Version: 7.7.0</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.0/packages/@mantine/notifications">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form)
from 7.8.0 to 7.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@mantine/form</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.0 ✨</h2>
<p><a href="https://mantine.dev/changelog/7-9-0">View changelog with
demos on mantine.dev website</a></p>
<h2><code>@mantine/emotion</code> package</h2>
<p>New <a
href="https://mantine.dev/styles/emotion"><code>@mantine/emotion</code></a>
package is now available to simplify migration
from <a href="https://mantine.dev/guides/6x-to-7x/">6.x to 7.x</a>. It
includes <code>createStyles</code> function and additional
functionality for <code>sx</code> and <code>styles</code> props for all
components similar to what was available
in <code>@mantine/core</code> package in v6.</p>
<p>If you still haven't migrated to 7.x because of the change in styling
approach, you can now
have a smoother transition by using <code>@mantine/emotion</code>
package. To learn more about the package,
visit the <a href="https://mantine.dev/styles/emotion">documentation
page</a> and updated <a href="https://mantine.dev/guides/6x-to-7x/">6.x
to 7.x migration guide</a>.</p>
<pre lang="tsx"><code>import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
<p>const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 'auto',
marginRight: 'auto',
borderRadius: theme.radius.sm,</p>
<pre><code>// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
backgroundColor: theme.colors.gray[1],
},
[u.dark]: {
backgroundColor: theme.colors.dark[5],
},
// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
// Child reference in nested selectors via ref
[`&amp; .${u.ref('child')}`]: {
fontSize: theme.fontSizes.xs,
},
},
</code></pre>
<p>},</p>
<p>child: {
// Assign selector to a ref to reference it in other styles
</tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="53213be828"><code>53213be</code></a>
[mantine.dev] Add use-field documentation</li>
<li><a
href="e0e6b18f87"><code>e0e6b18</code></a>
[<code>@mantine/form</code>] Add all tests and types to use-field</li>
<li><a
href="f7ea555bde"><code>f7ea555</code></a>
[<code>@mantine/form</code>] Fix several issues with uncontrolled
use-field</li>
<li><a
href="b6a2f0fe70"><code>b6a2f0f</code></a>
[<code>@mantine/form</code>] Fix several issues in use-field</li>
<li><a
href="c17d1c446a"><code>c17d1c4</code></a>
[<code>@mantine/form</code>] Add use-field type exports</li>
<li><a
href="2daca60055"><code>2daca60</code></a>
[<code>@mantine/form</code>] Add getInputProps tests to use-field
hook</li>
<li><a
href="8b3e0eff33"><code>8b3e0ef</code></a>
[<code>@mantine/form</code>] Add validation, value and error tests to
use-field</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.0/packages/@mantine/form">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[postcss-preset-mantine](https://github.com/mantinedev/postcss-preset-mantine)
from 1.14.0 to 1.15.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/mantinedev/postcss-preset-mantine/commits">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom)
from 18.2.0 to 18.3.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/releases">react-dom's
releases</a>.</em></p>
<blockquote>
<h2>18.3.0 (April 25, 2024)</h2>
<p>This release is identical to 18.2 but adds warnings for deprecated
APIs and other changes that are needed for React 19.</p>
<p>Read the <a
href="https://react.dev/blog/2024/04/25/react-19-upgrade-guide">React 19
Upgrade Guide</a> for more info.</p>
<h3>React</h3>
<ul>
<li>Allow writing to <code>this.refs</code> to support string ref
codemod <a
href="9090712fd3">909071</a></li>
<li>Warn for deprecated <code>findDOMNode</code> outside StrictMode <a
href="c3b2839641">c3b283</a></li>
<li>Warn for deprecated <code>test-utils</code> methods <a
href="d4ea75dc42">d4ea75</a></li>
<li>Warn for deprecated Legacy Context outside StrictMode <a
href="415ee0e6ea">415ee0</a></li>
<li>Warn for deprecated string refs outside StrictMode <a
href="https://redirect.github.com/facebook/react/pull/25383">#25383</a></li>
<li>Warn for deprecated <code>defaultProps</code> for function
components <a
href="https://redirect.github.com/facebook/react/pull/25699">#25699</a></li>
<li>Warn when spreading <code>key</code> <a
href="https://redirect.github.com/facebook/react/pull/25697">#25697</a></li>
<li>Warn when using <code>act</code> from <code>test-utils</code> <a
href="d4ea75dc42">d4ea75</a></li>
</ul>
<h3>React DOM</h3>
<ul>
<li>Warn for deprecated <code>unmountComponentAtNode</code> <a
href="8a015b68cc">8a015b</a></li>
<li>Warn for deprecated <code>renderToStaticNodeStream</code> <a
href="https://redirect.github.com/facebook/react/pull/28874">#28874</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react-dom's
changelog</a>.</em></p>
<blockquote>
<h2>18.3.0 (April 25, 2024)</h2>
<p>This release is identical to 18.2 but adds warnings for deprecated
APIs and other changes that are needed for React 19.</p>
<p>Read the <a
href="https://react.dev/blog/2024/04/25/react-19-upgrade-guide">React 19
Upgrade Guide</a> for more info.</p>
<h3>React</h3>
<ul>
<li>Allow writing to <code>this.refs</code> to support string ref
codemod <a
href="9090712fd3">909071</a></li>
<li>Warn for deprecated <code>findDOMNode</code> outside StrictMode <a
href="c3b2839641">c3b283</a></li>
<li>Warn for deprecated <code>test-utils</code> methods <a
href="d4ea75dc42">d4ea75</a></li>
<li>Warn for deprecated Legacy Context outside StrictMode <a
href="415ee0e6ea">415ee0</a></li>
<li>Warn for deprecated string refs outside StrictMode <a
href="https://redirect.github.com/facebook/react/pull/25383">#25383</a></li>
<li>Warn for deprecated <code>defaultProps</code> for function
components <a
href="https://redirect.github.com/facebook/react/pull/25699">#25699</a></li>
<li>Warn when spreading <code>key</code> <a
href="https://redirect.github.com/facebook/react/pull/25697">#25697</a></li>
<li>Warn when using <code>act</code> from <code>test-utils</code> <a
href="d4ea75dc42">d4ea75</a></li>
</ul>
<h3>React DOM</h3>
<ul>
<li>Warn for deprecated <code>unmountComponentAtNode</code> <a
href="8a015b68cc">8a015b</a></li>
<li>Warn for deprecated <code>renderToStaticNodeStream</code> <a
href="https://redirect.github.com/facebook/react/pull/28874">#28874</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8a015b68cc"><code>8a015b6</code></a>
Add deprecation warning for unmountComponentAtNode</li>
<li><a
href="c3b2839641"><code>c3b2839</code></a>
Add deprecation warning for findDOMNode</li>
<li><a
href="d4ea75dc42"><code>d4ea75d</code></a>
ReactDOMTestUtils deprecation warnings</li>
<li><a
href="7548c019ce"><code>7548c01</code></a>
Deprecate <code>renderToStaticNodeStream</code> (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/28872">#28872</a>)
(<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/28874">#28874</a>)</li>
<li><a
href="589423270e"><code>5894232</code></a>
Enable warning for defaultProps on function components for everyone (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/25699">#25699</a>)</li>
<li><a
href="c2a246e956"><code>c2a246e</code></a>
Turn on string ref deprecation warning for everybody (not codemoddable)
(<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/25383">#25383</a>)</li>
<li><a
href="2cfb4741fd"><code>2cfb474</code></a>
Bump version from 18.2 to 18.3</li>
<li>See full diff in <a
href="https://github.com/facebook/react/commits/v18.3.0/packages/react-dom">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~react-bot">react-bot</a>, a new releaser
for react-dom since your current version.</p>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[react](https://github.com/facebook/react/tree/HEAD/packages/react) and
[@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react).
These dependencies needed to be updated together.
Updates `react` from 18.2.0 to 18.3.0
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/facebook/react/commits/HEAD/packages/react">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~react-bot">react-bot</a>, a new releaser
for react since your current version.</p>
</details>
<br />
Updates `@types/react` from 18.2.48 to 18.3.0
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [next-i18next](https://github.com/i18next/next-i18next) from
15.2.0 to 15.3.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/i18next/next-i18next/releases">next-i18next's
releases</a>.</em></p>
<blockquote>
<h2>v15.3.0</h2>
<ul>
<li>Only overwrite ns config if it provided <a
href="https://redirect.github.com/i18next/next-i18next/pull/2270">#2270</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/i18next/next-i18next/blob/master/CHANGELOG.md">next-i18next's
changelog</a>.</em></p>
<blockquote>
<h2>15.3.0</h2>
<ul>
<li>Only overwrite ns config if it provided <a
href="https://redirect.github.com/i18next/next-i18next/pull/2270">#2270</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5c76bce6fe"><code>5c76bce</code></a>
15.3.0</li>
<li><a
href="4a852c48e5"><code>4a852c4</code></a>
test simple only</li>
<li><a
href="07364953f5"><code>0736495</code></a>
Only overwrite <code>ns</code> config if it provided (<a
href="https://redirect.github.com/i18next/next-i18next/issues/2270">#2270</a>)</li>
<li><a
href="d4ee4ff866"><code>d4ee4ff</code></a>
doc(issue-2259): Document react state issue (<a
href="https://redirect.github.com/i18next/next-i18next/issues/2260">#2260</a>)</li>
<li>See full diff in <a
href="https://github.com/i18next/next-i18next/compare/v15.2.0...v15.3.0">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form)
from 7.7.1 to 7.8.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@mantine/form</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.8.0</h2>
<p><a href="https://mantine.dev/changelog/7-8-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Auto convert px to rem in .css files</h2>
<p>Start from version <code>1.14.4</code> <a
href="https://mantine.dev/styles/postcss-preset">postcss-preset-mantine</a>
supports <code>autoRem</code> option that can be used to automatically
convert all <code>px</code> values
to <code>rem</code> units in <code>.css</code> files.</p>
<pre lang="js"><code>module.exports = {
plugins: {
'postcss-preset-mantine': {
autoRem: true,
},
},
};
</code></pre>
<p>This option works similar to <code>rem</code> function. The following
code:</p>
<pre lang="scss"><code>.demo {
font-size: 16px;
<p><a href="https://github.com/media"><code>@media</code></a>
(min-width: 320px) {
font-size: 32px;
}
}
</code></pre></p>
<p>Will be transformed to:</p>
<pre lang="scss"><code>.demo {
font-size: calc(1rem * var(--mantine-scale));
<p><a href="https://github.com/media"><code>@media</code></a>
(min-width: 320px) {
font-size: calc(2rem * var(--mantine-scale));
}
}
</code></pre></p>
<p>Note that <code>autoRem</code> converts only CSS properties, values
in <code>@media</code> queries are
not converted automatically – you still need to use <code>em</code>
function to convert them.</p>
<p><code>autoRem</code> option does not convert values in the following
cases:</p>
<ul>
<li>Values in <code>calc()</code>, <code>var()</code>,
<code>clamp()</code> and <code>url()</code> functions</li>
<li>Values in <code>content</code> property</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li><a
href="f8bd5c4294"><code>f8bd5c4</code></a>
[<code>@mantine/form</code>] Add form.watch tests</li>
<li><a
href="3440af1ea5"><code>3440af1</code></a>
[<code>@mantine/form</code>] Add form.watch</li>
<li><a
href="fcdfc97e0f"><code>fcdfc97</code></a>
[<code>@mantine/form</code>] Fix form.initialize rerendering multiple
times</li>
<li><a
href="f2b68d8afb"><code>f2b68d8</code></a>
[<code>@mantine/form</code>] Add all uncontrolled form tests</li>
<li><a
href="878720bf26"><code>878720b</code></a>
[core] Remove baseUrl from all packages tsconfigs</li>
<li><a
href="db06a89edf"><code>db06a89</code></a>
[<code>@mantine/form</code>] Add first part of uncontrolled form
tests</li>
<li><a
href="3c55e3eec9"><code>3c55e3e</code></a>
[<code>@mantine/form</code>] Improve key logic in getInputProps</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.8.0/packages/@mantine/form">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.6.0 to 7.7.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@typescript-eslint/eslint-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.7.0</h2>
<h2>7.7.0 (2024-04-15)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> replace <code>no-new-symbol</code>
with <code>no-new-native-nonconstructor</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8895">#8895</a>)</li>
<li><strong>typescript-estree:</strong> add defaultProject for project
service (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8815">#8815</a>)</li>
</ul>
<h3>❤️ Thank You</h3>
<ul>
<li>Dave <a
href="https://github.com/reduckted"><code>@reduckted</code></a></li>
<li>Josh Goldberg ✨</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md"><code>@typescript-eslint/eslint-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.7.0 (2024-04-15)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> replace <code>no-new-symbol</code>
with <code>no-new-native-nonconstructor</code></li>
</ul>
<h3>❤️ Thank You</h3>
<ul>
<li>Dave</li>
<li>Josh Goldberg ✨</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e44a1a280f"><code>e44a1a2</code></a>
chore(release): publish 7.7.0</li>
<li><a
href="fda5704b2b"><code>fda5704</code></a>
feat(eslint-plugin): replace <code>no-new-symbol</code> with
`no-new-native-nonconstruct...</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.7.0/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [i18next](https://github.com/i18next/i18next) from 23.10.0 to
23.11.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/i18next/i18next/releases">i18next's
releases</a>.</em></p>
<blockquote>
<h2>v23.11.2</h2>
<ul>
<li>allow defaultValue in nested translation <a
href="https://redirect.github.com/i18next/i18next/issues/2174">2174</a></li>
</ul>
<h2>v23.11.1</h2>
<ul>
<li>types: remove const from ParseKeys Context type parameter and
disable <code>skipLibCheck</code> <a
href="https://redirect.github.com/i18next/i18next/pull/2169">2169</a></li>
</ul>
<h2>v23.11.0</h2>
<ul>
<li>Fix typing performance regression <a
href="https://redirect.github.com/i18next/i18next/pull/2166">2166</a></li>
</ul>
<h2>v23.10.1</h2>
<ul>
<li>optimize getBestMatchFromCodes for <a
href="https://redirect.github.com/i18next/i18next-browser-languageDetector/issues/281">i18next/i18next-browser-languageDetector#281</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/i18next/i18next/blob/master/CHANGELOG.md">i18next's
changelog</a>.</em></p>
<blockquote>
<h2>23.11.2</h2>
<ul>
<li>allow defaultValue in nested translation <a
href="https://redirect.github.com/i18next/i18next/issues/2174">2174</a></li>
</ul>
<h2>23.11.1</h2>
<ul>
<li>types: remove const from ParseKeys Context type parameter and
disable <code>skipLibCheck</code> <a
href="https://redirect.github.com/i18next/i18next/pull/2169">2169</a></li>
</ul>
<h2>23.11.0</h2>
<ul>
<li>Fix typing performance regression <a
href="https://redirect.github.com/i18next/i18next/pull/2166">2166</a></li>
</ul>
<h2>23.10.1</h2>
<ul>
<li>optimize getBestMatchFromCodes for <a
href="https://redirect.github.com/i18next/i18next-browser-languageDetector/issues/281">i18next/i18next-browser-languageDetector#281</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c9e2bf5a1e"><code>c9e2bf5</code></a>
23.11.2</li>
<li><a
href="ba49a6f1d8"><code>ba49a6f</code></a>
allow defaultValue in nested translation <a
href="https://redirect.github.com/i18next/i18next/issues/2174">#2174</a></li>
<li><a
href="677755c600"><code>677755c</code></a>
test(types): add context + enum scenario (<a
href="https://redirect.github.com/i18next/i18next/issues/2173">#2173</a>)</li>
<li><a
href="2a2a6824ad"><code>2a2a682</code></a>
23.11.1</li>
<li><a
href="be7edc5a2b"><code>be7edc5</code></a>
release</li>
<li><a
href="2c8d4932dc"><code>2c8d493</code></a>
types: remove const from ParseKeys Context type parameter and disable
`skipLi...</li>
<li><a
href="e8efbf02ee"><code>e8efbf0</code></a>
23.11.0</li>
<li><a
href="52419b7bbf"><code>52419b7</code></a>
release</li>
<li><a
href="3735a89d89"><code>3735a89</code></a>
Fix typing performance regression (<a
href="https://redirect.github.com/i18next/i18next/issues/2166">#2166</a>)</li>
<li><a
href="0949a2bb76"><code>0949a2b</code></a>
fix: log error when Intl.PluralRules error (<a
href="https://redirect.github.com/i18next/i18next/issues/2155">#2155</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/i18next/i18next/compare/v23.10.0...v23.11.2">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[postcss-preset-mantine](https://github.com/mantinedev/postcss-preset-mantine)
from 1.13.0 to 1.14.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/mantinedev/postcss-preset-mantine/commits">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@testing-library/react](https://github.com/testing-library/react-testing-library)
from 14.3.0 to 15.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/testing-library/react-testing-library/releases"><code>@testing-library/react</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v15.0.0</h2>
<h1><a
href="https://github.com/testing-library/react-testing-library/compare/v14.3.0...v15.0.0">15.0.0</a>
(2024-04-10)</h1>
<h3>Release</h3>
<ul>
<li>15.0.0 (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1295">#1295</a>)
(<a
href="787cb85f8b">787cb85</a>)</li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Minimum supported Node.js version is 18.0</li>
<li>New version of <code>@testing-library/dom</code> changes various
roles. Check out the changed tests in <a
href="2c570553d8</a>
to get an overview about what changed.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="787cb85f8b"><code>787cb85</code></a>
Release: 15.0.0 (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1295">#1295</a>)</li>
<li>See full diff in <a
href="https://github.com/testing-library/react-testing-library/compare/v14.3.0...v15.0.0">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
from 20.11.5 to 20.12.5.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[eslint-config-mantine](https://github.com/mantinedev/eslint-config-mantine)
from 3.1.0 to 3.2.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/mantinedev/eslint-config-mantine/commits">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [@hello-pangea/dnd](https://github.com/hello-pangea/dnd) from
16.5.0 to 16.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hello-pangea/dnd/releases"><code>@hello-pangea/dnd</code>'s
releases</a>.</em></p>
<blockquote>
<h2>Release 16.6.0</h2>
<h2><a
href="https://github.com/hello-pangea/dnd/compare/v16.5.0...v16.6.0">16.6.0</a>
(2024-03-24)</h2>
<h3>Others 🔧</h3>
<ul>
<li><strong>deps-dev:</strong> bump follow-redirects from 1.15.5 to
1.15.6 (<a
href="6d179e7360">6d179e7</a>)</li>
<li><strong>deps:</strong> bump <code>@babel/runtime</code> to ^7.24.1
(<a
href="7c1ebdc153">7c1ebdc</a>)</li>
<li><strong>deps:</strong> update dependency node to v20.11.1 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/724">#724</a>)
(<a
href="4f9d0fb836">4f9d0fb</a>)</li>
<li><strong>dev-deps:</strong> bump @atlaskit/* (<a
href="a084659fd4">a084659</a>)</li>
<li><strong>dev-deps:</strong> bump @babel/* and drop proposals (<a
href="6887cc7e6f">6887cc7</a>)</li>
<li><strong>dev-deps:</strong> bump @commitlint/* (<a
href="ea17ec5445">ea17ec5</a>)</li>
<li><strong>dev-deps:</strong> bump @testing-library/* (<a
href="b44585ad3d">b44585a</a>)</li>
<li><strong>dev-deps:</strong> bump @types/* (<a
href="66867943d4">6686794</a>)</li>
<li><strong>dev-deps:</strong> bump cypress to 13.7.1 (<a
href="af4cccfe3b">af4cccf</a>)</li>
<li><strong>dev-deps:</strong> bump eslint packages (<a
href="e66821e9a2">e66821e</a>)</li>
<li><strong>dev-deps:</strong> bump express to 4.19.1 (<a
href="867e1611ae">867e161</a>)</li>
<li><strong>dev-deps:</strong> bump husky to 9.0.11 (<a
href="5ffbd61146">5ffbd61</a>)</li>
<li><strong>dev-deps:</strong> bump lighthouse to 11.7.0 (<a
href="1136f07bc3">1136f07</a>)</li>
<li><strong>dev-deps:</strong> bump markdown-it to 14.1.0 (<a
href="b8b1457f8c">b8b1457</a>)</li>
<li><strong>dev-deps:</strong> bump rollup to 4.13.0 (<a
href="1a2e15a884">1a2e15a</a>)</li>
<li><strong>dev-deps:</strong> bump storybook to v8 (<a
href="f57439ec13">f57439e</a>)</li>
<li><strong>dev-deps:</strong> bump styled-components to 6.1.8 (<a
href="25e3855053">25e3855</a>)</li>
<li><strong>dev-deps:</strong> bump stylelint* (<a
href="b0e79ec739">b0e79ec</a>)</li>
<li><strong>dev-deps:</strong> bump typescript to 5.4.3 (<a
href="3586b4eafb">3586b4e</a>)</li>
<li><strong>dev-deps:</strong> bump webpack to 5.91.0 (<a
href="f261378d8f">f261378</a>)</li>
<li><strong>dev-deps:</strong> install <code>@types/jest</code> (<a
href="c5fdf0ada0">c5fdf0a</a>)</li>
<li><strong>dev-deps:</strong> update all non-major development
dependencies (<a
href="6c6d8a3c8f">6c6d8a3</a>)</li>
<li><strong>dev-deps:</strong> update commitlint monorepo to v18 (<a
href="7f56da023e">7f56da0</a>)</li>
<li><strong>dev-deps:</strong> update commitlint monorepo to v19 (major)
(<a
href="https://redirect.github.com/hello-pangea/dnd/issues/760">#760</a>)
(<a
href="686d2242fa">686d224</a>)</li>
<li><strong>dev-deps:</strong> update dependency
<code>@release-it/conventional-changelog</code> to v8 (<a
href="9d64c5cfd7">9d64c5c</a>)</li>
<li><strong>dev-deps:</strong> update dependency
<code>@testing-library/jest-dom</code> to v6 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/643">#643</a>)
(<a
href="c8b345307c">c8b3453</a>)</li>
<li><strong>dev-deps:</strong> update dependency jsdom to v23 (<a
href="2ee0b6e728">2ee0b6e</a>)</li>
<li><strong>dev-deps:</strong> update dependency jsdom to v24 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/751">#751</a>)
(<a
href="a4187f3f60">a4187f3</a>)</li>
<li><strong>dev-deps:</strong> update dependency markdown-it to v14 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/739">#739</a>)
(<a
href="eb6709c41e">eb6709c</a>)</li>
<li><strong>dev-deps:</strong> update dependency release-it to v17 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/713">#713</a>)
(<a
href="3a718dbe4c">3a718db</a>)</li>
<li><strong>dev-deps:</strong> update dependency rollup to v4 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/693">#693</a>)
(<a
href="d61fe02cf1">d61fe02</a>)</li>
<li><strong>dev-deps:</strong> update dependency rollup-plugin-dts to v6
(<a
href="https://redirect.github.com/hello-pangea/dnd/issues/646">#646</a>)
(<a
href="22fe6eb1b0">22fe6eb</a>)</li>
<li><strong>dev-deps:</strong> update dependency stylelint to v16.3.0
(<a
href="6abdf00c3f">6abdf00</a>)</li>
<li><strong>dev-deps:</strong> update pnpm (<a
href="c4a99dd615">c4a99dd</a>)</li>
<li><strong>dev-deps:</strong> update typescript-eslint monorepo to v7
(major) (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/753">#753</a>)
(<a
href="e4330ad54c">e4330ad</a>)</li>
</ul>
<h3>CI 🛠</h3>
<ul>
<li>update actions/cache action to v4 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/752">#752</a>)
(<a
href="5c51a758e4">5c51a75</a>)</li>
<li>update browser-tools orb to v1.4.8 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/754">#754</a>)
(<a
href="41f0aa9378">41f0aa9</a>)</li>
<li>update chromaui/action action to v11 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/757">#757</a>)
(<a
href="3805e42fc2">3805e42</a>)</li>
<li>update Node.js to v20.11.1 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/725">#725</a>)
(<a
href="b27e11c9ff">b27e11c</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hello-pangea/dnd/blob/main/CHANGELOG.md"><code>@hello-pangea/dnd</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/hello-pangea/dnd/compare/v16.5.0...v16.6.0">16.6.0</a>
(2024-03-24)</h2>
<h3>Others 🔧</h3>
<ul>
<li><strong>deps-dev:</strong> bump follow-redirects from 1.15.5 to
1.15.6 (<a
href="6d179e7360">6d179e7</a>)</li>
<li><strong>deps:</strong> bump <code>@babel/runtime</code> to ^7.24.1
(<a
href="7c1ebdc153">7c1ebdc</a>)</li>
<li><strong>deps:</strong> update dependency node to v20.11.1 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/724">#724</a>)
(<a
href="4f9d0fb836">4f9d0fb</a>)</li>
<li><strong>dev-deps:</strong> bump @atlaskit/* (<a
href="a084659fd4">a084659</a>)</li>
<li><strong>dev-deps:</strong> bump @babel/* and drop proposals (<a
href="6887cc7e6f">6887cc7</a>)</li>
<li><strong>dev-deps:</strong> bump @commitlint/* (<a
href="ea17ec5445">ea17ec5</a>)</li>
<li><strong>dev-deps:</strong> bump @testing-library/* (<a
href="b44585ad3d">b44585a</a>)</li>
<li><strong>dev-deps:</strong> bump @types/* (<a
href="66867943d4">6686794</a>)</li>
<li><strong>dev-deps:</strong> bump cypress to 13.7.1 (<a
href="af4cccfe3b">af4cccf</a>)</li>
<li><strong>dev-deps:</strong> bump eslint packages (<a
href="e66821e9a2">e66821e</a>)</li>
<li><strong>dev-deps:</strong> bump express to 4.19.1 (<a
href="867e1611ae">867e161</a>)</li>
<li><strong>dev-deps:</strong> bump husky to 9.0.11 (<a
href="5ffbd61146">5ffbd61</a>)</li>
<li><strong>dev-deps:</strong> bump lighthouse to 11.7.0 (<a
href="1136f07bc3">1136f07</a>)</li>
<li><strong>dev-deps:</strong> bump markdown-it to 14.1.0 (<a
href="b8b1457f8c">b8b1457</a>)</li>
<li><strong>dev-deps:</strong> bump rollup to 4.13.0 (<a
href="1a2e15a884">1a2e15a</a>)</li>
<li><strong>dev-deps:</strong> bump storybook to v8 (<a
href="f57439ec13">f57439e</a>)</li>
<li><strong>dev-deps:</strong> bump styled-components to 6.1.8 (<a
href="25e3855053">25e3855</a>)</li>
<li><strong>dev-deps:</strong> bump stylelint* (<a
href="b0e79ec739">b0e79ec</a>)</li>
<li><strong>dev-deps:</strong> bump typescript to 5.4.3 (<a
href="3586b4eafb">3586b4e</a>)</li>
<li><strong>dev-deps:</strong> bump webpack to 5.91.0 (<a
href="f261378d8f">f261378</a>)</li>
<li><strong>dev-deps:</strong> install <code>@types/jest</code> (<a
href="c5fdf0ada0">c5fdf0a</a>)</li>
<li><strong>dev-deps:</strong> update all non-major development
dependencies (<a
href="6c6d8a3c8f">6c6d8a3</a>)</li>
<li><strong>dev-deps:</strong> update commitlint monorepo to v18 (<a
href="7f56da023e">7f56da0</a>)</li>
<li><strong>dev-deps:</strong> update commitlint monorepo to v19 (major)
(<a
href="https://redirect.github.com/hello-pangea/dnd/issues/760">#760</a>)
(<a
href="686d2242fa">686d224</a>)</li>
<li><strong>dev-deps:</strong> update dependency
<code>@release-it/conventional-changelog</code> to v8 (<a
href="9d64c5cfd7">9d64c5c</a>)</li>
<li><strong>dev-deps:</strong> update dependency
<code>@testing-library/jest-dom</code> to v6 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/643">#643</a>)
(<a
href="c8b345307c">c8b3453</a>)</li>
<li><strong>dev-deps:</strong> update dependency jsdom to v23 (<a
href="2ee0b6e728">2ee0b6e</a>)</li>
<li><strong>dev-deps:</strong> update dependency jsdom to v24 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/751">#751</a>)
(<a
href="a4187f3f60">a4187f3</a>)</li>
<li><strong>dev-deps:</strong> update dependency markdown-it to v14 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/739">#739</a>)
(<a
href="eb6709c41e">eb6709c</a>)</li>
<li><strong>dev-deps:</strong> update dependency release-it to v17 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/713">#713</a>)
(<a
href="3a718dbe4c">3a718db</a>)</li>
<li><strong>dev-deps:</strong> update dependency rollup to v4 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/693">#693</a>)
(<a
href="d61fe02cf1">d61fe02</a>)</li>
<li><strong>dev-deps:</strong> update dependency rollup-plugin-dts to v6
(<a
href="https://redirect.github.com/hello-pangea/dnd/issues/646">#646</a>)
(<a
href="22fe6eb1b0">22fe6eb</a>)</li>
<li><strong>dev-deps:</strong> update dependency stylelint to v16.3.0
(<a
href="6abdf00c3f">6abdf00</a>)</li>
<li><strong>dev-deps:</strong> update pnpm (<a
href="c4a99dd615">c4a99dd</a>)</li>
<li><strong>dev-deps:</strong> update typescript-eslint monorepo to v7
(major) (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/753">#753</a>)
(<a
href="e4330ad54c">e4330ad</a>)</li>
</ul>
<h3>CI 🛠</h3>
<ul>
<li>update actions/cache action to v4 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/752">#752</a>)
(<a
href="5c51a758e4">5c51a75</a>)</li>
<li>update browser-tools orb to v1.4.8 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/754">#754</a>)
(<a
href="41f0aa9378">41f0aa9</a>)</li>
<li>update chromaui/action action to v11 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/757">#757</a>)
(<a
href="3805e42fc2">3805e42</a>)</li>
<li>update Node.js to v20.11.1 (<a
href="https://redirect.github.com/hello-pangea/dnd/issues/725">#725</a>)
(<a
href="b27e11c9ff">b27e11c</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8f8cc78517"><code>8f8cc78</code></a>
chore: release 16.6.0</li>
<li><a
href="6d179e7360"><code>6d179e7</code></a>
chore(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6</li>
<li><a
href="6abdf00c3f"><code>6abdf00</code></a>
chore(dev-deps): update dependency stylelint to v16.3.0</li>
<li><a
href="f57439ec13"><code>f57439e</code></a>
chore(dev-deps): bump storybook to v8</li>
<li><a
href="b8b1457f8c"><code>b8b1457</code></a>
chore(dev-deps): bump markdown-it to 14.1.0</li>
<li><a
href="f261378d8f"><code>f261378</code></a>
chore(dev-deps): bump webpack to 5.91.0</li>
<li><a
href="b0e79ec739"><code>b0e79ec</code></a>
chore(dev-deps): bump stylelint*</li>
<li><a
href="25e3855053"><code>25e3855</code></a>
chore(dev-deps): bump styled-components to 6.1.8</li>
<li><a
href="3586b4eafb"><code>3586b4e</code></a>
chore(dev-deps): bump typescript to 5.4.3</li>
<li><a
href="1a2e15a884"><code>1a2e15a</code></a>
chore(dev-deps): bump rollup to 4.13.0</li>
<li>Additional commits viewable in <a
href="https://github.com/hello-pangea/dnd/compare/v16.5.0...v16.6.0">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>