Commit Graph

294 Commits

Author SHA1 Message Date
dependabot[bot]
10ee24f71e Bump @mantine/dates from 7.6.0 to 7.9.0 in /frontend (#713)
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) =&gt; ({
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;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
&lt;/tr&gt;&lt;/table&gt;
</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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/dates&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.9.0)](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>
2024-05-08 08:24:22 +02:00
Erik Vroon
e85d71803e New Crowdin updates (#712) 2024-05-08 08:23:58 +02:00
Erik Vroon
1a8ed103c4 Increase minimal standings table width 2024-05-07 22:28:03 +02:00
Erik Vroon
cee3fe5fa8 Fix empty elo score display (#711) 2024-05-07 22:18:14 +02:00
Erik Vroon
a1f850f8d6 Group teams by stage items (#710) 2024-05-07 22:12:10 +02:00
Erik Vroon
742298c562 Handle no matches on dashboard (#709) 2024-05-07 21:22:58 +02:00
Erik Vroon
ffa1f874be Fix bug with null starttimes (#708) 2024-05-07 20:31:29 +02:00
dependabot[bot]
c141fd2cd0 Bump eslint-plugin-jest from 28.4.0 to 28.5.0 in /frontend (#707)
Bumps
[eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)
from 28.4.0 to 28.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/releases">eslint-plugin-jest's
releases</a>.</em></p>
<blockquote>
<h2>v28.5.0</h2>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.4.0...v28.5.0">28.5.0</a>
(2024-05-03)</h1>
<h3>Features</h3>
<ul>
<li>allow <code>@typescript-eslint/utils</code> v7 as a direct
dependency (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1567">#1567</a>)
(<a
href="1476f10d39">1476f10</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md">eslint-plugin-jest's
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.4.0...v28.5.0">28.5.0</a>
(2024-05-03)</h1>
<h3>Features</h3>
<ul>
<li>allow <code>@typescript-eslint/utils</code> v7 as a direct
dependency (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1567">#1567</a>)
(<a
href="1476f10d39">1476f10</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a6e50819d2"><code>a6e5081</code></a>
chore(release): 28.5.0 [skip ci]</li>
<li><a
href="1476f10d39"><code>1476f10</code></a>
feat: allow <code>@typescript-eslint/utils</code> v7 as a direct
dependency (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1567">#1567</a>)</li>
<li>See full diff in <a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.4.0...v28.5.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-jest&package-manager=npm_and_yarn&previous-version=28.4.0&new-version=28.5.0)](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>
2024-05-06 07:41:25 +02:00
dependabot[bot]
2a1a933b8c Bump @mantine/notifications from 7.6.0 to 7.9.0 in /frontend (#704)
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) =&gt; ({
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;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
&lt;/tr&gt;&lt;/table&gt;
</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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/notifications&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.9.0)](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>
2024-05-06 07:40:33 +02:00
Erik Vroon
808349496d Dashboard redesign (#703) 2024-05-05 21:25:42 +02:00
Erik Vroon
28cc472b6a New Crowdin updates (#702) 2024-05-05 14:23:28 +02:00
Erik Vroon
0e4df8dcb5 Handle foreign key on stage items (#701)
fix https://github.com/evroon/bracket/issues/629
2024-05-05 10:50:09 +02:00
Erik Vroon
295809ef61 Add language selector (#700)
fix https://github.com/evroon/bracket/issues/499
2024-05-05 10:36:03 +02:00
Erik Vroon
24f04fbaa0 Improve round robing handling (#699)
fix https://github.com/evroon/bracket/issues/695
2024-05-05 09:35:06 +02:00
Erik Vroon
3fd3825265 New Crowdin updates (#684) 2024-05-03 22:23:41 +02:00
Erik Vroon
19a617fa2f Fix upcoming matches table (#687)
This fixes a few small bugs related to upcoming matches for swiss
2024-05-03 22:20:41 +02:00
dependabot[bot]
a642fc3e30 Bump @mantine/form from 7.8.0 to 7.9.0 in /frontend (#681)
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) =&gt; ({
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;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
&lt;/tr&gt;&lt;/table&gt;
</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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/form&package-manager=npm_and_yarn&previous-version=7.8.0&new-version=7.9.0)](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>
2024-05-03 08:12:17 +02:00
dependabot[bot]
4051f31aa7 Bump eslint-plugin-jest from 28.3.0 to 28.4.0 in /frontend (#680)
Bumps
[eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)
from 28.3.0 to 28.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/releases">eslint-plugin-jest's
releases</a>.</em></p>
<blockquote>
<h2>v28.4.0</h2>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.3.0...v28.4.0">28.4.0</a>
(2024-05-03)</h1>
<h3>Features</h3>
<ul>
<li><strong>valid-expect:</strong> supporting automatically fixing
missing <code>await</code> in some cases (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1574">#1574</a>)
(<a
href="a40709833c">a407098</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md">eslint-plugin-jest's
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.3.0...v28.4.0">28.4.0</a>
(2024-05-03)</h1>
<h3>Features</h3>
<ul>
<li><strong>valid-expect:</strong> supporting automatically fixing
missing <code>await</code> in some cases (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1574">#1574</a>)
(<a
href="a40709833c">a407098</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="27f7e74bd4"><code>27f7e74</code></a>
chore(release): 28.4.0 [skip ci]</li>
<li><a
href="a40709833c"><code>a407098</code></a>
feat(valid-expect): supporting automatically fixing missing
<code>await</code> in some c...</li>
<li><a
href="f47cc3c8d7"><code>f47cc3c</code></a>
refactor: remove unneeded <code>as const</code>s (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1578">#1578</a>)</li>
<li><a
href="6c1f921598"><code>6c1f921</code></a>
refactor(prefer-lowercase-title): remove unneeded cast (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1577">#1577</a>)</li>
<li><a
href="aac5f03652"><code>aac5f03</code></a>
refactor(prefer-importing-jest-globals): use <code>AST_NODE_TYPES</code>
constant instea...</li>
<li><a
href="df3202f5e3"><code>df3202f</code></a>
chore(deps): update yarn to v3.8.2 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1575">#1575</a>)</li>
<li><a
href="8001fe7659"><code>8001fe7</code></a>
chore(deps): lock file maintenance</li>
<li>See full diff in <a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.3.0...v28.4.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-jest&package-manager=npm_and_yarn&previous-version=28.3.0&new-version=28.4.0)](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>
2024-05-03 08:12:01 +02:00
dependabot[bot]
8645da27ef Bump react-icons from 5.1.0 to 5.2.0 in /frontend (#678)
Bumps [react-icons](https://github.com/react-icons/react-icons) from
5.1.0 to 5.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/react-icons/react-icons/releases">react-icons's
releases</a>.</em></p>
<blockquote>
<h2>v5.2.0</h2>
<h2>What's Changed</h2>
<ul>
<li>remove data-* attributes by <a
href="https://github.com/kamijin-fanta"><code>@​kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/936">react-icons/react-icons#936</a></li>
<li>icons version up 2024-04-30 by <a
href="https://github.com/kamijin-fanta"><code>@​kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/937">react-icons/react-icons#937</a></li>
<li>update lerna by <a
href="https://github.com/kamijin-fanta"><code>@​kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/938">react-icons/react-icons#938</a></li>
<li>Update pacakges by <a
href="https://github.com/kamijin-fanta"><code>@​kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/939">react-icons/react-icons#939</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/react-icons/react-icons/compare/v5.1.0...v5.2.0">https://github.com/react-icons/react-icons/compare/v5.1.0...v5.2.0</a></p>
<table>
<thead>
<tr>
<th>Icon Library</th>
<th>License</th>
<th>Version</th>
<th align="right">Count</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://circumicons.com/">Circum Icons</a></td>
<td><a
href="https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE">MPL-2.0
license</a></td>
<td>1.0.0</td>
<td align="right">288</td>
</tr>
<tr>
<td><a href="https://fontawesome.com/">Font Awesome 5</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0
License</a></td>
<td>5.15.4-3-gafecf2a</td>
<td align="right">1612</td>
</tr>
<tr>
<td><a href="https://fontawesome.com/">Font Awesome 6</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0
License</a></td>
<td>6.5.2</td>
<td align="right">2045</td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 4</a></td>
<td><a
href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>4.6.3</td>
<td align="right">696</td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 5</a></td>
<td><a
href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>5.5.4</td>
<td align="right">1332</td>
</tr>
<tr>
<td><a href="http://google.github.io/material-design-icons/">Material
Design icons</a></td>
<td><a
href="https://github.com/google/material-design-icons/blob/master/LICENSE">Apache
License Version 2.0</a></td>
<td>4.0.0-98-g9beae745bb</td>
<td align="right">4341</td>
</tr>
<tr>
<td><a href="http://s-ings.com/typicons/">Typicons</a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA
3.0</a></td>
<td>2.1.2</td>
<td align="right">336</td>
</tr>
<tr>
<td><a href="https://octicons.github.com/">Github Octicons
icons</a></td>
<td><a
href="https://github.com/primer/octicons/blob/master/LICENSE">MIT</a></td>
<td>18.3.0</td>
<td align="right">264</td>
</tr>
<tr>
<td><a href="https://feathericons.com/">Feather</a></td>
<td><a
href="https://github.com/feathericons/feather/blob/master/LICENSE">MIT</a></td>
<td>4.29.1</td>
<td align="right">287</td>
</tr>
<tr>
<td><a href="https://lucide.dev/">Lucide</a></td>
<td><a
href="https://github.com/lucide-icons/lucide/blob/main/LICENSE">ISC</a></td>
<td>v5.2.0</td>
<td align="right">1215</td>
</tr>
<tr>
<td><a href="https://game-icons.net/">Game Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/3.0/">CC BY
3.0</a></td>
<td>12920d6565588f0512542a3cb0cdfd36a497f910</td>
<td align="right">4040</td>
</tr>
<tr>
<td><a href="https://erikflowers.github.io/weather-icons/">Weather
Icons</a></td>
<td><a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a></td>
<td>2.0.12</td>
<td align="right">219</td>
</tr>
<tr>
<td><a href="https://vorillaz.github.io/devicons/">Devicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.8.0</td>
<td align="right">192</td>
</tr>
<tr>
<td><a href="https://github.com/ant-design/ant-design-icons">Ant Design
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>4.4.2</td>
<td align="right">831</td>
</tr>
<tr>
<td><a href="https://github.com/twbs/icons">Bootstrap Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.11.3</td>
<td align="right">2716</td>
</tr>
<tr>
<td><a href="https://github.com/Remix-Design/RemixIcon">Remix
Icon</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version
2.0</a></td>
<td>4.2.0</td>
<td align="right">2860</td>
</tr>
<tr>
<td><a href="https://github.com/icons8/flat-color-icons">Flat Color
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.2</td>
<td align="right">329</td>
</tr>
<tr>
<td><a
href="https://github.com/grommet/grommet-icons">Grommet-Icons</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version
2.0</a></td>
<td>4.12.1</td>
<td align="right">635</td>
</tr>
<tr>
<td><a
href="https://github.com/tailwindlabs/heroicons">Heroicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.6</td>
<td align="right">460</td>
</tr>
<tr>
<td><a href="https://github.com/tailwindlabs/heroicons">Heroicons
2</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.1.3</td>
<td align="right">888</td>
</tr>
<tr>
<td><a href="https://simpleicons.org/">Simple Icons</a></td>
<td><a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0
Universal</a></td>
<td>11.14.0</td>
<td align="right">3124</td>
</tr>
<tr>
<td><a href="https://thesabbir.github.io/simple-line-icons/">Simple Line
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.5.5</td>
<td align="right">189</td>
</tr>
<tr>
<td><a href="https://github.com/Keyamoon/IcoMoon-Free">IcoMoon
Free</a></td>
<td><a
href="https://github.com/Keyamoon/IcoMoon-Free/blob/master/License.txt">CC
BY 4.0 License</a></td>
<td>d006795ede82361e1bac1ee76f215cf1dc51e4ca</td>
<td align="right">491</td>
</tr>
<tr>
<td><a href="https://github.com/atisawd/boxicons">BoxIcons</a></td>
<td><a
href="https://github.com/atisawd/boxicons/blob/master/LICENSE">MIT</a></td>
<td>2.1.4</td>
<td align="right">1634</td>
</tr>
<tr>
<td><a href="https://github.com/astrit/css.gg">css.gg</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.1.1</td>
<td align="right">704</td>
</tr>
<tr>
<td><a href="https://github.com/microsoft/vscode-codicons">VS Code
Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY
4.0</a></td>
<td>0.0.35</td>
<td align="right">461</td>
</tr>
<tr>
<td><a href="https://github.com/tabler/tabler-icons">Tabler
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>3.2.0</td>
<td align="right">5237</td>
</tr>
<tr>
<td><a href="https://github.com/lykmapipo/themify-icons">Themify
Icons</a></td>
<td><a
href="https://github.com/thecreation/standard-icons/blob/master/modules/themify-icons/LICENSE">MIT</a></td>
<td>v0.1.2-2-g9600186</td>
<td align="right">352</td>
</tr>
<tr>
<td><a href="https://icons.radix-ui.com">Radix Icons</a></td>
<td><a
href="https://github.com/radix-ui/icons/blob/master/LICENSE">MIT</a></td>
<td>@radix-ui/<a
href="mailto:react-icons@1.3.0-1-g94b3fcf">react-icons@1.3.0-1-g94b3fcf</a></td>
<td align="right">318</td>
</tr>
<tr>
<td><a href="https://github.com/phosphor-icons/core">Phosphor
Icons</a></td>
<td><a
href="https://github.com/phosphor-icons/core/blob/main/LICENSE">MIT</a></td>
<td>2.1.1</td>
<td align="right">9072</td>
</tr>
<tr>
<td><a href="https://icons8.com/line-awesome">Icons8 Line
Awesome</a></td>
<td><a
href="https://github.com/icons8/line-awesome/blob/master/LICENSE.md">MIT</a></td>
<td>1.3.1</td>
<td align="right">1544</td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4fb5f38040"><code>4fb5f38</code></a>
fix env in actions</li>
<li><a
href="0cab427454"><code>0cab427</code></a>
pass token to gh cli</li>
<li><a
href="36fb415699"><code>36fb415</code></a>
v5.2.0</li>
<li><a
href="8db68a9398"><code>8db68a9</code></a>
generate release notes in actions</li>
<li><a
href="b385ec1763"><code>b385ec1</code></a>
update readme</li>
<li><a
href="ad5e9f6ba4"><code>ad5e9f6</code></a>
Update pacakges (<a
href="https://redirect.github.com/react-icons/react-icons/issues/939">#939</a>)</li>
<li><a
href="ef2c902c60"><code>ef2c902</code></a>
update lerna (<a
href="https://redirect.github.com/react-icons/react-icons/issues/938">#938</a>)</li>
<li><a
href="1981a3eb0f"><code>1981a3e</code></a>
icons version up 2024-04-30 (<a
href="https://redirect.github.com/react-icons/react-icons/issues/937">#937</a>)</li>
<li><a
href="96fca7341e"><code>96fca73</code></a>
remove data-* attributes (<a
href="https://redirect.github.com/react-icons/react-icons/issues/936">#936</a>)</li>
<li><a
href="3a6e45b99e"><code>3a6e45b</code></a>
vscode settings</li>
<li>See full diff in <a
href="https://github.com/react-icons/react-icons/compare/v5.1.0...v5.2.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-icons&package-manager=npm_and_yarn&previous-version=5.1.0&new-version=5.2.0)](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>
2024-05-01 08:05:08 +02:00
dependabot[bot]
2c3960c515 Bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.8.0 in /frontend (#674)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.7.0 to 7.8.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.8.0</h2>
<h2>7.8.0 (2024-04-29)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>rule-tester:</strong> assert suggestion messages are unique
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8995">#8995</a>)</li>
<li><strong>typescript-estree:</strong> add
maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles
glob restrictions (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8925">#8925</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unsafe-argument] handle tagged
templates (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8746">#8746</a>)</li>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] suggests
optional chaining during strict null equality check (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8717">#8717</a>)</li>
<li><strong>eslint-plugin:</strong> [consistent-type-assertions] handle
tagged templates (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8993">#8993</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unsafe-return] handle union
types (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9001">#9001</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unused-vars] clear error report
range (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8640">#8640</a>)</li>
<li><strong>utils:</strong> export ESLint backwards-compat functions (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8976">#8976</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Josh Goldberg </li>
<li>jsfm01 <a
href="https://github.com/jsfm01"><code>@​jsfm01</code></a></li>
<li>Kim Sang Du <a
href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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>
<h2>v7.7.1</h2>
<h2>7.7.1 (2024-04-22)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unsafe-assignment] handle
shorthand property assignment (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8800">#8800</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-type] fix
checking wrong ancestor's return type (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8809">#8809</a>)</li>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] only look at
left operand for <code>requireNullish</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8559">#8559</a>)</li>
<li><strong>eslint-plugin:</strong> [no-for-in-array] refine report
location (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8874">#8874</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
allow non-null assertion for void type (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8912">#8912</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Kirk Waiblinger <a
href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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.8.0 (2024-04-29)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [no-unsafe-argument] handle tagged
templates</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [prefer-optional-chain] suggests
optional chaining during strict null equality check</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [consistent-type-assertions] handle
tagged templates</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unsafe-return] handle union
types</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unused-vars] clear error report
range</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred</li>
<li>Josh Goldberg </li>
<li>jsfm01</li>
<li>Kim Sang Du</li>
<li>YeonJuan</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>
<h2>7.7.1 (2024-04-22)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [no-unsafe-assignment] handle
shorthand property assignment</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [explicit-function-return-type] fix
checking wrong ancestor's return type</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [prefer-optional-chain] only look at
left operand for <code>requireNullish</code></p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-for-in-array] refine report
location</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion] allow
non-null assertion for void type</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Kirk Waiblinger</li>
<li>YeonJuan</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="ee677f6f67"><code>ee677f6</code></a>
chore(release): publish 7.8.0</li>
<li><a
href="8127873136"><code>8127873</code></a>
fix(eslint-plugin): [no-unused-vars] clear error report range (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8640">#8640</a>)</li>
<li><a
href="216d1b060e"><code>216d1b0</code></a>
fix(eslint-plugin): [no-unsafe-return] handle union types (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/9001">#9001</a>)</li>
<li><a
href="51d21931e3"><code>51d2193</code></a>
fix(eslint-plugin): [consistent-type-assertions] handle tagged templates
(<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8993">#8993</a>)</li>
<li><a
href="4bed24d8d3"><code>4bed24d</code></a>
fix(eslint-plugin): [prefer-optional-chain] suggests optional chaining
during...</li>
<li><a
href="b0f7aa4695"><code>b0f7aa4</code></a>
fix(eslint-plugin): [no-unsafe-argument] handle tagged templates (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8746">#8746</a>)</li>
<li><a
href="219b841206"><code>219b841</code></a>
chore: resolve lint issues on main branch (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8966">#8966</a>)</li>
<li><a
href="3e19436e83"><code>3e19436</code></a>
chore(release): publish 7.7.1</li>
<li><a
href="b2552caecd"><code>b2552ca</code></a>
fix(eslint-plugin): [no-unnecessary-type-assertion] allow non-null
assertion ...</li>
<li><a
href="fdeba42307"><code>fdeba42</code></a>
fix(eslint-plugin): [no-for-in-array] refine report location (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8874">#8874</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.8.0/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=7.7.0&new-version=7.8.0)](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>
2024-04-30 08:56:41 +02:00
dependabot[bot]
61b300565f Bump @testing-library/dom from 10.0.0 to 10.1.0 in /frontend (#675)
Bumps
[@testing-library/dom](https://github.com/testing-library/dom-testing-library)
from 10.0.0 to 10.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/testing-library/dom-testing-library/releases"><code>@​testing-library/dom</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v10.1.0</h2>
<h1><a
href="https://github.com/testing-library/dom-testing-library/compare/v10.0.0...v10.1.0">10.1.0</a>
(2024-04-29)</h1>
<h3>Features</h3>
<ul>
<li>Add window events &quot;pagehide&quot; / &quot;pageshow&quot; (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1308">#1308</a>)
(<a
href="56543d51a8">56543d5</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="56543d51a8"><code>56543d5</code></a>
feat: Add window events &quot;pagehide&quot; / &quot;pageshow&quot; (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1308">#1308</a>)</li>
<li><a
href="47fe879f57"><code>47fe879</code></a>
chore: correct some typos and spelling errors (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1309">#1309</a>)</li>
<li><a
href="791735855b"><code>7917358</code></a>
docs: update reproduction link (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1304">#1304</a>)</li>
<li><a
href="5c7f2e8367"><code>5c7f2e8</code></a>
docs: add jlp-craigmorten as a contributor for question (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1298">#1298</a>)</li>
<li><a
href="e1dbb55222"><code>e1dbb55</code></a>
test: Stop running with unsupported Node.js versions (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1296">#1296</a>)</li>
<li>See full diff in <a
href="https://github.com/testing-library/dom-testing-library/compare/v10.0.0...v10.1.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@testing-library/dom&package-manager=npm_and_yarn&previous-version=10.0.0&new-version=10.1.0)](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>
2024-04-30 08:42:42 +02:00
dependabot[bot]
57be8ff267 Bump @typescript-eslint/parser from 7.7.0 to 7.8.0 in /frontend (#673)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.7.0 to 7.8.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.8.0</h2>
<h2>7.8.0 (2024-04-29)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>rule-tester:</strong> assert suggestion messages are unique
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8995">#8995</a>)</li>
<li><strong>typescript-estree:</strong> add
maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles
glob restrictions (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8925">#8925</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unsafe-argument] handle tagged
templates (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8746">#8746</a>)</li>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] suggests
optional chaining during strict null equality check (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8717">#8717</a>)</li>
<li><strong>eslint-plugin:</strong> [consistent-type-assertions] handle
tagged templates (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8993">#8993</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unsafe-return] handle union
types (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9001">#9001</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unused-vars] clear error report
range (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8640">#8640</a>)</li>
<li><strong>utils:</strong> export ESLint backwards-compat functions (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8976">#8976</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Josh Goldberg </li>
<li>jsfm01 <a
href="https://github.com/jsfm01"><code>@​jsfm01</code></a></li>
<li>Kim Sang Du <a
href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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>
<h2>v7.7.1</h2>
<h2>7.7.1 (2024-04-22)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unsafe-assignment] handle
shorthand property assignment (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8800">#8800</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-type] fix
checking wrong ancestor's return type (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8809">#8809</a>)</li>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] only look at
left operand for <code>requireNullish</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8559">#8559</a>)</li>
<li><strong>eslint-plugin:</strong> [no-for-in-array] refine report
location (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8874">#8874</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
allow non-null assertion for void type (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8912">#8912</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Kirk Waiblinger <a
href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.8.0 (2024-04-29)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<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>
<h2>7.7.1 (2024-04-22)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<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="ee677f6f67"><code>ee677f6</code></a>
chore(release): publish 7.8.0</li>
<li><a
href="3e19436e83"><code>3e19436</code></a>
chore(release): publish 7.7.1</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.8.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.7.0&new-version=7.8.0)](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>
2024-04-30 08:42:17 +02:00
dependabot[bot]
c5e8c5abd5 Bump eslint-plugin-jest from 28.2.0 to 28.3.0 in /frontend (#668)
Bumps
[eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)
from 28.2.0 to 28.3.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/releases">eslint-plugin-jest's
releases</a>.</em></p>
<blockquote>
<h2>v28.3.0</h2>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.2.0...v28.3.0">28.3.0</a>
(2024-04-27)</h1>
<h3>Features</h3>
<ul>
<li>prefer importing jest globals for specific types (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1568">#1568</a>)
(<a
href="c464ae311b">c464ae3</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md">eslint-plugin-jest's
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.2.0...v28.3.0">28.3.0</a>
(2024-04-27)</h1>
<h3>Features</h3>
<ul>
<li>prefer importing jest globals for specific types (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1568">#1568</a>)
(<a
href="c464ae311b">c464ae3</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bd6b918f64"><code>bd6b918</code></a>
chore(release): 28.3.0 [skip ci]</li>
<li><a
href="c464ae311b"><code>c464ae3</code></a>
feat: prefer importing jest globals for specific types (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1568">#1568</a>)</li>
<li><a
href="2f21f33011"><code>2f21f33</code></a>
refactor(expect-expect): remove unneeded array (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1571">#1571</a>)</li>
<li><a
href="fe09d8a620"><code>fe09d8a</code></a>
chore: remove <code>eslint</code> v9 as a dev dependency for now (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1569">#1569</a>)</li>
<li><a
href="20c870387c"><code>20c8703</code></a>
ci: test against Node 22 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1565">#1565</a>)</li>
<li><a
href="a63be2a3e3"><code>a63be2a</code></a>
ci: prioritize labelling pull requests based on their title rather than
their...</li>
<li><a
href="589c82baab"><code>589c82b</code></a>
chore(deps): lock file maintenance</li>
<li><a
href="08cbf8dfee"><code>08cbf8d</code></a>
chore: drop the <code>tools</code> from <code>regenerate-docs</code>
command and remove other old r...</li>
<li><a
href="ff36ec206e"><code>ff36ec2</code></a>
test: remove some trailing whitespace (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1560">#1560</a>)</li>
<li><a
href="462e336377"><code>462e336</code></a>
chore(deps): update dependency eslint-plugin-n to v17 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1553">#1553</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.2.0...v28.3.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-jest&package-manager=npm_and_yarn&previous-version=28.2.0&new-version=28.3.0)](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>
2024-04-29 08:38:50 +02:00
dependabot[bot]
f2f35cbde0 Bump postcss-preset-mantine from 1.14.0 to 1.15.0 in /frontend (#667)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postcss-preset-mantine&package-manager=npm_and_yarn&previous-version=1.14.0&new-version=1.15.0)](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>
2024-04-29 08:38:36 +02:00
dependabot[bot]
8a97c91a08 Bump react-dom from 18.2.0 to 18.3.0 in /frontend (#666)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-dom&package-manager=npm_and_yarn&previous-version=18.2.0&new-version=18.3.0)](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>
2024-04-29 08:38:23 +02:00
dependabot[bot]
b061d23a5c Bump react and @types/react in /frontend (#665)
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>
2024-04-26 08:14:10 +02:00
dependabot[bot]
2c37c56a89 Bump @next/eslint-plugin-next from 14.0.4 to 14.2.3 in /frontend (#664)
Bumps
[@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next)
from 14.0.4 to 14.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vercel/next.js/releases"><code>@​next/eslint-plugin-next</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v14.2.3</h2>
<blockquote>
<p>[!NOTE]<br />
This release is backporting bug fixes. It does <strong>not</strong>
include all pending features/changes on canary.</p>
</blockquote>
<h3>Core Changes</h3>
<ul>
<li>Fix: resolve mixed re-exports module as cjs (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64681">#64681</a>)</li>
<li>fix: mixing namespace import and named import client components (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64809">#64809</a>)</li>
<li>Fix mixed exports in server component with barrel optimization (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64894">#64894</a>)</li>
<li>Fix next/image usage in mdx(<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64875">#64875</a>)</li>
<li>fix(fetch-cache): fix additional typo, add type &amp; data
validation (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64799">#64799</a>)</li>
<li>prevent erroneous route interception during lazy fetch (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64692">#64692</a>)</li>
<li>fix root page revalidation when redirecting in a server action (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64730">#64730</a>)</li>
<li>fix: remove traceparent from cachekey should not remove traceparent
from original object (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64727">#64727</a>)</li>
<li>Clean-up fetch metrics tracking (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64746">#64746</a>)</li>
</ul>
<h3>Credits</h3>
<p>Huge thanks to <a
href="https://github.com/huozhi"><code>@​huozhi</code></a>, <a
href="https://github.com/samcx"><code>@​samcx</code></a>, <a
href="https://github.com/ztanner"><code>@​ztanner</code></a>, <a
href="https://github.com/Jeffrey-Zutt"><code>@​Jeffrey-Zutt</code></a>,
and <a href="https://github.com/ijjk"><code>@​ijjk</code></a> for
helping!</p>
<h2>v14.2.2</h2>
<blockquote>
<p>[!NOTE]<br />
This release is backporting bug fixes. It does <strong>not</strong>
include all pending features/changes on canary.</p>
</blockquote>
<h3>Core Changes</h3>
<ul>
<li>Fix Server Action error logs for unhandled POST requests (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64315">#64315</a>)</li>
<li>Improve rendering performance (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64408">#64408</a>)</li>
<li>Fix the method prop case in Server Actions transform (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64398">#64398</a>)</li>
<li>fix(next-lint): update option --report-unused-disable-directives to
--report-unused-disable-directives-severity (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64405">#64405</a>)</li>
<li>tweak test for Azure (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64424">#64424</a>)</li>
<li>router restore should take priority over pending actions (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64449">#64449</a>)</li>
<li>Fix client boundary inheritance for barrel optimization (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64467">#64467</a>)</li>
<li>improve turborepo caching (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64493">#64493</a>)</li>
<li>feat: strip traceparent header from cachekey (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64499">#64499</a>)</li>
<li>Fix more Turbopack build tests</li>
<li>Update lockfile for compatibility with turbo (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64360">#64360</a>)</li>
<li>Fix typo in dynamic-rendering.ts (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64365">#64365</a>)</li>
<li>Fix DynamicServerError not being thrown in fetch (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64511">#64511</a>)</li>
<li>fix(next): Metadata.openGraph values not resolving basic values when
type is set (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/63620">#63620</a>)</li>
<li>disable production chunking in dev (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64488">#64488</a>)</li>
<li>Fix cjs client components tree-shaking (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64558">#64558</a>)</li>
<li>fix refresh behavior for discarded actions (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64532">#64532</a>)</li>
<li>fix: filter out middleware requests in logging (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64549">#64549</a>)</li>
<li>Turbopack: Allow client components to be imported in app routes (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64520">#64520</a>)</li>
<li>Fix ASL bundling for dynamic css (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64451">#64451</a>)</li>
<li>add pathname normalizer for actions (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64592">#64592</a>)</li>
<li>fix incorrect refresh request when basePath is set (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64589">#64589</a>)</li>
<li>test: skip turbopack build test (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64356">#64356</a>)</li>
<li>hotfix(turbopack): Update with patch for postcss.config.js path
resolution on Windows (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/64677">#64677</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2e7a96a1e8"><code>2e7a96a</code></a>
v14.2.3</li>
<li><a
href="c850e4a69a"><code>c850e4a</code></a>
v14.2.2</li>
<li><a
href="c0ae6f6ffd"><code>c0ae6f6</code></a>
v14.2.1</li>
<li><a
href="774563f2b9"><code>774563f</code></a>
v14.2.0</li>
<li><a
href="7aabb1d5ce"><code>7aabb1d</code></a>
v14.2.0-canary.67</li>
<li><a
href="265d7b97ba"><code>265d7b9</code></a>
v14.2.0-canary.66</li>
<li><a
href="22754faff6"><code>22754fa</code></a>
v14.2.0-canary.65</li>
<li><a
href="167ea3382f"><code>167ea33</code></a>
v14.2.0-canary.64</li>
<li><a
href="c289063517"><code>c289063</code></a>
v14.2.0-canary.63</li>
<li><a
href="e46d088aec"><code>e46d088</code></a>
v14.2.0-canary.62</li>
<li>Additional commits viewable in <a
href="https://github.com/vercel/next.js/commits/v14.2.3/packages/eslint-plugin-next">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@next/eslint-plugin-next&package-manager=npm_and_yarn&previous-version=14.0.4&new-version=14.2.3)](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>
2024-04-25 09:06:40 +02:00
dependabot[bot]
a21c8bc597 Bump next-i18next from 15.2.0 to 15.3.0 in /frontend (#659)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=next-i18next&package-manager=npm_and_yarn&previous-version=15.2.0&new-version=15.3.0)](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>
2024-04-18 10:28:25 +02:00
dependabot[bot]
d67e0f4588 Bump next from 14.1.0 to 14.2.2 in /frontend (#661)
Bumps [next](https://github.com/vercel/next.js) from 14.1.0 to 14.2.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vercel/next.js/releases">next's
releases</a>.</em></p>
<blockquote>
<h2>v14.2.2</h2>
<blockquote>
<p>[!NOTE]<br />
This release is backporting bug fixes. It does <strong>not</strong>
include all pending features/changes on canary.</p>
</blockquote>
<h3>Core Changes</h3>
<ul>
<li>Fix Server Action error logs for unhandled POST requests (<a
href="https://redirect.github.com/vercel/next.js/issues/64315">#64315</a>)</li>
<li>Improve rendering performance (<a
href="https://redirect.github.com/vercel/next.js/issues/64408">#64408</a>)</li>
<li>Fix the method prop case in Server Actions transform (<a
href="https://redirect.github.com/vercel/next.js/issues/64398">#64398</a>)</li>
<li>fix(next-lint): update option --report-unused-disable-directives to
--report-unused-disable-directives-severity (<a
href="https://redirect.github.com/vercel/next.js/issues/64405">#64405</a>)</li>
<li>tweak test for Azure (<a
href="https://redirect.github.com/vercel/next.js/issues/64424">#64424</a>)</li>
<li>router restore should take priority over pending actions (<a
href="https://redirect.github.com/vercel/next.js/issues/64449">#64449</a>)</li>
<li>Fix client boundary inheritance for barrel optimization (<a
href="https://redirect.github.com/vercel/next.js/issues/64467">#64467</a>)</li>
<li>improve turborepo caching (<a
href="https://redirect.github.com/vercel/next.js/issues/64493">#64493</a>)</li>
<li>feat: strip traceparent header from cachekey (<a
href="https://redirect.github.com/vercel/next.js/issues/64499">#64499</a>)</li>
<li>Fix more Turbopack build tests</li>
<li>Update lockfile for compatibility with turbo (<a
href="https://redirect.github.com/vercel/next.js/issues/64360">#64360</a>)</li>
<li>Fix typo in dynamic-rendering.ts (<a
href="https://redirect.github.com/vercel/next.js/issues/64365">#64365</a>)</li>
<li>Fix DynamicServerError not being thrown in fetch (<a
href="https://redirect.github.com/vercel/next.js/issues/64511">#64511</a>)</li>
<li>fix(next): Metadata.openGraph values not resolving basic values when
type is set (<a
href="https://redirect.github.com/vercel/next.js/issues/63620">#63620</a>)</li>
<li>disable production chunking in dev (<a
href="https://redirect.github.com/vercel/next.js/issues/64488">#64488</a>)</li>
<li>Fix cjs client components tree-shaking (<a
href="https://redirect.github.com/vercel/next.js/issues/64558">#64558</a>)</li>
<li>fix refresh behavior for discarded actions (<a
href="https://redirect.github.com/vercel/next.js/issues/64532">#64532</a>)</li>
<li>fix: filter out middleware requests in logging (<a
href="https://redirect.github.com/vercel/next.js/issues/64549">#64549</a>)</li>
<li>Turbopack: Allow client components to be imported in app routes (<a
href="https://redirect.github.com/vercel/next.js/issues/64520">#64520</a>)</li>
<li>Fix ASL bundling for dynamic css (<a
href="https://redirect.github.com/vercel/next.js/issues/64451">#64451</a>)</li>
<li>add pathname normalizer for actions (<a
href="https://redirect.github.com/vercel/next.js/issues/64592">#64592</a>)</li>
<li>fix incorrect refresh request when basePath is set (<a
href="https://redirect.github.com/vercel/next.js/issues/64589">#64589</a>)</li>
<li>test: skip turbopack build test (<a
href="https://redirect.github.com/vercel/next.js/issues/64356">#64356</a>)</li>
<li>hotfix(turbopack): Update with patch for postcss.config.js path
resolution on Windows (<a
href="https://redirect.github.com/vercel/next.js/issues/64677">#64677</a>)</li>
</ul>
<h3>Credits</h3>
<p>Huge thanks to <a
href="https://github.com/shuding"><code>@​shuding</code></a>, <a
href="https://github.com/coltonehrman"><code>@​coltonehrman</code></a>,
<a href="https://github.com/ztanner"><code>@​ztanner</code></a>, <a
href="https://github.com/huozhi"><code>@​huozhi</code></a>, <a
href="https://github.com/sokra"><code>@​sokra</code></a>, <a
href="https://github.com/Jeffrey-Zutt"><code>@​Jeffrey-Zutt</code></a>,
<a href="https://github.com/timneutkens"><code>@​timneutkens</code></a>,
<a href="https://github.com/wbinnssmith"><code>@​wbinnssmith</code></a>,
<a href="https://github.com/wiesson"><code>@​wiesson</code></a>, <a
href="https://github.com/ijjk"><code>@​ijjk</code></a>, <a
href="https://github.com/devjiwonchoi"><code>@​devjiwonchoi</code></a>,
and <a href="https://github.com/bgw"><code>@​bgw</code></a> for
helping!</p>
<h2>v14.2.1</h2>
<blockquote>
<p>[!NOTE]<br />
This release is backporting bug fixes. It does <strong>not</strong>
include all pending features/changes on canary.</p>
</blockquote>
<h3>Core Changes</h3>
<ul>
<li>use pathToFileUrl to make esm import()s work with absolute windows
paths (<a
href="https://redirect.github.com/vercel/next.js/issues/64386">#64386</a>)
<a href="https://github.com/sokra"><code>@​sokra</code></a></li>
</ul>
<h3>Credits</h3>
<p>Huge thanks to <a
href="https://github.com/sokra"><code>@​sokra</code></a> for
helping!</p>
<h2>v14.2.1-canary.7</h2>
<h3>Core Changes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c850e4a69a"><code>c850e4a</code></a>
v14.2.2</li>
<li><a
href="a340d9e95e"><code>a340d9e</code></a>
hotfix(turbopack): Update with patch for postcss.config.js path
resolution on...</li>
<li><a
href="6462b74b71"><code>6462b74</code></a>
test: skip turbopack build test (<a
href="https://redirect.github.com/vercel/next.js/issues/64356">#64356</a>)</li>
<li><a
href="12982efaa2"><code>12982ef</code></a>
fix incorrect refresh request when basePath is set (<a
href="https://redirect.github.com/vercel/next.js/issues/64589">#64589</a>)</li>
<li><a
href="6f27f944c9"><code>6f27f94</code></a>
add pathname normalizer for actions (<a
href="https://redirect.github.com/vercel/next.js/issues/64592">#64592</a>)</li>
<li><a
href="8d18e0c719"><code>8d18e0c</code></a>
Fix ASL bundling for dynamic css (<a
href="https://redirect.github.com/vercel/next.js/issues/64451">#64451</a>)</li>
<li><a
href="3709dd9b46"><code>3709dd9</code></a>
Turbopack: Allow client components to be imported in app routes (<a
href="https://redirect.github.com/vercel/next.js/issues/64520">#64520</a>)</li>
<li><a
href="373fbba4f9"><code>373fbba</code></a>
fix: filter out middleware requests in logging (<a
href="https://redirect.github.com/vercel/next.js/issues/64549">#64549</a>)</li>
<li><a
href="2f8e096cce"><code>2f8e096</code></a>
fix refresh behavior for discarded actions (<a
href="https://redirect.github.com/vercel/next.js/issues/64532">#64532</a>)</li>
<li><a
href="6838f57992"><code>6838f57</code></a>
Fix cjs client components tree-shaking (<a
href="https://redirect.github.com/vercel/next.js/issues/64558">#64558</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vercel/next.js/compare/v14.1.0...v14.2.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=next&package-manager=npm_and_yarn&previous-version=14.1.0&new-version=14.2.2)](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>
2024-04-18 10:15:11 +02:00
dependabot[bot]
3afca76f68 Bump @mantine/form from 7.7.1 to 7.8.0 in /frontend (#656)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/form&package-manager=npm_and_yarn&previous-version=7.7.1&new-version=7.8.0)](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>
2024-04-18 08:42:01 +02:00
dependabot[bot]
e51101457d Bump @typescript-eslint/parser from 7.6.0 to 7.7.0 in /frontend (#657)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
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/parser</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/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.7.0 (2024-04-15)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<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>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.7.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.7.0)](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>
2024-04-17 09:05:35 +02:00
dependabot[bot]
6a50c27d34 Bump @typescript-eslint/eslint-plugin from 7.6.0 to 7.7.0 in /frontend (#655)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.7.0)](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>
2024-04-16 08:51:36 +02:00
dependabot[bot]
24ddfceff1 Bump i18next from 23.10.0 to 23.11.2 in /frontend (#653)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=i18next&package-manager=npm_and_yarn&previous-version=23.10.0&new-version=23.11.2)](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>
2024-04-15 09:55:13 +02:00
dependabot[bot]
5a6cf41495 Bump react-icons from 5.0.1 to 5.1.0 in /frontend (#654)
Bumps [react-icons](https://github.com/react-icons/react-icons) from
5.0.1 to 5.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/react-icons/react-icons/releases">react-icons's
releases</a>.</em></p>
<blockquote>
<h2>v5.1.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Icon sets update <a
href="454170000e</a></li>
<li>Fix Grammatical Error by <a
href="https://github.com/daggy1234"><code>@​daggy1234</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/904">react-icons/react-icons#904</a></li>
<li>Bump follow-redirects from 1.15.4 to 1.15.6 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/917">react-icons/react-icons#917</a></li>
<li>Bump webpack-dev-middleware from 5.3.3 to 5.3.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/922">react-icons/react-icons#922</a></li>
<li>Bump express from 4.18.2 to 4.19.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/924">react-icons/react-icons#924</a></li>
<li>Bump vite from 4.5.1 to 4.5.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/927">react-icons/react-icons#927</a></li>
<li>Update Simple Icons version in index.ts by <a
href="https://github.com/bneeland"><code>@​bneeland</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/921">react-icons/react-icons#921</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/daggy1234"><code>@​daggy1234</code></a>
made their first contribution in <a
href="https://redirect.github.com/react-icons/react-icons/pull/904">react-icons/react-icons#904</a></li>
<li><a href="https://github.com/bneeland"><code>@​bneeland</code></a>
made their first contribution in <a
href="https://redirect.github.com/react-icons/react-icons/pull/921">react-icons/react-icons#921</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/react-icons/react-icons/compare/v5.0.1...v5.1.0">https://github.com/react-icons/react-icons/compare/v5.0.1...v5.1.0</a></p>
<table>
<thead>
<tr>
<th>Icon Library</th>
<th>License</th>
<th>Version</th>
<th align="right">Count</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://circumicons.com/">Circum Icons</a></td>
<td><a
href="https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE">MPL-2.0
license</a></td>
<td>1.0.0</td>
<td align="right">288</td>
</tr>
<tr>
<td><a href="https://fontawesome.com/">Font Awesome 5</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0
License</a></td>
<td>5.15.4-3-gafecf2a</td>
<td align="right">1612</td>
</tr>
<tr>
<td><a href="https://fontawesome.com/">Font Awesome 6</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0
License</a></td>
<td>6.5.1-2-ga1232e3</td>
<td align="right">2037</td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 4</a></td>
<td><a
href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>4.6.3</td>
<td align="right">696</td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 5</a></td>
<td><a
href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>5.5.4</td>
<td align="right">1332</td>
</tr>
<tr>
<td><a href="http://google.github.io/material-design-icons/">Material
Design icons</a></td>
<td><a
href="https://github.com/google/material-design-icons/blob/master/LICENSE">Apache
License Version 2.0</a></td>
<td>4.0.0-95-gf50c103206</td>
<td align="right">4341</td>
</tr>
<tr>
<td><a href="http://s-ings.com/typicons/">Typicons</a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA
3.0</a></td>
<td>2.1.2</td>
<td align="right">336</td>
</tr>
<tr>
<td><a href="https://octicons.github.com/">Github Octicons
icons</a></td>
<td><a
href="https://github.com/primer/octicons/blob/master/LICENSE">MIT</a></td>
<td>18.3.0</td>
<td align="right">264</td>
</tr>
<tr>
<td><a href="https://feathericons.com/">Feather</a></td>
<td><a
href="https://github.com/feathericons/feather/blob/master/LICENSE">MIT</a></td>
<td>4.29.1</td>
<td align="right">287</td>
</tr>
<tr>
<td><a href="https://lucide.dev/">Lucide</a></td>
<td><a
href="https://github.com/lucide-icons/lucide/blob/main/LICENSE">ISC</a></td>
<td>v5.1.0</td>
<td align="right">1215</td>
</tr>
<tr>
<td><a href="https://game-icons.net/">Game Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/3.0/">CC BY
3.0</a></td>
<td>12920d6565588f0512542a3cb0cdfd36a497f910</td>
<td align="right">4040</td>
</tr>
<tr>
<td><a href="https://erikflowers.github.io/weather-icons/">Weather
Icons</a></td>
<td><a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a></td>
<td>2.0.12</td>
<td align="right">219</td>
</tr>
<tr>
<td><a href="https://vorillaz.github.io/devicons/">Devicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.8.0</td>
<td align="right">192</td>
</tr>
<tr>
<td><a href="https://github.com/ant-design/ant-design-icons">Ant Design
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>4.3.1</td>
<td align="right">789</td>
</tr>
<tr>
<td><a href="https://github.com/twbs/icons">Bootstrap Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.11.3</td>
<td align="right">2716</td>
</tr>
<tr>
<td><a href="https://github.com/Remix-Design/RemixIcon">Remix
Icon</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version
2.0</a></td>
<td>4.0.0</td>
<td align="right">2704</td>
</tr>
<tr>
<td><a href="https://github.com/icons8/flat-color-icons">Flat Color
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.2</td>
<td align="right">329</td>
</tr>
<tr>
<td><a
href="https://github.com/grommet/grommet-icons">Grommet-Icons</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version
2.0</a></td>
<td>4.12.0</td>
<td align="right">635</td>
</tr>
<tr>
<td><a
href="https://github.com/tailwindlabs/heroicons">Heroicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.6</td>
<td align="right">460</td>
</tr>
<tr>
<td><a href="https://github.com/tailwindlabs/heroicons">Heroicons
2</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.1.1</td>
<td align="right">888</td>
</tr>
<tr>
<td><a href="https://simpleicons.org/">Simple Icons</a></td>
<td><a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0
Universal</a></td>
<td>11.9.0</td>
<td align="right">3088</td>
</tr>
<tr>
<td><a href="https://thesabbir.github.io/simple-line-icons/">Simple Line
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.5.5</td>
<td align="right">189</td>
</tr>
<tr>
<td><a href="https://github.com/Keyamoon/IcoMoon-Free">IcoMoon
Free</a></td>
<td><a
href="https://github.com/Keyamoon/IcoMoon-Free/blob/master/License.txt">CC
BY 4.0 License</a></td>
<td>d006795ede82361e1bac1ee76f215cf1dc51e4ca</td>
<td align="right">491</td>
</tr>
<tr>
<td><a href="https://github.com/atisawd/boxicons">BoxIcons</a></td>
<td><a
href="https://github.com/atisawd/boxicons/blob/master/LICENSE">MIT</a></td>
<td>2.1.4</td>
<td align="right">1634</td>
</tr>
<tr>
<td><a href="https://github.com/astrit/css.gg">css.gg</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.1.1</td>
<td align="right">704</td>
</tr>
<tr>
<td><a href="https://github.com/microsoft/vscode-codicons">VS Code
Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY
4.0</a></td>
<td>0.0.35</td>
<td align="right">449</td>
</tr>
<tr>
<td><a href="https://github.com/tabler/tabler-icons">Tabler
Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.45.0</td>
<td align="right">4926</td>
</tr>
<tr>
<td><a href="https://github.com/lykmapipo/themify-icons">Themify
Icons</a></td>
<td><a
href="https://github.com/thecreation/standard-icons/blob/master/modules/themify-icons/LICENSE">MIT</a></td>
<td>v0.1.2-2-g9600186</td>
<td align="right">352</td>
</tr>
<tr>
<td><a href="https://icons.radix-ui.com">Radix Icons</a></td>
<td><a
href="https://github.com/radix-ui/icons/blob/master/LICENSE">MIT</a></td>
<td>@radix-ui/<a
href="mailto:react-icons@1.3.0-1-g94b3fcf">react-icons@1.3.0-1-g94b3fcf</a></td>
<td align="right">318</td>
</tr>
<tr>
<td><a href="https://github.com/phosphor-icons/core">Phosphor
Icons</a></td>
<td><a
href="https://github.com/phosphor-icons/core/blob/main/LICENSE">MIT</a></td>
<td>2.0.5</td>
<td align="right">7488</td>
</tr>
<tr>
<td><a href="https://icons8.com/line-awesome">Icons8 Line
Awesome</a></td>
<td><a
href="https://github.com/icons8/line-awesome/blob/master/LICENSE.md">MIT</a></td>
<td>1.3.1</td>
<td align="right">1544</td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="95168b93ee"><code>95168b9</code></a>
v5.1.0</li>
<li><a
href="454170000e"><code>4541700</code></a>
update icons</li>
<li><a
href="e32566dbd6"><code>e32566d</code></a>
5.0.2-snapshot.0</li>
<li><a
href="ea533cf50a"><code>ea533cf</code></a>
Update index.ts (<a
href="https://redirect.github.com/react-icons/react-icons/issues/921">#921</a>)</li>
<li><a
href="18af0addef"><code>18af0ad</code></a>
Bump vite from 4.5.1 to 4.5.3 (<a
href="https://redirect.github.com/react-icons/react-icons/issues/927">#927</a>)</li>
<li><a
href="c15a3c40b5"><code>c15a3c4</code></a>
Bump express from 4.18.2 to 4.19.2 (<a
href="https://redirect.github.com/react-icons/react-icons/issues/924">#924</a>)</li>
<li><a
href="a5cfc0d12d"><code>a5cfc0d</code></a>
Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (<a
href="https://redirect.github.com/react-icons/react-icons/issues/922">#922</a>)</li>
<li><a
href="2f3f3fa435"><code>2f3f3fa</code></a>
Bump follow-redirects from 1.15.4 to 1.15.6 (<a
href="https://redirect.github.com/react-icons/react-icons/issues/917">#917</a>)</li>
<li><a
href="3b5d4d893a"><code>3b5d4d8</code></a>
Update icondetailmodal.tsx (<a
href="https://redirect.github.com/react-icons/react-icons/issues/904">#904</a>)</li>
<li><a
href="3581372aaa"><code>3581372</code></a>
fix build scripts</li>
<li>See full diff in <a
href="https://github.com/react-icons/react-icons/compare/v5.0.1...v5.1.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-icons&package-manager=npm_and_yarn&previous-version=5.0.1&new-version=5.1.0)](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>
2024-04-15 09:54:55 +02:00
dependabot[bot]
7ee5019d2a Bump @next/bundle-analyzer from 14.1.0 to 14.2.0 in /frontend (#648)
Bumps
[@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer)
from 14.1.0 to 14.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vercel/next.js/releases"><code>@​next/bundle-analyzer</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v14.2.0</h2>
<h3>Core Changes</h3>
<ul>
<li>Update build worker warning to use debug: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60847">#60847</a></li>
<li>fix: added <code>@​sentry/profiling-node</code> to sep list to
prevent build/bundle breakage: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60855">#60855</a></li>
<li>Optimize build trace ignores: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60859">#60859</a></li>
<li>Deprecation warning for config.analyticsId: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60677">#60677</a></li>
<li>chore: indicate staleness more prominently in <code>next info</code>
output: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60376">#60376</a></li>
<li>Telemetry: createComponentTree span: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60857">#60857</a></li>
<li>chore: replace micromatch w/ picomatch: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60699">#60699</a></li>
<li>Report HMR latency as trace spans for Turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60799">#60799</a></li>
<li>Turbopack: always log HMR rebuild times: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60908">#60908</a></li>
<li>Error overlay refactors: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60886">#60886</a></li>
<li>Use precompiled source-map in overlay middleware: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60932">#60932</a></li>
<li>Use more precompiled deps in react-dev-overlay: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60959">#60959</a></li>
<li>Fix next phase for next build: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60969">#60969</a></li>
<li>chore: update turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60980">#60980</a></li>
<li>refactor(analysis): rust based page-static-info, deprecate js parse
interface in next-swc: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/59300">#59300</a></li>
<li>disable static generation on interception routes: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61004">#61004</a></li>
<li>Docs: Address community feedback: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60960">#60960</a></li>
<li>avoid output of webpack stats: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61023">#61023</a></li>
<li>Revert &quot;refactor(analysis): rust based page-static-info,
deprecate js parse interface in next-swc&quot;: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61021">#61021</a></li>
<li>fix useSelectedLayoutSegment's support for parallel routes: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60912">#60912</a></li>
<li>Dynamic APIs: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60645">#60645</a></li>
<li>Enable next.js version checker in turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61034">#61034</a></li>
<li>chore: Update <code>terser</code> to <code>v5.27.0</code>: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61068">#61068</a></li>
<li>Update <code>swc_core</code> to <code>v0.87.28</code>: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60876">#60876</a></li>
<li>update turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61015">#61015</a></li>
<li>Implement client_root for edge in Turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61024">#61024</a></li>
<li>fix parallel route top-level catch-all normalization logic to
support nested explicit (non-catchall) slot routes: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60776">#60776</a></li>
<li>fix(image): warn when animated image is missing
<code>unoptimized</code> prop: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61045">#61045</a></li>
<li>Fix version checker not displaying when version newer than npm: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61075">#61075</a></li>
<li>Fix sitemap generateSitemaps support for string id: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61088">#61088</a></li>
<li>ppr: ensure the router state tree is provided for interception
routes: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61059">#61059</a></li>
<li>Improve the Server Actions SWC transform: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61001">#61001</a></li>
<li>Fix instrument bundling as client components: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60984">#60984</a></li>
<li>fix(turbopack): use correct layout for 404 page: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61032">#61032</a></li>
<li>fix: emotion import source should be enabled in SSR contexts: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61099">#61099</a></li>
<li>chore: update turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61090">#61090</a></li>
<li>fix(turbopack): custom page extensions for <code>_app</code>: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/60789">#60789</a></li>
<li>Disable trace uploads with NEXT_TRACE_UPLOAD_DISABLE: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61101">#61101</a></li>
<li>add <code>optimizeServerReact</code> to config-shared: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61106">#61106</a></li>
<li>Fix filesystempublicroutes test for Turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61132">#61132</a></li>
<li>chore: upgrade webpack to 5.90.0: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61109">#61109</a></li>
<li>Add <code>maxDuration</code> to typescript plugin allowed exports:
<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/59193">#59193</a></li>
<li>Upgrade Turbopack: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61190">#61190</a></li>
<li>build: remove sentry from the externals list: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61194">#61194</a></li>
<li>exclude default routes from isPageStatic check: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61173">#61173</a></li>
<li>Add stack trace to client rendering bailout error: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61200">#61200</a></li>
<li>chore: refactor image optimization to separate external/internal
urls: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/61172">#61172</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="774563f2b9"><code>774563f</code></a>
v14.2.0</li>
<li><a
href="7aabb1d5ce"><code>7aabb1d</code></a>
v14.2.0-canary.67</li>
<li><a
href="265d7b97ba"><code>265d7b9</code></a>
v14.2.0-canary.66</li>
<li><a
href="22754faff6"><code>22754fa</code></a>
v14.2.0-canary.65</li>
<li><a
href="167ea3382f"><code>167ea33</code></a>
v14.2.0-canary.64</li>
<li><a
href="c289063517"><code>c289063</code></a>
v14.2.0-canary.63</li>
<li><a
href="e46d088aec"><code>e46d088</code></a>
v14.2.0-canary.62</li>
<li><a
href="42f8ac16c6"><code>42f8ac1</code></a>
v14.2.0-canary.61</li>
<li><a
href="acaf642fbd"><code>acaf642</code></a>
v14.2.0-canary.60</li>
<li><a
href="a00bed86d0"><code>a00bed8</code></a>
v14.2.0-canary.59</li>
<li>Additional commits viewable in <a
href="https://github.com/vercel/next.js/commits/v14.2.0/packages/next-bundle-analyzer">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@next/bundle-analyzer&package-manager=npm_and_yarn&previous-version=14.1.0&new-version=14.2.0)](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>
2024-04-12 10:44:52 +02:00
dependabot[bot]
023fee72f1 Bump postcss-preset-mantine from 1.13.0 to 1.14.0 in /frontend (#643)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postcss-preset-mantine&package-manager=npm_and_yarn&previous-version=1.13.0&new-version=1.14.0)](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>
2024-04-11 09:26:26 +02:00
dependabot[bot]
1699de4b6a Bump @testing-library/react from 14.3.0 to 15.0.0 in /frontend (#644)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@testing-library/react&package-manager=npm_and_yarn&previous-version=14.3.0&new-version=15.0.0)](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>
2024-04-11 09:26:02 +02:00
dependabot[bot]
692ff0f132 Bump @testing-library/react from 14.2.1 to 14.3.0 in /frontend (#641)
Bumps
[@testing-library/react](https://github.com/testing-library/react-testing-library)
from 14.2.1 to 14.3.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>v14.3.0</h2>
<h1><a
href="https://github.com/testing-library/react-testing-library/compare/v14.2.2...v14.3.0">14.3.0</a>
(2024-04-08)</h1>
<h3>Features</h3>
<ul>
<li>Add support for React 19 Canary (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1294">#1294</a>)
(<a
href="9c4a46d5b9">9c4a46d</a>)</li>
</ul>
<h2>v14.2.2</h2>
<h2><a
href="https://github.com/testing-library/react-testing-library/compare/v14.2.1...v14.2.2">14.2.2</a>
(2024-03-19)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Remove unused types (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1287">#1287</a>)
(<a
href="3da62fd974">3da62fd</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9c4a46d5b9"><code>9c4a46d</code></a>
feat: Add support for React 19 Canary (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1294">#1294</a>)</li>
<li><a
href="4e10ba3a78"><code>4e10ba3</code></a>
chore: change canary version to specific prefix (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1290">#1290</a>)</li>
<li><a
href="cf045b4743"><code>cf045b4</code></a>
chore: Update Codecov configuration to latest (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1289">#1289</a>)</li>
<li><a
href="3da62fd974"><code>3da62fd</code></a>
fix: Remove unused types (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1287">#1287</a>)</li>
<li><a
href="7e42f4e841"><code>7e42f4e</code></a>
chore: Fix tests (<a
href="https://redirect.github.com/testing-library/react-testing-library/issues/1288">#1288</a>)</li>
<li>See full diff in <a
href="https://github.com/testing-library/react-testing-library/compare/v14.2.1...v14.3.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@testing-library/react&package-manager=npm_and_yarn&previous-version=14.2.1&new-version=14.3.0)](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>
2024-04-10 08:16:13 +02:00
dependabot[bot]
9bff6ae074 Bump eslint-plugin-jest from 27.9.0 to 28.2.0 in /frontend (#640)
Bumps
[eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)
from 27.9.0 to 28.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/releases">eslint-plugin-jest's
releases</a>.</em></p>
<blockquote>
<h2>v28.2.0</h2>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.1.1...v28.2.0">28.2.0</a>
(2024-04-06)</h1>
<h3>Features</h3>
<ul>
<li>support providing aliases for <code>@jest/globals</code> package (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1543">#1543</a>)
(<a
href="744d4f6fa5">744d4f6</a>)</li>
</ul>
<h2>v28.1.1</h2>
<h2><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.1.0...v28.1.1">28.1.1</a>
(2024-04-06)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>max-expects:</strong> properly reset counter when exiting a
test case (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1550">#1550</a>)
(<a
href="b4b7cbc619">b4b7cbc</a>)</li>
</ul>
<h2>v28.1.0</h2>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.0.0...v28.1.0">28.1.0</a>
(2024-04-06)</h1>
<h3>Features</h3>
<ul>
<li>add <code>prefer-importing-jest-globals</code> rule (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1490">#1490</a>)
(<a
href="37478d860e">37478d8</a>),
closes <a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1101">#1101</a></li>
</ul>
<h2>v28.0.0</h2>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v27.9.0...v28.0.0">28.0.0</a>
(2024-04-06)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>allow ESLint 9 as peer dependency (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1547">#1547</a>)
(<a
href="3c5e1673af">3c5e167</a>)</li>
<li>drop support for Node 19 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1548">#1548</a>)
(<a
href="c87e3887e7">c87e388</a>)</li>
<li><strong>no-large-snapshots:</strong> avoid <code>instanceof
RegExp</code> check for ESLint v9 compatibility (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1542">#1542</a>)
(<a
href="af4a9c94d6">af4a9c9</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li>drop support for <code>@typescript-eslint/eslint-plugin</code> v5
(<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1530">#1530</a>)
(<a
href="150e3558a6">150e355</a>)</li>
<li>drop support for Node v14 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1527">#1527</a>)
(<a
href="df5e58081d">df5e580</a>)</li>
<li>remove <code>no-if</code> rule (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1528">#1528</a>)
(<a
href="f976fc8c71">f976fc8</a>)</li>
<li>remove <code>snapshot</code> processor and
<code>flat/snapshot</code> config (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1532">#1532</a>)
(<a
href="98087f9bb2">98087f9</a>)</li>
<li>upgrade <code>@typescript-eslint/utils</code> to v6 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1508">#1508</a>)
(<a
href="dc6e8cd249">dc6e8cd</a>)</li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Node v19 is no longer supported</li>
<li>removed unneeded <code>snapshot</code> processor and
<code>flat/snapshot</code> config</li>
<li>dropped support for <code>@typescript-eslint/eslint-plugin</code>
v5</li>
<li>dropped support for Node v14</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md">eslint-plugin-jest's
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.1.1...v28.2.0">28.2.0</a>
(2024-04-06)</h1>
<h3>Features</h3>
<ul>
<li>support providing aliases for <code>@jest/globals</code> package (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1543">#1543</a>)
(<a
href="744d4f6fa5">744d4f6</a>)</li>
</ul>
<h2><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.1.0...v28.1.1">28.1.1</a>
(2024-04-06)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>max-expects:</strong> properly reset counter when exiting a
test case (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1550">#1550</a>)
(<a
href="b4b7cbc619">b4b7cbc</a>)</li>
</ul>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.0.0...v28.1.0">28.1.0</a>
(2024-04-06)</h1>
<h3>Features</h3>
<ul>
<li>add <code>prefer-importing-jest-globals</code> rule (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1490">#1490</a>)
(<a
href="37478d860e">37478d8</a>),
closes <a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1101">#1101</a></li>
</ul>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v27.9.0...v28.0.0">28.0.0</a>
(2024-04-06)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>allow ESLint 9 as peer dependency (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1547">#1547</a>)
(<a
href="3c5e1673af">3c5e167</a>)</li>
<li>drop support for Node 19 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1548">#1548</a>)
(<a
href="c87e3887e7">c87e388</a>)</li>
<li><strong>no-large-snapshots:</strong> avoid <code>instanceof
RegExp</code> check for ESLint v9 compatibility (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1542">#1542</a>)
(<a
href="af4a9c94d6">af4a9c9</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li>drop support for <code>@typescript-eslint/eslint-plugin</code> v5
(<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1530">#1530</a>)
(<a
href="150e3558a6">150e355</a>)</li>
<li>drop support for Node v14 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1527">#1527</a>)
(<a
href="df5e58081d">df5e580</a>)</li>
<li>remove <code>no-if</code> rule (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1528">#1528</a>)
(<a
href="f976fc8c71">f976fc8</a>)</li>
<li>remove <code>snapshot</code> processor and
<code>flat/snapshot</code> config (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1532">#1532</a>)
(<a
href="98087f9bb2">98087f9</a>)</li>
<li>upgrade <code>@typescript-eslint/utils</code> to v6 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1508">#1508</a>)
(<a
href="dc6e8cd249">dc6e8cd</a>)</li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Node v19 is no longer supported</li>
<li>removed unneeded <code>snapshot</code> processor and
<code>flat/snapshot</code> config</li>
<li>dropped support for <code>@typescript-eslint/eslint-plugin</code>
v5</li>
<li>dropped support for Node v14</li>
<li>removed <code>no-if</code> in favor of
<code>no-conditional-in-test</code></li>
</ul>
<h1><a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.0.0-next.6...v28.0.0-next.7">28.0.0-next.7</a>
(2024-04-06)</h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9f918bcc2f"><code>9f918bc</code></a>
chore(release): 28.2.0 [skip ci]</li>
<li><a
href="744d4f6fa5"><code>744d4f6</code></a>
feat: support providing aliases for <code>@jest/globals</code> package
(<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1543">#1543</a>)</li>
<li><a
href="8f59e2bdcb"><code>8f59e2b</code></a>
chore(release): 28.1.1 [skip ci]</li>
<li><a
href="b4b7cbc619"><code>b4b7cbc</code></a>
fix(max-expects): properly reset counter when exiting a test case (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1550">#1550</a>)</li>
<li><a
href="6aaabc4590"><code>6aaabc4</code></a>
chore(release): 28.1.0 [skip ci]</li>
<li><a
href="37478d860e"><code>37478d8</code></a>
feat: add <code>prefer-importing-jest-globals</code> rule (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1490">#1490</a>)</li>
<li><a
href="9aa7aeebd4"><code>9aa7aee</code></a>
chore: remove patch (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1549">#1549</a>)</li>
<li><a
href="5bc0b886b7"><code>5bc0b88</code></a>
chore(release): 28.0.0 [skip ci]</li>
<li><a
href="7ecbae2697"><code>7ecbae2</code></a>
Merge pull request <a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1531">#1531</a>
from jest-community/next</li>
<li><a
href="9854767c58"><code>9854767</code></a>
chore(deps): update wagoid/commitlint-github-action action to v6 (<a
href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1539">#1539</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/jest-community/eslint-plugin-jest/compare/v27.9.0...v28.2.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-jest&package-manager=npm_and_yarn&previous-version=27.9.0&new-version=28.2.0)](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>
2024-04-10 08:15:53 +02:00
dependabot[bot]
78629860ef Bump @typescript-eslint/eslint-plugin from 7.5.0 to 7.6.0 in /frontend (#637)
[//]: # (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
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.5.0 to 7.6.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.6.0</h2>
<h2>7.6.0 (2024-04-08)</h2>
<h3>🚀 Features</h3>
<ul>
<li>add <code>name</code> field to shared configs and flat config types
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8863">#8863</a>)</li>
<li>bump npm dependency ranges (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8860">#8860</a>)
<ul>
<li>note: this does not include support for ESLint v9 - see <a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/8211">typescript-eslint/typescript-eslint#8211</a>
for progress.</li>
</ul>
</li>
<li><strong>utils:</strong> add types for both flat and legacy eslint
classes (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8861">#8861</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>typescript-eslint:</strong> fix type errors when using
<code>exactOptionalPropertyTypes</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8786">#8786</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></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.6.0 (2024-04-08)</h2>
<h3>🚀 Features</h3>
<ul>
<li>bump npm dependency ranges</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>auvred</li>
<li>Brad Zacher</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="e1db872655"><code>e1db872</code></a>
chore(release): publish 7.6.0</li>
<li><a
href="a6ab2cb9be"><code>a6ab2cb</code></a>
feat: bump npm dependency ranges (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8860">#8860</a>)</li>
<li><a
href="4bac40c83a"><code>4bac40c</code></a>
docs: fix incorrect tab item values in prefer-optional-chain (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8867">#8867</a>)</li>
<li><a
href="a7bdd1c1eb"><code>a7bdd1c</code></a>
test(eslint-plugin): render snapshots of ESLint output for each code
example ...</li>
<li><a
href="41d893f4c6"><code>41d893f</code></a>
docs(eslint-plugin): [consistent-return] add warning section use
noImplicitRe...</li>
<li><a
href="d063275059"><code>d063275</code></a>
docs: feature-freeze member-ordering, naming-convention,
sort-type-constituen...</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.6.0/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=7.5.0&new-version=7.6.0)](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>
2024-04-09 09:58:24 +02:00
dependabot[bot]
2058da8ce7 Bump @typescript-eslint/parser from 7.5.0 to 7.6.0 in /frontend (#638)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.5.0 to 7.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.6.0</h2>
<h2>7.6.0 (2024-04-08)</h2>
<h3>🚀 Features</h3>
<ul>
<li>add <code>name</code> field to shared configs and flat config types
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8863">#8863</a>)</li>
<li>bump npm dependency ranges (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8860">#8860</a>)
<ul>
<li>note: this does not include support for ESLint v9 - see <a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/8211">typescript-eslint/typescript-eslint#8211</a>
for progress.</li>
</ul>
</li>
<li><strong>utils:</strong> add types for both flat and legacy eslint
classes (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8861">#8861</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>typescript-eslint:</strong> fix type errors when using
<code>exactOptionalPropertyTypes</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8786">#8786</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></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/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.6.0 (2024-04-08)</h2>
<h3>🚀 Features</h3>
<ul>
<li>bump npm dependency ranges</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>auvred</li>
<li>Brad Zacher</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="e1db872655"><code>e1db872</code></a>
chore(release): publish 7.6.0</li>
<li><a
href="a6ab2cb9be"><code>a6ab2cb</code></a>
feat: bump npm dependency ranges (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8860">#8860</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.6.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.5.0&new-version=7.6.0)](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>
2024-04-09 09:38:13 +02:00
dependabot[bot]
9e95777f3d Bump @testing-library/dom from 9.3.4 to 10.0.0 in /frontend (#639)
Bumps
[@testing-library/dom](https://github.com/testing-library/dom-testing-library)
from 9.3.4 to 10.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/testing-library/dom-testing-library/releases"><code>@​testing-library/dom</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v10.0.0</h2>
<h1><a
href="https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.0.0">10.0.0</a>
(2024-04-08)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>use defineProperty on the error object instead of setting the
message directly (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1268">#1268</a>)
(<a
href="3580f25bd7">3580f25</a>),
closes <a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1259">#1259</a></li>
</ul>
<h3>Features</h3>
<ul>
<li>Drop support for Node.js 14.x and Node.js 16.x and add support for
Node 20.x (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1255">#1255</a>)
(<a
href="452097b35a">452097b</a>)</li>
<li>upgrade aria-query to 5.3.0 (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1241">#1241</a>)
(<a
href="2c570553d8">2c57055</a>),
closes <a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1240">#1240</a></li>
</ul>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Minimum supported Node.js version is 18.0</li>
<li>New version of <code>aria-query</code> changes various roles. Check
out the changed tests in 2c57055 to get an overview about what
changed.</li>
</ul>
<h2>v10.0.0-alpha.3</h2>
<h1><a
href="https://github.com/testing-library/dom-testing-library/compare/v10.0.0-alpha.2...v10.0.0-alpha.3">10.0.0-alpha.3</a>
(2024-04-04)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>Stop calling <code>waitFor</code> callback after timeout (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1271">#1271</a>)
(<a
href="9aaf71524b">9aaf715</a>)</li>
<li>use defineProperty on the error object instead of setting the
message directly (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1261">#1261</a>)
(<a
href="270a531bcd">270a531</a>),
closes <a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1259">#1259</a></li>
</ul>
<h2>v10.0.0-alpha.2</h2>
<h1><a
href="https://github.com/testing-library/dom-testing-library/compare/v10.0.0-alpha.1...v10.0.0-alpha.2">10.0.0-alpha.2</a>
(2023-10-03)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>use defineProperty on the error object instead of setting the
message directly (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1268">#1268</a>)
(<a
href="3580f25bd7">3580f25</a>),
closes <a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1259">#1259</a></li>
</ul>
<h3>Features</h3>
<ul>
<li>upgrade aria-query to 5.3.0 (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1241">#1241</a>)
(<a
href="2c570553d8">2c57055</a>),
closes <a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1240">#1240</a></li>
</ul>
<h2>v10.0.0-alpha.1</h2>
<h1><a
href="https://github.com/testing-library/dom-testing-library/compare/v9.3.1...v10.0.0-alpha.1">10.0.0-alpha.1</a>
(2023-09-10)</h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="eef23cabc9"><code>eef23ca</code></a>
test: Fix Codecov in CI (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1297">#1297</a>)</li>
<li><a
href="6ad31ecbbe"><code>6ad31ec</code></a>
release: 10.0.0</li>
<li><a
href="cb57f999bc"><code>cb57f99</code></a>
Merge branch 'main' into alpha</li>
<li><a
href="37ccada9ed"><code>37ccada</code></a>
Merge branch 'main' into alpha</li>
<li><a
href="3580f25bd7"><code>3580f25</code></a>
fix: use defineProperty on the error object instead of setting the
message di...</li>
<li><a
href="2c570553d8"><code>2c57055</code></a>
feat: upgrade aria-query to 5.3.0 (<a
href="https://redirect.github.com/testing-library/dom-testing-library/issues/1241">#1241</a>)</li>
<li><a
href="452097b35a"><code>452097b</code></a>
feat: Drop support for Node.js 14.x and Node.js 16.x and add support for
Node...</li>
<li>See full diff in <a
href="https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@testing-library/dom&package-manager=npm_and_yarn&previous-version=9.3.4&new-version=10.0.0)](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>
2024-04-09 09:38:00 +02:00
dependabot[bot]
ca4c58ec29 Bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.5.0 in /frontend (#635)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.4.0 to 7.5.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.5.0</h2>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-floating-promises] handle
TaggedTemplateExpression (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8758">#8758</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
handle exactOptionalPropertyTypes compiler option (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8770">#8770</a>)</li>
<li><strong>parser:</strong> disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8784">#8784</a>)</li>
<li><strong>typescript-eslint:</strong> improve support for legacy
configs (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8812">#8812</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Mark de Dios <a
href="https://github.com/peanutenthusiast"><code>@​peanutenthusiast</code></a></li>
<li>Naru <a
href="https://github.com/naruaway"><code>@​naruaway</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [no-floating-promises] handle
TaggedTemplateExpression</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
handle exactOptionalPropertyTypes compiler option</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher</li>
<li>Kim Sang Du</li>
<li>Mark de Dios</li>
<li>Naru</li>
<li>YeonJuan</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="a14ba9d458"><code>a14ba9d</code></a>
chore(release): publish 7.5.0</li>
<li><a
href="ecb6b55425"><code>ecb6b55</code></a>
docs: add homepage (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8742">#8742</a>)</li>
<li><a
href="f0b1c4fb63"><code>f0b1c4f</code></a>
fix(eslint-plugin): [no-unnecessary-type-assertion] handle
exactOptionalPrope...</li>
<li><a
href="570726872b"><code>5707268</code></a>
fix(eslint-plugin): [no-floating-promises] handle
TaggedTemplateExpression (#...</li>
<li><a
href="ca561e2e6f"><code>ca561e2</code></a>
chore: manually updated local package.jsons to 7.4.0 (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8775">#8775</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=7.4.0&new-version=7.5.0)](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>
2024-04-08 08:43:57 +02:00
dependabot[bot]
789e2dbe66 Bump @types/node from 20.11.5 to 20.12.5 in /frontend (#634)
[//]: # (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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=20.11.5&new-version=20.12.5)](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>
2024-04-08 07:42:27 +02:00
dependabot[bot]
020e339ec1 Bump @typescript-eslint/parser from 7.4.0 to 7.5.0 in /frontend (#633)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.4.0 to 7.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.5.0</h2>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-floating-promises] handle
TaggedTemplateExpression (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8758">#8758</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
handle exactOptionalPropertyTypes compiler option (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8770">#8770</a>)</li>
<li><strong>parser:</strong> disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8784">#8784</a>)</li>
<li><strong>typescript-eslint:</strong> improve support for legacy
configs (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8812">#8812</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Mark de Dios <a
href="https://github.com/peanutenthusiast"><code>@​peanutenthusiast</code></a></li>
<li>Naru <a
href="https://github.com/naruaway"><code>@​naruaway</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>parser:</strong> disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code></li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher</li>
<li>Kim Sang Du</li>
<li>Mark de Dios</li>
<li>Naru</li>
<li>YeonJuan</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="a14ba9d458"><code>a14ba9d</code></a>
chore(release): publish 7.5.0</li>
<li><a
href="ecb6b55425"><code>ecb6b55</code></a>
docs: add homepage (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8742">#8742</a>)</li>
<li><a
href="d5615d72fb"><code>d5615d7</code></a>
fix(parser): disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code> (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8784">#8784</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.4.0&new-version=7.5.0)](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>
2024-04-08 07:42:01 +02:00
dependabot[bot]
dd2852100d Bump @mantine/form from 7.6.0 to 7.7.1 in /frontend (#627)
Bumps
[@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form)
from 7.6.0 to 7.7.1.
<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.7.1</h2>
<h2>What's Changed</h2>
<ul>
<li><code>[@mantine/tiptap]</code> Improve toolbar items alignment for
non-native elements (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5993">#5993</a>)</li>
<li><code>[@mantine/spotlight]</code> Fix incorrect down key handling
when the spotlight is opened repeatedly (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5995">#5995</a>)</li>
<li><code>[@mantine/core]</code> Image: Fix ref not being assigned for
fallback images (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5989">#5989</a>)</li>
<li><code>[@mantine/core]</code> PinInput: Fix incorrect focus logic (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5963">#5963</a>)</li>
<li><code>[@mantine/core]</code> Table: Fix
<code>highlightOnHoverColor</code> prop not working</li>
<li><code>[@mantine/core]</code> AppShell: Adjust footer position to
include env(safe-area-inset-bottom) (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5502">#5502</a>)</li>
<li><code>[@mantine/core]</code> PinInput: Fix placeholder not being
visible on the element that had focus when the component becomes
disabled (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5831">#5831</a>)</li>
<li><code>[@mantine/dates]</code> Calendar: Fix double timezone shift
(<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5916">#5916</a>)</li>
<li><code>[@mantine/hooks]</code> use-local-storage: Fix value not being
updated when key is changed (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5910">#5910</a>)</li>
<li><code>[@mantine/charts]</code> Fix incorrect charts legends height
for multiline values (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5923">#5923</a>)</li>
<li><code>[@mantine/core]</code> NumberInput: Fix incorrect
increment/decrement functions logic when <code>step</code> is a float
value (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5926">#5926</a>)</li>
<li><code>[@mantine/core]</code> Combobox: Fix incorrect IME input
handling (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5935">#5935</a>)</li>
<li><code>[@mantine/core]</code> Menu: Fix unexpected focus styles in
the dropdown element in Firefox (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5957">#5957</a>)</li>
<li><code>[@mantine/core]</code> Fix incorrect <code>disabled</code>
prop handling in TagsInput and MultiSelect (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5959">#5959</a>)</li>
<li><code>[@mantine/core]</code> Fix <code>renderOption</code> not
working for grouped items in Combobox-based components (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5952">#5952</a>)</li>
<li><code>[@mantine/core]</code> AppShell: Fix error when used inside
Suspense (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5979">#5979</a>)</li>
<li><code>[@mantine/core]</code> Update CSS selectors hashing algorithm
to prevent collisions with other libraries (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5968">#5968</a>)</li>
<li><code>[@mantine/carousel]</code> Fix specificity issues of some
selectors (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5973">#5973</a>)</li>
<li><code>[@mantine/core]</code> AppShell: Fix missing Aside offset in
Header and Footer for <code>layout=alt</code> (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5974">#5974</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/naughton"><code>@​naughton</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5952">mantinedev/mantine#5952</a></li>
<li><a
href="https://github.com/wasamistake"><code>@​wasamistake</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5971">mantinedev/mantine#5971</a></li>
<li><a href="https://github.com/elecdeer"><code>@​elecdeer</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5935">mantinedev/mantine#5935</a></li>
<li><a
href="https://github.com/israelins85"><code>@​israelins85</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5910">mantinedev/mantine#5910</a></li>
<li><a href="https://github.com/1g0rrr"><code>@​1g0rrr</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5916">mantinedev/mantine#5916</a></li>
<li><a
href="https://github.com/joshua-webdev"><code>@​joshua-webdev</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5963">mantinedev/mantine#5963</a></li>
<li><a href="https://github.com/s-cork"><code>@​s-cork</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5989">mantinedev/mantine#5989</a></li>
<li><a href="https://github.com/xiaohanyu"><code>@​xiaohanyu</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/5993">mantinedev/mantine#5993</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/mantinedev/mantine/compare/7.7.0...7.7.1">https://github.com/mantinedev/mantine/compare/7.7.0...7.7.1</a></p>
<h2>7.7.0</h2>
<p><a href="https://mantine.dev/changelog/7-7-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Virtual colors</h2>
<p>Virtual color is a special color which values should be different for
light and dark color schemes.
To define a virtual color, use <code>virtualColor</code> function which
accepts an object with the following
properties as a single argument:</p>
<ul>
<li><code>name</code> – color name, must be the same as the key in
<code>theme.colors</code> object</li>
<li><code>light</code> – a key of <code>theme.colors</code> object for
light color scheme</li>
<li><code>dark</code> – a key of <code>theme.colors</code> object for
dark color scheme</li>
</ul>
<p>To see the demo in action, switch between light and dark color
schemes (<code>Ctrl + J</code>):</p>
<pre lang="tsx"><code>&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<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><a
href="e3e3bb834d"><code>e3e3bb8</code></a>
[release] Version: 7.6.2</li>
<li><a
href="52e8469306"><code>52e8469</code></a>
[<code>@​mantine/form</code>] Fix <code>onValuesChange</code> not using
updated function (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/5901">#5901</a>)</li>
<li><a
href="188248d51b"><code>188248d</code></a>
[release] Version: 7.6.1</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.7.1/packages/@mantine/form">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/form&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.7.1)](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>
2024-04-07 11:09:40 +02:00
dependabot[bot]
13194ca4c0 Bump eslint-config-mantine from 3.1.0 to 3.2.0 in /frontend (#625)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-config-mantine&package-manager=npm_and_yarn&previous-version=3.1.0&new-version=3.2.0)](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>
2024-03-28 09:00:30 +01:00
dependabot[bot]
db2c8fa0b3 Bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.4.0 in /frontend (#622)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 6.21.0 to 7.4.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.4.0</h2>
<h2>7.4.0 (2024-03-25)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [consistent-type-imports] ignore
files with decorators, experimentalDecorators, and emitDecoratorMetadata
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8335">#8335</a>)
<ul>
<li>Check out our blog post on this change for more information! <a
href="https://typescript-eslint.io/blog/changes-to-consistent-type-imports-with-decorators">https://typescript-eslint.io/blog/changes-to-consistent-type-imports-with-decorators</a></li>
</ul>
</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-arguments]
handle tagged templates (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8708">#8708</a>)</li>
<li><strong>eslint-plugin:</strong> deprecate no-throw-literal and add a
renamed only-throw-error (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8701">#8701</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] address
multipart nullish checks false positive (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8678">#8678</a>)</li>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] properly
disambiguate between <code>boolean</code> and <code>false</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8685">#8685</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
avoid remove const casting on template literals with expressions inside
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8740">#8740</a>)</li>
<li><strong>typescript-eslint:</strong> declare peer dependency on
<code>utils</code> to ensure npm correctly installs dependencies (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8738">#8738</a>)</li>
<li><strong>website:</strong> visual Editor is not scrolled (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8709">#8709</a>)</li>
<li><strong>website:</strong> make 404 page good again (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8750">#8750</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Josh Goldberg </li>
<li>Kim Sang Du <a
href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li>
<li>Kirk Waiblinger <a
href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li>
<li>Marco Pasqualetti <a
href="https://github.com/marcalexiei"><code>@​marcalexiei</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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>
<h2>v7.3.1</h2>
<h2>7.3.1 (2024-03-18)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-floating-promises] revert
disable of ignoreVoid in strict config (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8718">#8718</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<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>
<h2>v7.3.0</h2>
<h2>7.3.0 (2024-03-18)</h2>
<p>Note that this release enables rules to have more restrictive default
options as configured in the <code>strict</code> and
<code>strict-type-checked</code> configs. See <a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8364">#8364</a>
for more details.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</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.4.0 (2024-03-25)</h2>
<h3>🚀 Features</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [consistent-type-imports] ignore
files with decorators, experimentalDecorators, and
emitDecoratorMetadata</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-type-arguments]
handle tagged templates</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> deprecate no-throw-literal and add a
renamed only-throw-error</p>
</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [prefer-optional-chain] address
multipart nullish checks false positive</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [prefer-optional-chain] properly
disambiguate between <code>boolean</code> and <code>false</code></p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion] avoid
remove const casting on template literals with expressions inside</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Brad Zacher</li>
<li>Josh Goldberg </li>
<li>Kim Sang Du</li>
<li>Kirk Waiblinger</li>
<li>Marco Pasqualetti</li>
<li>YeonJuan</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>
<h2>7.3.1 (2024-03-18)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-floating-promises] revert
disable of ignoreVoid in strict config</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<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>
<h2>7.3.0 (2024-03-18)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5d24691422"><code>5d24691</code></a>
chore(release): publish 7.4.0</li>
<li><a
href="029fc0b97f"><code>029fc0b</code></a>
feat(eslint-plugin): deprecate no-throw-literal and add a renamed
only-throw-...</li>
<li><a
href="2a62a400b7"><code>2a62a40</code></a>
fix(eslint-plugin): [no-unnecessary-type-assertion] avoid remove const
castin...</li>
<li><a
href="990ec22c79"><code>990ec22</code></a>
docs: fix example of binding unbound method (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8754">#8754</a>)</li>
<li><a
href="a08554a588"><code>a08554a</code></a>
feat(eslint-plugin): [no-unnecessary-type-arguments] handle tagged
templates ...</li>
<li><a
href="2018f91ef6"><code>2018f91</code></a>
fix(eslint-plugin): [prefer-optional-chain] properly disambiguate
between `bo...</li>
<li><a
href="56358a64f1"><code>56358a6</code></a>
fix(eslint-plugin): [prefer-optional-chain] address multipart nullish
checks ...</li>
<li><a
href="532ae8b111"><code>532ae8b</code></a>
docs: fix typo in switch-exhaustiveness-check (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8768">#8768</a>)</li>
<li><a
href="e408b93e48"><code>e408b93</code></a>
feat(eslint-plugin): [consistent-type-imports] ignore files with
decorators, ...</li>
<li><a
href="c787fe4ed1"><code>c787fe4</code></a>
docs: restrict-template-expressions - remove mention of numbers being
allowed...</li>
<li>Additional commits viewable in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.4.0/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=6.21.0&new-version=7.4.0)](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>
2024-03-27 07:33:12 +01:00
dependabot[bot]
f2eda90e53 Bump @typescript-eslint/parser from 7.3.1 to 7.4.0 in /frontend (#619)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.3.1 to 7.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.4.0</h2>
<h2>7.4.0 (2024-03-25)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [consistent-type-imports] ignore
files with decorators, experimentalDecorators, and emitDecoratorMetadata
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8335">#8335</a>)
<ul>
<li>Check out our blog post on this change for more information! <a
href="https://typescript-eslint.io/blog/changes-to-consistent-type-imports-with-decorators">https://typescript-eslint.io/blog/changes-to-consistent-type-imports-with-decorators</a></li>
</ul>
</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-arguments]
handle tagged templates (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8708">#8708</a>)</li>
<li><strong>eslint-plugin:</strong> deprecate no-throw-literal and add a
renamed only-throw-error (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8701">#8701</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] address
multipart nullish checks false positive (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8678">#8678</a>)</li>
<li><strong>eslint-plugin:</strong> [prefer-optional-chain] properly
disambiguate between <code>boolean</code> and <code>false</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8685">#8685</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
avoid remove const casting on template literals with expressions inside
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8740">#8740</a>)</li>
<li><strong>typescript-eslint:</strong> declare peer dependency on
<code>utils</code> to ensure npm correctly installs dependencies (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8738">#8738</a>)</li>
<li><strong>website:</strong> visual Editor is not scrolled (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8709">#8709</a>)</li>
<li><strong>website:</strong> make 404 page good again (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8750">#8750</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Josh Goldberg </li>
<li>Kim Sang Du <a
href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li>
<li>Kirk Waiblinger <a
href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li>
<li>Marco Pasqualetti <a
href="https://github.com/marcalexiei"><code>@​marcalexiei</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></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/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.4.0 (2024-03-25)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [consistent-type-imports] ignore
files with decorators, experimentalDecorators, and
emitDecoratorMetadata</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Brad Zacher</li>
<li>Josh Goldberg </li>
<li>Kim Sang Du</li>
<li>Kirk Waiblinger</li>
<li>Marco Pasqualetti</li>
<li>YeonJuan</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="5d24691422"><code>5d24691</code></a>
chore(release): publish 7.4.0</li>
<li><a
href="e408b93e48"><code>e408b93</code></a>
feat(eslint-plugin): [consistent-type-imports] ignore files with
decorators, ...</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.4.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.3.1&new-version=7.4.0)](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>
2024-03-26 07:50:20 +01:00
dependabot[bot]
b1f9b4c0d9 Bump @hello-pangea/dnd from 16.5.0 to 16.6.0 in /frontend (#618)
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 />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@hello-pangea/dnd&package-manager=npm_and_yarn&previous-version=16.5.0&new-version=16.6.0)](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>
2024-03-25 07:43:01 +01:00