Commit Graph

501 Commits

Author SHA1 Message Date
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
dependabot[bot]
2058da8ce7 Bump @typescript-eslint/parser from 7.5.0 to 7.6.0 in /frontend (#638)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.5.0 to 7.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.6.0</h2>
<h2>7.6.0 (2024-04-08)</h2>
<h3>🚀 Features</h3>
<ul>
<li>add <code>name</code> field to shared configs and flat config types
(<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8863">#8863</a>)</li>
<li>bump npm dependency ranges (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8860">#8860</a>)
<ul>
<li>note: this does not include support for ESLint v9 - see <a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/8211">typescript-eslint/typescript-eslint#8211</a>
for progress.</li>
</ul>
</li>
<li><strong>utils:</strong> add types for both flat and legacy eslint
classes (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8861">#8861</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>typescript-eslint:</strong> fix type errors when using
<code>exactOptionalPropertyTypes</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8786">#8786</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.6.0 (2024-04-08)</h2>
<h3>🚀 Features</h3>
<ul>
<li>bump npm dependency ranges</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>auvred</li>
<li>Brad Zacher</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e1db872655"><code>e1db872</code></a>
chore(release): publish 7.6.0</li>
<li><a
href="a6ab2cb9be"><code>a6ab2cb</code></a>
feat: bump npm dependency ranges (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8860">#8860</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.6.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.5.0&new-version=7.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

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


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@testing-library/dom&package-manager=npm_and_yarn&previous-version=9.3.4&new-version=10.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-09 09:38:00 +02:00
dependabot[bot]
ca4c58ec29 Bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.5.0 in /frontend (#635)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.4.0 to 7.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/eslint-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.5.0</h2>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-floating-promises] handle
TaggedTemplateExpression (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8758">#8758</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
handle exactOptionalPropertyTypes compiler option (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8770">#8770</a>)</li>
<li><strong>parser:</strong> disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8784">#8784</a>)</li>
<li><strong>typescript-eslint:</strong> improve support for legacy
configs (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8812">#8812</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Mark de Dios <a
href="https://github.com/peanutenthusiast"><code>@​peanutenthusiast</code></a></li>
<li>Naru <a
href="https://github.com/naruaway"><code>@​naruaway</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md"><code>@​typescript-eslint/eslint-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [no-floating-promises] handle
TaggedTemplateExpression</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
handle exactOptionalPropertyTypes compiler option</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher</li>
<li>Kim Sang Du</li>
<li>Mark de Dios</li>
<li>Naru</li>
<li>YeonJuan</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a14ba9d458"><code>a14ba9d</code></a>
chore(release): publish 7.5.0</li>
<li><a
href="ecb6b55425"><code>ecb6b55</code></a>
docs: add homepage (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8742">#8742</a>)</li>
<li><a
href="f0b1c4fb63"><code>f0b1c4f</code></a>
fix(eslint-plugin): [no-unnecessary-type-assertion] handle
exactOptionalPrope...</li>
<li><a
href="570726872b"><code>5707268</code></a>
fix(eslint-plugin): [no-floating-promises] handle
TaggedTemplateExpression (#...</li>
<li><a
href="ca561e2e6f"><code>ca561e2</code></a>
chore: manually updated local package.jsons to 7.4.0 (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8775">#8775</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=7.4.0&new-version=7.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-08 08:43:57 +02:00
dependabot[bot]
789e2dbe66 Bump @types/node from 20.11.5 to 20.12.5 in /frontend (#634)
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
from 20.11.5 to 20.12.5.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=20.11.5&new-version=20.12.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-08 07:42:27 +02:00
dependabot[bot]
020e339ec1 Bump @typescript-eslint/parser from 7.4.0 to 7.5.0 in /frontend (#633)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.4.0 to 7.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.5.0</h2>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-floating-promises] handle
TaggedTemplateExpression (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8758">#8758</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
handle exactOptionalPropertyTypes compiler option (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8770">#8770</a>)</li>
<li><strong>parser:</strong> disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8784">#8784</a>)</li>
<li><strong>typescript-eslint:</strong> improve support for legacy
configs (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8812">#8812</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Mark de Dios <a
href="https://github.com/peanutenthusiast"><code>@​peanutenthusiast</code></a></li>
<li>Naru <a
href="https://github.com/naruaway"><code>@​naruaway</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>7.5.0 (2024-04-01)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>parser:</strong> disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code></li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Brad Zacher</li>
<li>Kim Sang Du</li>
<li>Mark de Dios</li>
<li>Naru</li>
<li>YeonJuan</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a14ba9d458"><code>a14ba9d</code></a>
chore(release): publish 7.5.0</li>
<li><a
href="ecb6b55425"><code>ecb6b55</code></a>
docs: add homepage (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8742">#8742</a>)</li>
<li><a
href="d5615d72fb"><code>d5615d7</code></a>
fix(parser): disallow
<code>errorOnTypeScriptSyntacticAndSemanticIssues</code> (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8784">#8784</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/parser">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.4.0&new-version=7.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

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


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/form&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-07 11:09:40 +02:00
dependabot[bot]
13194ca4c0 Bump eslint-config-mantine from 3.1.0 to 3.2.0 in /frontend (#625)
Bumps
[eslint-config-mantine](https://github.com/mantinedev/eslint-config-mantine)
from 3.1.0 to 3.2.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/mantinedev/eslint-config-mantine/commits">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-config-mantine&package-manager=npm_and_yarn&previous-version=3.1.0&new-version=3.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

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


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/eslint-plugin&package-manager=npm_and_yarn&previous-version=6.21.0&new-version=7.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-27 07:33:12 +01:00
dependabot[bot]
a42227ca6b Bump express from 4.18.2 to 4.19.2 in /docs (#620)
Bumps [express](https://github.com/expressjs/express) from 4.18.2 to
4.19.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/expressjs/express/releases">express's
releases</a>.</em></p>
<blockquote>
<h2>4.19.2</h2>
<h2>What's Changed</h2>
<ul>
<li><a
href="0b746953c4">Improved
fix for open redirect allow list bypass</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/expressjs/express/compare/4.19.1...4.19.2">https://github.com/expressjs/express/compare/4.19.1...4.19.2</a></p>
<h2>4.19.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix ci after location patch by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5552">expressjs/express#5552</a></li>
<li>fixed un-edited version in history.md for 4.19.0 by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5556">expressjs/express#5556</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/expressjs/express/compare/4.19.0...4.19.1">https://github.com/expressjs/express/compare/4.19.0...4.19.1</a></p>
<h2>4.19.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix typo in release date by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5527">expressjs/express#5527</a></li>
<li>docs: nominating <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> to be
project captian by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5511">expressjs/express#5511</a></li>
<li>docs: loosen TC activity rules by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5510">expressjs/express#5510</a></li>
<li>Add note on how to update docs for new release by <a
href="https://github.com/crandmck"><code>@​crandmck</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5541">expressjs/express#5541</a></li>
<li><a
href="660ccf5fa3">Prevent
open redirect allow list bypass due to encodeurl</a></li>
<li>Release 4.19.0 by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5551">expressjs/express#5551</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/crandmck"><code>@​crandmck</code></a>
made their first contribution in <a
href="https://redirect.github.com/expressjs/express/pull/5541">expressjs/express#5541</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/expressjs/express/compare/4.18.3...4.19.0">https://github.com/expressjs/express/compare/4.18.3...4.19.0</a></p>
<h2>4.18.3</h2>
<h2>Main Changes</h2>
<ul>
<li>Fix routing requests without method</li>
<li>deps: body-parser@1.20.2
<ul>
<li>Fix strict json error message on Node.js 19+</li>
<li>deps: content-type@~1.0.5</li>
<li>deps: raw-body@2.5.2</li>
</ul>
</li>
</ul>
<h2>Other Changes</h2>
<ul>
<li>Use https: protocol instead of deprecated git: protocol by <a
href="https://github.com/vcsjones"><code>@​vcsjones</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5032">expressjs/express#5032</a></li>
<li>build: Node.js@16.18 and Node.js@18.12 by <a
href="https://github.com/abenhamdine"><code>@​abenhamdine</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5034">expressjs/express#5034</a></li>
<li>ci: update actions/checkout to v3 by <a
href="https://github.com/armujahid"><code>@​armujahid</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5027">expressjs/express#5027</a></li>
<li>test: remove unused function arguments in params by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5124">expressjs/express#5124</a></li>
<li>Remove unused originalIndex from acceptParams by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5119">expressjs/express#5119</a></li>
<li>Fixed typos by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5117">expressjs/express#5117</a></li>
<li>examples: remove unused params by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5113">expressjs/express#5113</a></li>
<li>fix: parameter str is not described in JSDoc by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5130">expressjs/express#5130</a></li>
<li>fix: typos in History.md by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5131">expressjs/express#5131</a></li>
<li>build : add Node.js@19.7 by <a
href="https://github.com/abenhamdine"><code>@​abenhamdine</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5028">expressjs/express#5028</a></li>
<li>test: remove unused function arguments in params by <a
href="https://github.com/raksbisht"><code>@​raksbisht</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5137">expressjs/express#5137</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/expressjs/express/blob/master/History.md">express's
changelog</a>.</em></p>
<blockquote>
<h1>4.19.2 / 2024-03-25</h1>
<ul>
<li>Improved fix for open redirect allow list bypass</li>
</ul>
<h1>4.19.1 / 2024-03-20</h1>
<ul>
<li>Allow passing non-strings to res.location with new encoding handling
checks</li>
</ul>
<h1>4.19.0 / 2024-03-20</h1>
<ul>
<li>Prevent open redirect allow list bypass due to encodeurl</li>
<li>deps: cookie@0.6.0</li>
</ul>
<h1>4.18.3 / 2024-02-29</h1>
<ul>
<li>Fix routing requests without method</li>
<li>deps: body-parser@1.20.2
<ul>
<li>Fix strict json error message on Node.js 19+</li>
<li>deps: content-type@~1.0.5</li>
<li>deps: raw-body@2.5.2</li>
</ul>
</li>
<li>deps: cookie@0.6.0
<ul>
<li>Add <code>partitioned</code> option</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="04bc62787b"><code>04bc627</code></a>
4.19.2</li>
<li><a
href="da4d763ff6"><code>da4d763</code></a>
Improved fix for open redirect allow list bypass</li>
<li><a
href="4f0f6cc67d"><code>4f0f6cc</code></a>
4.19.1</li>
<li><a
href="a003cfab03"><code>a003cfa</code></a>
Allow passing non-strings to res.location with new encoding handling
checks f...</li>
<li><a
href="a1fa90fcea"><code>a1fa90f</code></a>
fixed un-edited version in history.md for 4.19.0</li>
<li><a
href="11f2b1db22"><code>11f2b1d</code></a>
build: fix build due to inconsistent supertest behavior in older
versions</li>
<li><a
href="084e36506a"><code>084e365</code></a>
4.19.0</li>
<li><a
href="0867302ddb"><code>0867302</code></a>
Prevent open redirect allow list bypass due to encodeurl</li>
<li><a
href="567c9c665d"><code>567c9c6</code></a>
Add note on how to update docs for new release (<a
href="https://redirect.github.com/expressjs/express/issues/5541">#5541</a>)</li>
<li><a
href="69a4cf2819"><code>69a4cf2</code></a>
deps: cookie@0.6.0</li>
<li>Additional commits viewable in <a
href="https://github.com/expressjs/express/compare/4.18.2...4.19.2">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/~wesleytodd">wesleytodd</a>, a new releaser
for express since your current version.</p>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.18.2&new-version=4.19.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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/evroon/bracket/network/alerts).

</details>

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


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@typescript-eslint/parser&package-manager=npm_and_yarn&previous-version=7.3.1&new-version=7.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-26 07:50:20 +01:00