Commit Graph

511 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
4ab77afcfc Add stale bot (#698) 2024-05-04 11:43:50 +02:00
Erik Vroon
949c04b573 Codecov: ignore alembic (#689) v1.4.7 2024-05-04 10:49:50 +02:00
Erik Vroon
2a84d0bc6c Update translation info (#688) 2024-05-03 22:43:28 +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
github-actions[bot]
7332b9906b Update contributors in docs (#685)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-05-03 21:21:49 +02:00
github-actions[bot]
0f2bb6ad27 Update contributors in readme (#686)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-05-03 20:16:58 +02:00
Danny Piper
05891698d6 Expose port 8400 in backend Dockerfile (#671) 2024-05-03 19:59:05 +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]
ca8a240379 Update pytest requirement from <=8.1.1 to <=8.2.0 in /backend (#669)
Updates the requirements on
[pytest](https://github.com/pytest-dev/pytest) to permit the latest
version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest/releases">pytest's
releases</a>.</em></p>
<blockquote>
<h2>8.2.0</h2>
<h1>pytest 8.2.0 (2024-04-27)</h1>
<h2>Deprecations</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12069">#12069</a>:
A deprecation warning is now raised when implementations of one of the
following hooks request a deprecated <code>py.path.local</code>
parameter instead of the <code>pathlib.Path</code> parameter which
replaced it:</p>
<ul>
<li><code>pytest_ignore_collect</code>{.interpreted-text
role=&quot;hook&quot;} - the <code>path</code> parameter - use
<code>collection_path</code> instead.</li>
<li><code>pytest_collect_file</code>{.interpreted-text
role=&quot;hook&quot;} - the <code>path</code> parameter - use
<code>file_path</code> instead.</li>
<li><code>pytest_pycollect_makemodule</code>{.interpreted-text
role=&quot;hook&quot;} - the <code>path</code> parameter - use
<code>module_path</code> instead.</li>
<li><code>pytest_report_header</code>{.interpreted-text
role=&quot;hook&quot;} - the <code>startdir</code> parameter - use
<code>start_path</code> instead.</li>
<li><code>pytest_report_collectionfinish</code>{.interpreted-text
role=&quot;hook&quot;} - the <code>startdir</code> parameter - use
<code>start_path</code> instead.</li>
</ul>
<p>The replacement parameters are available since pytest 7.0.0.
The old parameters will be removed in pytest 9.0.0.</p>
<p>See <code>legacy-path-hooks-deprecated</code>{.interpreted-text
role=&quot;ref&quot;} for more details.</p>
</li>
</ul>
<h2>Features</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11871">#11871</a>:
Added support for reading command line arguments from a file using the
prefix character <code>@</code>, like e.g.: <code>pytest
@tests.txt</code>. The file must have one argument per line.</p>
<p>See <code>Read arguments from file
&lt;args-from-file&gt;</code>{.interpreted-text role=&quot;ref&quot;}
for details.</p>
</li>
</ul>
<h2>Improvements</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11523">#11523</a>:
<code>pytest.importorskip</code>{.interpreted-text
role=&quot;func&quot;} will now issue a warning if the module could be
found, but raised <code>ImportError</code>{.interpreted-text
role=&quot;class&quot;} instead of
<code>ModuleNotFoundError</code>{.interpreted-text
role=&quot;class&quot;}.</p>
<p>The warning can be suppressed by passing
<code>exc_type=ImportError</code> to
<code>pytest.importorskip</code>{.interpreted-text
role=&quot;func&quot;}.</p>
<p>See <code>import-or-skip-import-error</code>{.interpreted-text
role=&quot;ref&quot;} for details.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11728">#11728</a>:
For <code>unittest</code>-based tests, exceptions during class cleanup
(as raised by functions registered with <code>TestCase.addClassCleanup
&lt;unittest.TestCase.addClassCleanup&gt;</code>{.interpreted-text
role=&quot;meth&quot;}) are now reported instead of silently
failing.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11777">#11777</a>:
Text is no longer truncated in the <code>short test summary info</code>
section when <code>-vv</code> is given.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12112">#12112</a>:
Improved namespace packages detection when
<code>consider_namespace_packages</code>{.interpreted-text
role=&quot;confval&quot;} is enabled, covering more situations (like
editable installs).</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/9502">#9502</a>:
Added <code>PYTEST_VERSION</code>{.interpreted-text
role=&quot;envvar&quot;} environment variable which is defined at the
start of the pytest session and undefined afterwards. It contains the
value of <code>pytest.__version__</code>, and among other things can be
used to easily check if code is running from within a pytest run.</p>
</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12065">#12065</a>:
Fixed a regression in pytest 8.0.0 where test classes containing
<code>setup_method</code> and tests using <code>@staticmethod</code> or
<code>@classmethod</code> would crash with <code>AttributeError:
'NoneType' object has no attribute 'setup_method'</code>.</p>
<p>Now the <code>request.instance
&lt;pytest.FixtureRequest.instance&gt;</code>{.interpreted-text
role=&quot;attr&quot;} attribute of tests using
<code>@staticmethod</code> and <code>@classmethod</code> is no longer
<code>None</code>, but a fresh instance of the class, like in non-static
methods.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="6bd3f31344"><code>6bd3f31</code></a>
Tweak changelog for 8.2.0</li>
<li><a
href="9b6219b5e8"><code>9b6219b</code></a>
Prepare release version 8.2.0</li>
<li><a
href="835765c9d3"><code>835765c</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12130">#12130</a>
from bluetech/fixtures-inline</li>
<li><a
href="7e7503c0b0"><code>7e7503c</code></a>
unittest: report class cleanup exceptions (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/12250">#12250</a>)</li>
<li><a
href="882c4da2f3"><code>882c4da</code></a>
fixtures: inline <code>fail_fixturefunc</code></li>
<li><a
href="2e8fb9f140"><code>2e8fb9f</code></a>
fixtures: extract a <code>_check_fixturedef</code> method</li>
<li><a
href="acf2971f46"><code>acf2971</code></a>
fixtures: inline <code>_getnextfixturedef</code> into
<code>_get_active_fixturedef</code></li>
<li><a
href="3c77aec1da"><code>3c77aec</code></a>
fixtures: move &quot;request&quot; check early</li>
<li><a
href="d217d68cde"><code>d217d68</code></a>
fixtures: inline <code>_compute_fixture_value</code></li>
<li><a
href="530be28575"><code>530be28</code></a>
fixtures: use early return in <code>_get_active_fixturedef</code></li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest/compare/1.0.0b3...8.2.0">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-30 08:56:25 +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]
9d58a275fb Update pytest-asyncio requirement from <=0.21.1 to <=0.21.2 in /backend (#672)
Updates the requirements on
[pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit
the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's
releases</a>.</em></p>
<blockquote>
<h2>pytest-asyncio 0.21.2</h2>
<h1>0.21.2 (2024-04-29)</h1>
<ul>
<li>Fix compatibility with pytest 8.2. Backport of <a
href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/800">#800</a>
to pytest-asyncio v0.21 for users who are unable to upgrade to a more
recent version (see <a
href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/706">#706</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="12de7f6c7d"><code>12de7f6</code></a>
[ci] Do not fail CI pipeline, if coverage upload fails.</li>
<li><a
href="b4aebfbd32"><code>b4aebfb</code></a>
[test] Addresses a Hypothesis health check that leads to failing
tests.</li>
<li><a
href="ef6144a41c"><code>ef6144a</code></a>
[refactor] Satisfy linters.</li>
<li><a
href="df294815c7"><code>df29481</code></a>
[docs] Added changelog entry.</li>
<li><a
href="2fb3b19ade"><code>2fb3b19</code></a>
Backported <a
href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/800">#800</a>
to the 0.21.1 tag</li>
<li><a
href="a10cbde05f"><code>a10cbde</code></a>
[docs] Fixed typo.</li>
<li><a
href="82b010d686"><code>82b010d</code></a>
[docs] Add release date of v0.21.1 to changelog.</li>
<li><a
href="af08b1c70d"><code>af08b1c</code></a>
[test] Removed obsolete test &quot;test_async_close_loop&quot;.</li>
<li><a
href="79b2d1aed3"><code>79b2d1a</code></a>
[test] Added a test case which verifies compatibility with pytest.skip
in aut...</li>
<li><a
href="39a97548bf"><code>39a9754</code></a>
[test] The test that asserts compatibility with pytest.mark.skip reports
succ...</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.1.1...v0.21.2">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| pytest-asyncio | [>= 0.23.a, < 0.24] |
</details>


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:04 +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]
62899b9e33 Update pluggy requirement from <=1.4.0 to <=1.5.0 in /backend (#662)
Updates the requirements on
[pluggy](https://github.com/pytest-dev/pluggy) to permit the latest
version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.5.0 (2024-04-19)</h1>
<h2>Features</h2>
<ul>
<li>
<p><code>[#178](https://github.com/pytest-dev/pluggy/issues/178)
&lt;https://github.com/pytest-dev/pluggy/issues/178&gt;</code>_: Add
support for deprecating specific hook parameters, or more generally, for
issuing a warning whenever a hook implementation requests certain
parameters.</p>
<p>See :ref:<code>warn_on_impl</code> for details.</p>
</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><code>[#481](https://github.com/pytest-dev/pluggy/issues/481)
&lt;https://github.com/pytest-dev/pluggy/issues/481&gt;</code>_:
<code>PluginManager.get_plugins()</code> no longer returns
<code>None</code> for blocked plugins.</li>
</ul>
<h1>pluggy 1.4.0 (2024-01-24)</h1>
<h2>Features</h2>
<ul>
<li>
<p><code>[#463](https://github.com/pytest-dev/pluggy/issues/463)
&lt;https://github.com/pytest-dev/pluggy/issues/463&gt;</code>_: A
warning :class:<code>~pluggy.PluggyTeardownRaisedWarning</code> is now
issued when an old-style hookwrapper raises an exception during
teardown.
See the warning documentation for more details.</p>
</li>
<li>
<p><code>[#471](https://github.com/pytest-dev/pluggy/issues/471)
&lt;https://github.com/pytest-dev/pluggy/issues/471&gt;</code>_: Add
:func:<code>PluginManager.unblock
&lt;pluggy.PluginManager.unblock&gt;</code> method to unblock a plugin
by plugin name.</p>
</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#441](https://github.com/pytest-dev/pluggy/issues/441)
&lt;https://github.com/pytest-dev/pluggy/issues/441&gt;</code>_: Fix
:func:<code>~pluggy.HookCaller.call_extra()</code> extra methods getting
ordered before everything else in some circumstances. Regressed in
pluggy 1.1.0.</p>
</li>
<li>
<p><code>[#438](https://github.com/pytest-dev/pluggy/issues/438)
&lt;https://github.com/pytest-dev/pluggy/issues/438&gt;</code>_: Fix
plugins registering other plugins in a hook when the other plugins
implement the same hook itself. Regressed in pluggy 1.1.0.</p>
</li>
</ul>
<h1>pluggy 1.3.0 (2023-08-26)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#426](https://github.com/pytest-dev/pluggy/issues/426)
&lt;https://github.com/pytest-dev/pluggy/issues/426&gt;</code>_: Python
3.7 is no longer supported.</li>
</ul>
<h2>Features</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f8aa4a0097"><code>f8aa4a0</code></a>
Preparing release 1.5.0</li>
<li><a
href="b4a8c92fb1"><code>b4a8c92</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/495">#495</a>
from bluetech/warn-on-impl-args</li>
<li><a
href="6f6ea680ca"><code>6f6ea68</code></a>
Add support deprecating hook parameters</li>
<li><a
href="91f88d28e3"><code>91f88d2</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/496">#496</a>
from bluetech/codecov-action</li>
<li><a
href="89ce829b44"><code>89ce829</code></a>
ci: replace upload-coverage script with codecov github action</li>
<li><a
href="29f104d21f"><code>29f104d</code></a>
Lift pluggy (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/493">#493</a>)</li>
<li><a
href="c2b36b44af"><code>c2b36b4</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/491">#491</a>
from pytest-dev/pre-commit-ci-update-config</li>
<li><a
href="2b533c9d9f"><code>2b533c9</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li><a
href="04d1bcdbc7"><code>04d1bcd</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/490">#490</a>)</li>
<li><a
href="f74e94b17d"><code>f74e94b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/489">#489</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/0.3.0...1.5.0">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-22 08:47:17 +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]
4922dd9722 Bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0 (#658)
Bumps
[JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action)
from 4.5.0 to 4.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jamesives/github-pages-deploy-action/releases">JamesIves/github-pages-deploy-action's
releases</a>.</em></p>
<blockquote>
<h2>v4.6.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Check for fatal on every line of stderr of the git command by <a
href="https://github.com/ben-z"><code>@​ben-z</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1551">JamesIves/github-pages-deploy-action#1551</a></li>
<li>build(deps): bump github/codeql-action from 2 to 3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1488">JamesIves/github-pages-deploy-action#1488</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.8.3 to 7.23.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1460">JamesIves/github-pages-deploy-action#1460</a></li>
<li>build(deps-dev): bump eslint-plugin-jest from 27.2.3 to 27.6.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1469">JamesIves/github-pages-deploy-action#1469</a></li>
<li>build(deps-dev): bump <code>@​types/node</code> from 20.10.0 to
20.11.6 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1507">JamesIves/github-pages-deploy-action#1507</a></li>
<li>build(deps-dev): bump eslint-plugin-jest from 27.6.0 to 27.6.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1501">JamesIves/github-pages-deploy-action#1501</a></li>
<li>build(deps-dev): bump <code>@​types/node</code> from 20.11.6 to
20.11.13 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1513">JamesIves/github-pages-deploy-action#1513</a></li>
<li>build(deps): bump codecov/codecov-action from 3.1.4 to 3.1.6 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1512">JamesIves/github-pages-deploy-action#1512</a></li>
<li>Bump <code>@​actions/core</code> from 1.10.0 to 1.10.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1434">JamesIves/github-pages-deploy-action#1434</a></li>
<li>Bump codecov/codecov-action from 3.1.6 to 4.0.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1515">JamesIves/github-pages-deploy-action#1515</a></li>
<li>Bump <code>@​types/node</code> from 20.11.13 to 20.11.16 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1516">JamesIves/github-pages-deploy-action#1516</a></li>
<li>Bump codecov/codecov-action from 4.0.0 to 4.0.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1517">JamesIves/github-pages-deploy-action#1517</a></li>
<li>Bump <code>@​types/node</code> from 20.11.16 to 20.11.22 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1534">JamesIves/github-pages-deploy-action#1534</a></li>
<li>Bump <code>@​types/node</code> from 20.11.22 to 20.11.25 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1537">JamesIves/github-pages-deploy-action#1537</a></li>
<li>Bump codecov/codecov-action from 4.0.1 to 4.1.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1532">JamesIves/github-pages-deploy-action#1532</a></li>
<li>Bump eslint-plugin-jest from 27.6.3 to 27.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1526">JamesIves/github-pages-deploy-action#1526</a></li>
<li>Bump webfactory/ssh-agent from 0.8.0 to 0.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1520">JamesIves/github-pages-deploy-action#1520</a></li>
<li>Bump actions/checkout in README by <a
href="https://github.com/verhovsky"><code>@​verhovsky</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1523">JamesIves/github-pages-deploy-action#1523</a></li>
<li>Bump codecov/codecov-action from 4.1.0 to 4.1.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1547">JamesIves/github-pages-deploy-action#1547</a></li>
<li>Bump <code>@​types/node</code> from 20.11.25 to 20.11.30 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1545">JamesIves/github-pages-deploy-action#1545</a></li>
<li>Bump <code>@​types/node</code> from 20.11.30 to 20.12.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1550">JamesIves/github-pages-deploy-action#1550</a></li>
<li>Bump <code>@​types/node</code> from 20.12.2 to 20.12.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1552">JamesIves/github-pages-deploy-action#1552</a></li>
<li>Bump <code>@​types/node</code> from 20.12.3 to 20.12.6 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1557">JamesIves/github-pages-deploy-action#1557</a></li>
<li>Bump codecov/codecov-action from 4.1.1 to 4.3.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1559">JamesIves/github-pages-deploy-action#1559</a></li>
<li>Bump <code>@​types/node</code> from 20.12.6 to 20.12.7 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1558">JamesIves/github-pages-deploy-action#1558</a></li>
<li>Bump <code>@​actions/github</code> from 5.1.1 to 6.0.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1455">JamesIves/github-pages-deploy-action#1455</a></li>
<li>build(deps): bump actions/upload-artifact from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1490">JamesIves/github-pages-deploy-action#1490</a></li>
<li>build(deps): bump actions/download-artifact from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1489">JamesIves/github-pages-deploy-action#1489</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/verhovsky"><code>@​verhovsky</code></a>
made their first contribution in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1523">JamesIves/github-pages-deploy-action#1523</a></li>
<li><a href="https://github.com/ben-z"><code>@​ben-z</code></a> made
their first contribution in <a
href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1551">JamesIves/github-pages-deploy-action#1551</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/JamesIves/github-pages-deploy-action/compare/v4.5.0...v4.6.0">https://github.com/JamesIves/github-pages-deploy-action/compare/v4.5.0...v4.6.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ec9c88baef"><code>ec9c88b</code></a>
Merge branch 'releases/v4' of <a
href="https://github.com/JamesIves/github-pages-deplo">https://github.com/JamesIves/github-pages-deplo</a>...</li>
<li><a
href="e58e46c5c6"><code>e58e46c</code></a>
Delete .eslintrc.json</li>
<li><a
href="19d08120f6"><code>19d0812</code></a>
Deploy Production Code for Commit
1008d185fbd2e25a24f2da400f5ad62db137c39d 🚀</li>
<li><a
href="1008d185fb"><code>1008d18</code></a>
Merge branch 'dev' into releases/v4</li>
<li><a
href="d60bb0b490"><code>d60bb0b</code></a>
Update sponsors.yml</li>
<li><a
href="69873ad915"><code>69873ad</code></a>
Update eslint.config.mjs</li>
<li><a
href="d37392594b"><code>d373925</code></a>
Update worktree.test.ts</li>
<li><a
href="9c1917a562"><code>9c1917a</code></a>
fix: migrate to ESLint 9</li>
<li><a
href="ea27152698"><code>ea27152</code></a>
Merge branch 'dev' of <a
href="https://github.com/JamesIves/github-pages-deploy-action">https://github.com/JamesIves/github-pages-deploy-action</a>...</li>
<li><a
href="6727ffe63c"><code>6727ffe</code></a>
chore: resolve formatting changes from newer prettier version</li>
<li>Additional commits viewable in <a
href="https://github.com/jamesives/github-pages-deploy-action/compare/v4.5.0...v4.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=JamesIves/github-pages-deploy-action&package-manager=github_actions&previous-version=4.5.0&new-version=4.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-18 08:41:50 +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