Commit Graph

540 Commits

Author SHA1 Message Date
IzStriker
eb141b59b5 fix: stage selection (#744)
Fixes #728
v1.5.0
2024-05-24 17:45:10 +02:00
dependabot[bot]
4d76c8bb17 Bump @mantine/dropzone from 7.9.2 to 7.10.0 in /frontend (#740)
Bumps
[@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone)
from 7.9.2 to 7.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/dropzone</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.10.0 😎</h2>
<p><a href="https://mantine.dev/changelog/7-10-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Tree component</h2>
<p>New <a href="https://mantine.dev/core/tree">Tree</a> component:</p>
<pre lang="tsx"><code>import { IconFolder, IconFolderOpen } from
'@tabler/icons-react';
import { Group, RenderTreeNodePayload, Tree } from '@mantine/core';
import { CssIcon, NpmIcon, TypeScriptCircleIcon } from
'@mantinex/dev-icons';
import { data, dataCode } from './data';
import classes from './Demo.module.css';
<p>interface FileIconProps {
name: string;
isFolder: boolean;
expanded: boolean;
}</p>
<p>function FileIcon({ name, isFolder, expanded }: FileIconProps) {
if (name.endsWith('package.json')) {
return &lt;NpmIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.ts') || name.endsWith('.tsx') ||
name.endsWith('tsconfig.json')) {
return &lt;TypeScriptCircleIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.css')) {
return &lt;CssIcon size={14} /&gt;;
}</p>
<p>if (isFolder) {
return expanded ? (
&lt;IconFolderOpen color=&quot;var(--mantine-color-yellow-9)&quot;
size={14} stroke={2.5} /&gt;
) : (
&lt;IconFolder color=&quot;var(--mantine-color-yellow-9)&quot; size={14}
stroke={2.5} /&gt;
);
}</p>
<p>return null;
}</p>
<p>function Leaf({ node, expanded, hasChildren, elementProps }:
RenderTreeNodePayload) {
return (
&lt;Group gap={5} {...elementProps}&gt;
&lt;FileIcon name={node.value} isFolder={hasChildren}
expanded={expanded} /&gt;
&lt;span&gt;{node.label}&lt;/span&gt;
&lt;/Group&gt;
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="276050e6f0"><code>276050e</code></a>
[release] Version: 7.10.0</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.10.0/packages/@mantine/dropzone">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/dropzone&package-manager=npm_and_yarn&previous-version=7.9.2&new-version=7.10.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-24 09:49:04 +02:00
dependabot[bot]
7e4004018b Bump @mantine/spotlight from 7.9.0 to 7.10.0 in /frontend (#741)
Bumps
[@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight)
from 7.9.0 to 7.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/spotlight</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.10.0 😎</h2>
<p><a href="https://mantine.dev/changelog/7-10-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Tree component</h2>
<p>New <a href="https://mantine.dev/core/tree">Tree</a> component:</p>
<pre lang="tsx"><code>import { IconFolder, IconFolderOpen } from
'@tabler/icons-react';
import { Group, RenderTreeNodePayload, Tree } from '@mantine/core';
import { CssIcon, NpmIcon, TypeScriptCircleIcon } from
'@mantinex/dev-icons';
import { data, dataCode } from './data';
import classes from './Demo.module.css';
<p>interface FileIconProps {
name: string;
isFolder: boolean;
expanded: boolean;
}</p>
<p>function FileIcon({ name, isFolder, expanded }: FileIconProps) {
if (name.endsWith('package.json')) {
return &lt;NpmIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.ts') || name.endsWith('.tsx') ||
name.endsWith('tsconfig.json')) {
return &lt;TypeScriptCircleIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.css')) {
return &lt;CssIcon size={14} /&gt;;
}</p>
<p>if (isFolder) {
return expanded ? (
&lt;IconFolderOpen color=&quot;var(--mantine-color-yellow-9)&quot;
size={14} stroke={2.5} /&gt;
) : (
&lt;IconFolder color=&quot;var(--mantine-color-yellow-9)&quot; size={14}
stroke={2.5} /&gt;
);
}</p>
<p>return null;
}</p>
<p>function Leaf({ node, expanded, hasChildren, elementProps }:
RenderTreeNodePayload) {
return (
&lt;Group gap={5} {...elementProps}&gt;
&lt;FileIcon name={node.value} isFolder={hasChildren}
expanded={expanded} /&gt;
&lt;span&gt;{node.label}&lt;/span&gt;
&lt;/Group&gt;
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="276050e6f0"><code>276050e</code></a>
[release] Version: 7.10.0</li>
<li><a
href="3a4f65d9c8"><code>3a4f65d</code></a>
[release] Version: 7.9.2</li>
<li><a
href="44c3ffd981"><code>44c3ffd</code></a>
[release] Version: 7.9.1</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.10.0/packages/@mantine/spotlight">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/spotlight&package-manager=npm_and_yarn&previous-version=7.9.0&new-version=7.10.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-24 08:52:05 +02:00
dependabot[bot]
b5d34985e3 Bump @mantine/form from 7.9.0 to 7.10.0 in /frontend (#739)
Bumps
[@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form)
from 7.9.0 to 7.10.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.10.0 😎</h2>
<p><a href="https://mantine.dev/changelog/7-10-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Tree component</h2>
<p>New <a href="https://mantine.dev/core/tree">Tree</a> component:</p>
<pre lang="tsx"><code>import { IconFolder, IconFolderOpen } from
'@tabler/icons-react';
import { Group, RenderTreeNodePayload, Tree } from '@mantine/core';
import { CssIcon, NpmIcon, TypeScriptCircleIcon } from
'@mantinex/dev-icons';
import { data, dataCode } from './data';
import classes from './Demo.module.css';
<p>interface FileIconProps {
name: string;
isFolder: boolean;
expanded: boolean;
}</p>
<p>function FileIcon({ name, isFolder, expanded }: FileIconProps) {
if (name.endsWith('package.json')) {
return &lt;NpmIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.ts') || name.endsWith('.tsx') ||
name.endsWith('tsconfig.json')) {
return &lt;TypeScriptCircleIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.css')) {
return &lt;CssIcon size={14} /&gt;;
}</p>
<p>if (isFolder) {
return expanded ? (
&lt;IconFolderOpen color=&quot;var(--mantine-color-yellow-9)&quot;
size={14} stroke={2.5} /&gt;
) : (
&lt;IconFolder color=&quot;var(--mantine-color-yellow-9)&quot; size={14}
stroke={2.5} /&gt;
);
}</p>
<p>return null;
}</p>
<p>function Leaf({ node, expanded, hasChildren, elementProps }:
RenderTreeNodePayload) {
return (
&lt;Group gap={5} {...elementProps}&gt;
&lt;FileIcon name={node.value} isFolder={hasChildren}
expanded={expanded} /&gt;
&lt;span&gt;{node.label}&lt;/span&gt;
&lt;/Group&gt;
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="276050e6f0"><code>276050e</code></a>
[release] Version: 7.10.0</li>
<li><a
href="cfdfa29cae"><code>cfdfa29</code></a>
[core] Fix errors in tests</li>
<li><a
href="42f8f99c15"><code>42f8f99</code></a>
[<code>@​mantine/form</code>] Add <code>getInputNode</code> handler
support</li>
<li><a
href="3a4f65d9c8"><code>3a4f65d</code></a>
[release] Version: 7.9.2</li>
<li><a
href="44c3ffd981"><code>44c3ffd</code></a>
[release] Version: 7.9.1</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.10.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.9.0&new-version=7.10.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-24 08:51:52 +02:00
dependabot[bot]
fbfd109d4a Bump @mantine/notifications from 7.9.0 to 7.10.0 in /frontend (#742)
Bumps
[@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications)
from 7.9.0 to 7.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/notifications</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.10.0 😎</h2>
<p><a href="https://mantine.dev/changelog/7-10-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Tree component</h2>
<p>New <a href="https://mantine.dev/core/tree">Tree</a> component:</p>
<pre lang="tsx"><code>import { IconFolder, IconFolderOpen } from
'@tabler/icons-react';
import { Group, RenderTreeNodePayload, Tree } from '@mantine/core';
import { CssIcon, NpmIcon, TypeScriptCircleIcon } from
'@mantinex/dev-icons';
import { data, dataCode } from './data';
import classes from './Demo.module.css';
<p>interface FileIconProps {
name: string;
isFolder: boolean;
expanded: boolean;
}</p>
<p>function FileIcon({ name, isFolder, expanded }: FileIconProps) {
if (name.endsWith('package.json')) {
return &lt;NpmIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.ts') || name.endsWith('.tsx') ||
name.endsWith('tsconfig.json')) {
return &lt;TypeScriptCircleIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.css')) {
return &lt;CssIcon size={14} /&gt;;
}</p>
<p>if (isFolder) {
return expanded ? (
&lt;IconFolderOpen color=&quot;var(--mantine-color-yellow-9)&quot;
size={14} stroke={2.5} /&gt;
) : (
&lt;IconFolder color=&quot;var(--mantine-color-yellow-9)&quot; size={14}
stroke={2.5} /&gt;
);
}</p>
<p>return null;
}</p>
<p>function Leaf({ node, expanded, hasChildren, elementProps }:
RenderTreeNodePayload) {
return (
&lt;Group gap={5} {...elementProps}&gt;
&lt;FileIcon name={node.value} isFolder={hasChildren}
expanded={expanded} /&gt;
&lt;span&gt;{node.label}&lt;/span&gt;
&lt;/Group&gt;
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="276050e6f0"><code>276050e</code></a>
[release] Version: 7.10.0</li>
<li><a
href="3a4f65d9c8"><code>3a4f65d</code></a>
[release] Version: 7.9.2</li>
<li><a
href="44c3ffd981"><code>44c3ffd</code></a>
[release] Version: 7.9.1</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.10.0/packages/@mantine/notifications">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/notifications&package-manager=npm_and_yarn&previous-version=7.9.0&new-version=7.10.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-24 08:37:38 +02:00
dependabot[bot]
b1dd6a3ccd Bump @mantine/dates from 7.9.0 to 7.10.0 in /frontend (#743)
Bumps
[@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates)
from 7.9.0 to 7.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/dates</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.10.0 😎</h2>
<p><a href="https://mantine.dev/changelog/7-10-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Tree component</h2>
<p>New <a href="https://mantine.dev/core/tree">Tree</a> component:</p>
<pre lang="tsx"><code>import { IconFolder, IconFolderOpen } from
'@tabler/icons-react';
import { Group, RenderTreeNodePayload, Tree } from '@mantine/core';
import { CssIcon, NpmIcon, TypeScriptCircleIcon } from
'@mantinex/dev-icons';
import { data, dataCode } from './data';
import classes from './Demo.module.css';
<p>interface FileIconProps {
name: string;
isFolder: boolean;
expanded: boolean;
}</p>
<p>function FileIcon({ name, isFolder, expanded }: FileIconProps) {
if (name.endsWith('package.json')) {
return &lt;NpmIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.ts') || name.endsWith('.tsx') ||
name.endsWith('tsconfig.json')) {
return &lt;TypeScriptCircleIcon size={14} /&gt;;
}</p>
<p>if (name.endsWith('.css')) {
return &lt;CssIcon size={14} /&gt;;
}</p>
<p>if (isFolder) {
return expanded ? (
&lt;IconFolderOpen color=&quot;var(--mantine-color-yellow-9)&quot;
size={14} stroke={2.5} /&gt;
) : (
&lt;IconFolder color=&quot;var(--mantine-color-yellow-9)&quot; size={14}
stroke={2.5} /&gt;
);
}</p>
<p>return null;
}</p>
<p>function Leaf({ node, expanded, hasChildren, elementProps }:
RenderTreeNodePayload) {
return (
&lt;Group gap={5} {...elementProps}&gt;
&lt;FileIcon name={node.value} isFolder={hasChildren}
expanded={expanded} /&gt;
&lt;span&gt;{node.label}&lt;/span&gt;
&lt;/Group&gt;
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="276050e6f0"><code>276050e</code></a>
[release] Version: 7.10.0</li>
<li><a
href="19559b0c16"><code>19559b0</code></a>
Merge branch 'master' of github.com:mantinedev/mantine into 7.10</li>
<li><a
href="3a4f65d9c8"><code>3a4f65d</code></a>
[release] Version: 7.9.2</li>
<li><a
href="65ceb31f15"><code>65ceb31</code></a>
[core] Update clsx dependency version</li>
<li><a
href="321d21428d"><code>321d214</code></a>
[<code>@​mantine/dates</code>] DateTimePicker: Fix some of
<code>timeInputProps</code> not being respe...</li>
<li><a
href="44c3ffd981"><code>44c3ffd</code></a>
[release] Version: 7.9.1</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.10.0/packages/@mantine/dates">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/dates&package-manager=npm_and_yarn&previous-version=7.9.0&new-version=7.10.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-24 08:37:22 +02:00
dependabot[bot]
ad39aa63b1 Bump cookies-next from 4.1.0 to 4.2.0 in /frontend (#738)
Bumps [cookies-next](https://github.com/andreizanik/cookies-next) from
4.1.0 to 4.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/andreizanik/cookies-next/releases">cookies-next's
releases</a>.</em></p>
<blockquote>
<h2>v4.2.0</h2>
<h2>What's Changed</h2>
<ul>
<li>move @types/* to devDependencies by <a
href="https://github.com/mikelpr"><code>@​mikelpr</code></a> in <a
href="https://redirect.github.com/andreizanik/cookies-next/pull/67">andreizanik/cookies-next#67</a></li>
<li>Consistent value type by <a
href="https://github.com/greg2012201"><code>@​greg2012201</code></a> in
<a
href="https://redirect.github.com/andreizanik/cookies-next/pull/69">andreizanik/cookies-next#69</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mikelpr"><code>@​mikelpr</code></a> made
their first contribution in <a
href="https://redirect.github.com/andreizanik/cookies-next/pull/67">andreizanik/cookies-next#67</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/andreizanik/cookies-next/compare/v4.1.1...v4.2.0">https://github.com/andreizanik/cookies-next/compare/v4.1.1...v4.2.0</a></p>
<h2>v4.1.1</h2>
<h2>What's Changed</h2>
<ul>
<li>feat: 📝 Update cookie and type cookie dependencies by <a
href="https://github.com/Victor1890"><code>@​Victor1890</code></a> in <a
href="https://redirect.github.com/andreizanik/cookies-next/pull/62">andreizanik/cookies-next#62</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/Victor1890"><code>@​Victor1890</code></a> made
their first contribution in <a
href="https://redirect.github.com/andreizanik/cookies-next/pull/62">andreizanik/cookies-next#62</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/andreizanik/cookies-next/compare/v4.1.0...v4.1.1">https://github.com/andreizanik/cookies-next/compare/v4.1.0...v4.1.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9af85e2792"><code>9af85e2</code></a>
4.2.0</li>
<li><a
href="e679167ef1"><code>e679167</code></a>
Merge pull request <a
href="https://redirect.github.com/andreizanik/cookies-next/issues/69">#69</a>
from greg2012201/consistent-value-type</li>
<li><a
href="ddcf6e9809"><code>ddcf6e9</code></a>
Stringify data when app router context has been detected.</li>
<li><a
href="3ce214b837"><code>3ce214b</code></a>
Stringify any data type.</li>
<li><a
href="bc4b46bf8c"><code>bc4b46b</code></a>
Merge pull request <a
href="https://redirect.github.com/andreizanik/cookies-next/issues/67">#67</a>
from mikelpr/patch-1</li>
<li><a
href="69308eb6a4"><code>69308eb</code></a>
move @types/* to devDependencies</li>
<li><a
href="a6b29e279a"><code>a6b29e2</code></a>
4.1.1</li>
<li><a
href="8e672dc581"><code>8e672dc</code></a>
feat: 📝 Update cookie and type cookie dependencies (<a
href="https://redirect.github.com/andreizanik/cookies-next/issues/62">#62</a>)</li>
<li>See full diff in <a
href="https://github.com/andreizanik/cookies-next/compare/v4.1.0...v4.2.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cookies-next&package-manager=npm_and_yarn&previous-version=4.1.0&new-version=4.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-22 08:05:18 +02:00
dependabot[bot]
4ed7fb4887 Bump @tabler/icons-react from 3.4.0 to 3.5.0 in /frontend (#737)
Bumps
[@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react)
from 3.4.0 to 3.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tabler/tabler-icons/releases"><code>@​tabler/icons-react</code>'s
releases</a>.</em></p>
<blockquote>
<h2>Release 3.5.0</h2>
<!-- raw HTML omitted -->
<h3>18 new icons:</h3>
<ul>
<li><code>filled/circle-plus</code></li>
<li><code>outline/automation</code></li>
<li><code>outline/chart-bar-popular</code></li>
<li><code>outline/chart-cohort</code></li>
<li><code>outline/chart-funnel</code></li>
<li><code>outline/device-unknown</code></li>
<li><code>outline/file-excel</code></li>
<li><code>outline/file-word</code></li>
<li><code>outline/object-scan</code></li>
<li><code>outline/tax-euro</code></li>
<li><code>outline/tax-pound</code></li>
<li><code>outline/tax</code></li>
<li><code>outline/timezone</code></li>
<li><code>outline/tip-jar-euro</code></li>
<li><code>outline/tip-jar-pound</code></li>
<li><code>outline/tip-jar</code></li>
<li><code>outline/viewport-short</code></li>
<li><code>outline/viewport-tall</code></li>
</ul>
<p>Fixed icons: <code>outline/battery-automotive</code>,
<code>outline/chart-bar</code>, <code>outline/viewport-narrow</code>,
<code>outline/viewport-wide</code></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c89e4159b9"><code>c89e415</code></a>
Release 3.5.0</li>
<li>See full diff in <a
href="https://github.com/tabler/tabler-icons/commits/v3.5.0/packages/icons-react">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-22 08:04:57 +02:00
dependabot[bot]
1f4785d944 Bump @mantine/dropzone from 7.6.0 to 7.9.2 in /frontend (#736)
Bumps
[@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone)
from 7.6.0 to 7.9.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/dropzone</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.2</h2>
<h2>What's Changed</h2>
<ul>
<li><code>[@mantine/dates]</code> DateTimePicker: Fix some of
<code>timeInputProps</code> not being respected (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6204">#6204</a>)</li>
<li><code>[@mantine/core]</code> NavLink: Add react-router support to
display active route (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6180">#6180</a>)</li>
<li><code>[@mantine/core]</code> Fix <code>nonce</code> attribute not
being set on <code>&lt;style /&gt;</code> tag generated in color scheme
switching script</li>
<li><code>[@mantine/core]</code> Input: Fix incorrect margins when input
wrapper order is explicitly set</li>
<li><code>[@mantine/core]</code> Pagination: Fix types definition being
incompatible with <code>@​tabler/icons-react</code> 3.x</li>
<li><code>[@mantine/charts]</code> Fix incorrect tooltip position in
LineChart, AreaChart and BarChart with vertical orientation</li>
<li><code>[@mantine/core]</code> Rating: Fix <code>readOnly</code> prop
now working on touch devices (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6202">#6202</a>)</li>
<li><code>[@mantine/core]</code> TagsInput: Fix existing search value
being ignored in <code>onPaste</code> even handler (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6073">#6073</a>)</li>
<li><code>[@mantine/core]</code> TagsInput: Improve
<code>clearable</code> prop logic related to dropdown (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6115">#6115</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/corydeppen"><code>@​corydeppen</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6180">mantinedev/mantine#6180</a></li>
<li><a
href="https://github.com/rodda-kyusu"><code>@​rodda-kyusu</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6204">mantinedev/mantine#6204</a></li>
<li><a href="https://github.com/iguit0"><code>@​iguit0</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6233">mantinedev/mantine#6233</a></li>
<li><a
href="https://github.com/Shadowfita"><code>@​Shadowfita</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6238">mantinedev/mantine#6238</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/mantinedev/mantine/compare/7.9.1...7.9.2">https://github.com/mantinedev/mantine/compare/7.9.1...7.9.2</a></p>
<h2>7.9.1</h2>
<h2>What's Changed</h2>
<ul>
<li><code>[@mantine/core]</code> Fix <code>theme.scale</code> being
ignored in Input, Paper and Table border styles</li>
<li><code>[@mantine/core]</code> Fix <code>virtualColor</code> function
requring <code>use client</code> in Next.js</li>
<li><code>[@mantine/core]</code> FloatingIndicator: Fix incorrect resize
observer logic (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6129">#6129</a>)</li>
<li><code>[@mantine/core]</code> NumberInput: Fix incorrect
<code>allowNegative</code> handling with up/down arrows (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6170">#6170</a>)</li>
<li><code>[@mantine/core]</code> Fix <code>error={true}</code> prop set
on Checkbox, Radio and Switch rendering unxpected error element with
margin</li>
<li><code>[@mantine/core]</code> SegmentedControl: Fix
<code>theme.primaryColor</code> not being respected in the focus ring
styles</li>
<li><code>[@mantine/core]</code> CloseButton: Fix incorrect specificity
of some selectors</li>
<li><code>[@mantine/core]</code> Fix incorrect <code>aria-label</code>
handling in Select, Autocomplete, MultiSelect and TagsInputs components
(<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6123">#6123</a>)</li>
<li><code>[@mantine/core]</code> Modal: Prevent <code>onClose</code>
from being called when modal is not opened (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6156">#6156</a>)</li>
<li><code>[@mantine/core]</code> PasswordInput: Fix duplicated password
visibility icon in Edge browser (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6126">#6126</a>)</li>
<li><code>[@mantine/hooks]</code> use-hash: Fix hash value not being
updated correctly (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6145">#6145</a>)</li>
<li><code>[@mantine/emotion]</code> Fix incorrect transform logic that
was causing extra hooks to render (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6159">#6159</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/lachtanek"><code>@​lachtanek</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6145">mantinedev/mantine#6145</a></li>
<li><a href="https://github.com/hsskey"><code>@​hsskey</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6156">mantinedev/mantine#6156</a></li>
<li><a href="https://github.com/ataldev"><code>@​ataldev</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6198">mantinedev/mantine#6198</a></li>
<li><a
href="https://github.com/OliverWales"><code>@​OliverWales</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6188">mantinedev/mantine#6188</a></li>
<li><a
href="https://github.com/AustinWildgrube"><code>@​AustinWildgrube</code></a>
made their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6170">mantinedev/mantine#6170</a></li>
<li><a href="https://github.com/theca11"><code>@​theca11</code></a> made
their first contribution in <a
href="https://redirect.github.com/mantinedev/mantine/pull/6178">mantinedev/mantine#6178</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/mantinedev/mantine/compare/7.9.0...7.9.1">https://github.com/mantinedev/mantine/compare/7.9.0...7.9.1</a></p>
<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>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3a4f65d9c8"><code>3a4f65d</code></a>
[release] Version: 7.9.2</li>
<li><a
href="44c3ffd981"><code>44c3ffd</code></a>
[release] Version: 7.9.1</li>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="b95051c4fc"><code>b95051c</code></a>
[release] Version: 7.8.1</li>
<li><a
href="fbebdb97ff"><code>fbebdb9</code></a>
[<code>@​mantine/dropzone</code>] Fix keyboard activation not working
(<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone/issues/6095">#6095</a>)</li>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.2/packages/@mantine/dropzone">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/dropzone&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.9.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-05-22 08:04:32 +02:00
dependabot[bot]
4a9b4b69af Bump @typescript-eslint/parser from 7.9.0 to 7.10.0 in /frontend (#735)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.9.0 to 7.10.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.10.0</h2>
<h2>7.10.0 (2024-05-20)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [sort-type-constituents] support
case sensitive sorting (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8760">#8760</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-regexp-exec] fix heuristic
to check whether regex may contain global flag (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8764">#8764</a>)</li>
<li><strong>typescript-estree:</strong> don't add in-project files to
defaultProjectMatchedFiles (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9097">#9097</a>)</li>
<li><strong>utils:</strong> remove function form type from flat config
<code>files</code> and <code>ignores</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9111">#9111</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Emanuel Hoogeveen <a
href="https://github.com/ehoogeveen-medweb"><code>@​ehoogeveen-medweb</code></a></li>
<li>jsfm01 <a
href="https://github.com/jsfm01"><code>@​jsfm01</code></a></li>
<li>Kirk Waiblinger</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.10.0 (2024-05-20)</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="c18226e05e"><code>c18226e</code></a>
chore(release): publish 7.10.0</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.10.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.9.0&new-version=7.10.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-21 08:29:26 +02:00
dependabot[bot]
e007c1cc38 Bump @typescript-eslint/eslint-plugin from 7.9.0 to 7.10.0 in /frontend (#734)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.9.0 to 7.10.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.10.0</h2>
<h2>7.10.0 (2024-05-20)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [sort-type-constituents] support
case sensitive sorting (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8760">#8760</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-regexp-exec] fix heuristic
to check whether regex may contain global flag (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8764">#8764</a>)</li>
<li><strong>typescript-estree:</strong> don't add in-project files to
defaultProjectMatchedFiles (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9097">#9097</a>)</li>
<li><strong>utils:</strong> remove function form type from flat config
<code>files</code> and <code>ignores</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9111">#9111</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Emanuel Hoogeveen <a
href="https://github.com/ehoogeveen-medweb"><code>@​ehoogeveen-medweb</code></a></li>
<li>jsfm01 <a
href="https://github.com/jsfm01"><code>@​jsfm01</code></a></li>
<li>Kirk Waiblinger</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.10.0 (2024-05-20)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [sort-type-constituents] support
case sensitive sorting</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-regexp-exec] fix heuristic
to check whether regex may contain global flag</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred</li>
<li>Emanuel Hoogeveen</li>
<li>jsfm01</li>
<li>Kirk Waiblinger</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="c18226e05e"><code>c18226e</code></a>
chore(release): publish 7.10.0</li>
<li><a
href="8d92ba8533"><code>8d92ba8</code></a>
docs: [no-floating-promises] fix capitalization typo (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/9118">#9118</a>)</li>
<li><a
href="d951d83211"><code>d951d83</code></a>
fix(eslint-plugin): [prefer-regexp-exec] fix heuristic to check whether
regex...</li>
<li><a
href="987a96ee57"><code>987a96e</code></a>
feat(eslint-plugin): [sort-type-constituents] support case sensitive
sorting ...</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.10.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.9.0&new-version=7.10.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-21 07:20:57 +02:00
dependabot[bot]
bc8f804b0e Update pytest requirement from <=8.2.0 to <=8.2.1 in /backend (#732)
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.1</h2>
<h1>pytest 8.2.1 (2024-05-19)</h1>
<h2>Improvements</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12334">#12334</a>:
Support for Python 3.13 (beta1 at the time of writing).</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12120">#12120</a>:
Fix [PermissionError]{.title-ref} crashes arising from directories which
are not selected on the command-line.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12191">#12191</a>:
Keyboard interrupts and system exits are now properly handled during the
test collection.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12300">#12300</a>:
Fixed handling of 'Function not implemented' error under squashfuse_ll,
which is a different way to say that the mountpoint is read-only.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12308">#12308</a>:
Fix a regression in pytest 8.2.0 where the permissions of
automatically-created <code>.pytest_cache</code> directories became
<code>rwx------</code> instead of the expected
<code>rwxr-xr-x</code>.</li>
</ul>
<h2>Trivial/Internal Changes</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12333">#12333</a>:
pytest releases are now attested using the recent <a
href="https://github.blog/2024-05-02-introducing-artifact-attestations-now-in-public-beta/">Artifact
Attestation</a> support from GitHub, allowing users to verify the
provenance of pytest's sdist and wheel artifacts.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="66ff8dffdf"><code>66ff8df</code></a>
Prepare release version 8.2.1</li>
<li><a
href="3ffcfd122c"><code>3ffcfd1</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12340">#12340</a>
from pytest-dev/backport-12334-to-8.2.x</li>
<li><a
href="0b28313b46"><code>0b28313</code></a>
[8.2.x] Add Python 3.13 (beta) support</li>
<li><a
href="f3dd93ad8d"><code>f3dd93a</code></a>
[8.2.x] Attest package provenance (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/12335">#12335</a>)</li>
<li><a
href="bb5a1257b0"><code>bb5a125</code></a>
[8.2.x] Spelling (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/12331">#12331</a>)</li>
<li><a
href="f179bf252f"><code>f179bf2</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12327">#12327</a>
from pytest-dev/backport-12325-to-8.2.x</li>
<li><a
href="2b671b5f92"><code>2b671b5</code></a>
[8.2.x] cacheprovider: fix <code>.pytest_cache</code> not being
world-readable</li>
<li><a
href="65ab7cb96c"><code>65ab7cb</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12324">#12324</a>
from pytest-dev/backport-12320-to-8.2.x</li>
<li><a
href="4d5fb7d71c"><code>4d5fb7d</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12319">#12319</a>
from pytest-dev/backport-12311-to-8.2.x</li>
<li><a
href="cbe5996cc6"><code>cbe5996</code></a>
[8.2.x] changelog: document unittest 8.2 change as breaking</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest/compare/1.0.0b3...8.2.1">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-05-20 08:50:30 +02:00
dependabot[bot]
a6ed254940 Bump axios from 1.6.5 to 1.7.0 in /frontend (#733)
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.7.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.7.0</h2>
<h2>Release notes:</h2>
<h3>Features</h3>
<ul>
<li><strong>adapter:</strong> add fetch adapter; (<a
href="https://redirect.github.com/axios/axios/issues/6371">#6371</a>)
(<a
href="a3ff99b59d">a3ff99b</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>core/axios:</strong> handle un-writable error stack (<a
href="https://redirect.github.com/axios/axios/issues/6362">#6362</a>)
(<a
href="81e0455b7b">81e0455</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+1015/-127
([#6371](https://github.com/axios/axios/issues/6371) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+30/-14 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/alexandre-abrioux" title="+56/-6
([#6362](https://github.com/axios/axios/issues/6362) )">Alexandre
ABRIOUX</a></li>
</ul>
<h2>Release v1.7.0-beta.2</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>fetch:</strong> capitalize HTTP method names; (<a
href="https://redirect.github.com/axios/axios/issues/6395">#6395</a>)
(<a
href="ad3174a351">ad3174a</a>)</li>
<li><strong>fetch:</strong> fix &amp; optimize progress capturing for
cases when the request data has a nullish value or zero data length (<a
href="https://redirect.github.com/axios/axios/issues/6400">#6400</a>)
(<a
href="95a3e8e346">95a3e8e</a>)</li>
<li><strong>fetch:</strong> fix headers getting from a stream response;
(<a
href="https://redirect.github.com/axios/axios/issues/6401">#6401</a>)
(<a
href="870e0a76f6">870e0a7</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+99/-46
([#6405](https://github.com/axios/axios/issues/6405)
[#6404](https://github.com/axios/axios/issues/6404)
[#6401](https://github.com/axios/axios/issues/6401)
[#6400](https://github.com/axios/axios/issues/6400)
[#6395](https://github.com/axios/axios/issues/6395) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.7.0-beta.1</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>core/axios:</strong> handle un-writable error stack (<a
href="https://redirect.github.com/axios/axios/issues/6362">#6362</a>)
(<a
href="81e0455b7b">81e0455</a>)</li>
<li><strong>fetch:</strong> fix cases when ReadableStream or
Response.body are not available; (<a
href="https://redirect.github.com/axios/axios/issues/6377">#6377</a>)
(<a
href="d1d359da34">d1d359d</a>)</li>
<li><strong>fetch:</strong> treat fetch-related TypeError as an
AxiosError.ERR_NETWORK error; (<a
href="https://redirect.github.com/axios/axios/issues/6380">#6380</a>)
(<a
href="bb5f9a5ab7">bb5f9a5</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/alexandre-abrioux" title="+56/-6
([#6362](https://github.com/axios/axios/issues/6362) )">Alexandre
ABRIOUX</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+42/-17
([#6380](https://github.com/axios/axios/issues/6380)
[#6377](https://github.com/axios/axios/issues/6377) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h3>Install</h3>
<pre><code>npm i axios@next
</code></pre>
<h2>Release v1.7.0-beta.0</h2>
<h2>Release notes:</h2>
<h3>Features</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/axios/axios/compare/v1.7.0-beta.2...v1.7.0">1.7.0</a>
(2024-05-19)</h1>
<h3>Features</h3>
<ul>
<li><strong>adapter:</strong> add fetch adapter; (<a
href="https://redirect.github.com/axios/axios/issues/6371">#6371</a>)
(<a
href="a3ff99b59d">a3ff99b</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>core/axios:</strong> handle un-writable error stack (<a
href="https://redirect.github.com/axios/axios/issues/6362">#6362</a>)
(<a
href="81e0455b7b">81e0455</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+1015/-127
([#6371](https://github.com/axios/axios/issues/6371) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+30/-14 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/alexandre-abrioux" title="+56/-6
([#6362](https://github.com/axios/axios/issues/6362) )">Alexandre
ABRIOUX</a></li>
</ul>
<h1><a
href="https://github.com/axios/axios/compare/v1.7.0-beta.1...v1.7.0-beta.2">1.7.0-beta.2</a>
(2024-05-19)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>fetch:</strong> capitalize HTTP method names; (<a
href="https://redirect.github.com/axios/axios/issues/6395">#6395</a>)
(<a
href="ad3174a351">ad3174a</a>)</li>
<li><strong>fetch:</strong> fix &amp; optimize progress capturing for
cases when the request data has a nullish value or zero data length (<a
href="https://redirect.github.com/axios/axios/issues/6400">#6400</a>)
(<a
href="95a3e8e346">95a3e8e</a>)</li>
<li><strong>fetch:</strong> fix headers getting from a stream response;
(<a
href="https://redirect.github.com/axios/axios/issues/6401">#6401</a>)
(<a
href="870e0a76f6">870e0a7</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+99/-46
([#6405](https://github.com/axios/axios/issues/6405)
[#6404](https://github.com/axios/axios/issues/6404)
[#6401](https://github.com/axios/axios/issues/6401)
[#6400](https://github.com/axios/axios/issues/6400)
[#6395](https://github.com/axios/axios/issues/6395) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h1><a
href="https://github.com/axios/axios/compare/v1.7.0-beta.0...v1.7.0-beta.1">1.7.0-beta.1</a>
(2024-05-07)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>core/axios:</strong> handle un-writable error stack (<a
href="https://redirect.github.com/axios/axios/issues/6362">#6362</a>)
(<a
href="81e0455b7b">81e0455</a>)</li>
<li><strong>fetch:</strong> fix cases when ReadableStream or
Response.body are not available; (<a
href="https://redirect.github.com/axios/axios/issues/6377">#6377</a>)
(<a
href="d1d359da34">d1d359d</a>)</li>
<li><strong>fetch:</strong> treat fetch-related TypeError as an
AxiosError.ERR_NETWORK error; (<a
href="https://redirect.github.com/axios/axios/issues/6380">#6380</a>)
(<a
href="bb5f9a5ab7">bb5f9a5</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/alexandre-abrioux" title="+56/-6
([#6362](https://github.com/axios/axios/issues/6362) )">Alexandre
ABRIOUX</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+42/-17
([#6380](https://github.com/axios/axios/issues/6380)
[#6377](https://github.com/axios/axios/issues/6377) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h1><a
href="https://github.com/axios/axios/compare/v1.6.8...v1.7.0-beta.0">1.7.0-beta.0</a>
(2024-04-28)</h1>
<h3>Features</h3>
<ul>
<li><strong>adapter:</strong> add fetch adapter; (<a
href="https://redirect.github.com/axios/axios/issues/6371">#6371</a>)
(<a
href="a3ff99b59d">a3ff99b</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3041c61ada"><code>3041c61</code></a>
[Release] v1.7.0 (<a
href="https://redirect.github.com/axios/axios/issues/6408">#6408</a>)</li>
<li><a
href="18b13cbaef"><code>18b13cb</code></a>
chore(docs): add fetch adapter docs; (<a
href="https://redirect.github.com/axios/axios/issues/6407">#6407</a>)</li>
<li><a
href="e62099bc8b"><code>e62099b</code></a>
fix(fetch): fixed a possible memory leak in the AbortController for the
strea...</li>
<li><a
href="b49aa8e3d8"><code>b49aa8e</code></a>
chore(release): v1.7.0-beta.2 (<a
href="https://redirect.github.com/axios/axios/issues/6403">#6403</a>)</li>
<li><a
href="d57f03a77f"><code>d57f03a</code></a>
chore(ci): bump create-pull-request version to fix a bug; (<a
href="https://redirect.github.com/axios/axios/issues/6405">#6405</a>)</li>
<li><a
href="097b0d18e9"><code>097b0d1</code></a>
chore(ci): add tag resolution for npm releases based on package version;
(<a
href="https://redirect.github.com/axios/axios/issues/6404">#6404</a>)</li>
<li><a
href="870e0a76f6"><code>870e0a7</code></a>
fix(fetch): fix headers getting from a stream response; (<a
href="https://redirect.github.com/axios/axios/issues/6401">#6401</a>)</li>
<li><a
href="95a3e8e346"><code>95a3e8e</code></a>
fix(fetch): fix &amp; optimize progress capturing for cases when the
request data...</li>
<li><a
href="ad3174a351"><code>ad3174a</code></a>
fix(fetch): capitalize HTTP method names; (<a
href="https://redirect.github.com/axios/axios/issues/6395">#6395</a>)</li>
<li><a
href="b9f4848f8c"><code>b9f4848</code></a>
chore(release): v1.7.0-beta.1 (<a
href="https://redirect.github.com/axios/axios/issues/6383">#6383</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.7.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.5&new-version=1.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-05-20 08:50:01 +02:00
Erik Vroon
432f2380b9 New Crowdin updates (#731) 2024-05-17 09:08:51 +02:00
dependabot[bot]
0a0d2a1af8 Update bcrypt requirement from 4.1.2 to 4.1.3 in /backend (#705)
Updates the requirements on [bcrypt](https://github.com/pyca/bcrypt) to
permit the latest version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pyca/bcrypt/blob/main/release.py">bcrypt's
changelog</a>.</em></p>
<blockquote>
<h1>Licensed under the Apache License, Version 2.0 (the
&quot;License&quot;);</h1>
<h1>you may not use this file except in compliance with the
License.</h1>
<h1>You may obtain a copy of the License at</h1>
<h1></h1>
<h1><a
href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></h1>
<h1></h1>
<h1>Unless required by applicable law or agreed to in writing,
software</h1>
<h1>distributed under the License is distributed on an &quot;AS IS&quot;
BASIS,</h1>
<h1>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.</h1>
<h1>See the License for the specific language governing permissions
and</h1>
<h1>limitations under the License.</h1>
<p>import getpass
import io
import json
import os
import subprocess
import time
import zipfile</p>
<p>import click
import requests</p>
<p>def run(*args, **kwargs):
print(f&quot;[running] {list(args)}&quot;)
subprocess.check_call(list(args), **kwargs)</p>
<p>def wait_for_build_complete_github_actions(session, token, run_url):
while True:
response = session.get(
run_url,
headers={
&quot;Content-Type&quot;: &quot;application/json&quot;,
&quot;Authorization&quot;: f&quot;token {token}&quot;,
},
)
response.raise_for_status()
if response.json()[&quot;conclusion&quot;] is not None:
break
time.sleep(3)</p>
<p>def download_artifacts_github_actions(session, token, run_url):
response = session.get(
run_url,
headers={
&quot;Content-Type&quot;: &quot;application/json&quot;,
&quot;Authorization&quot;: f&quot;token {token}&quot;,</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="35e5a6f5a5"><code>35e5a6f</code></a>
Bump version for 4.1.3 release (<a
href="https://redirect.github.com/pyca/bcrypt/issues/791">#791</a>)</li>
<li><a
href="d99d1e568d"><code>d99d1e5</code></a>
Bump autocfg from 1.2.0 to 1.3.0 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/790">#790</a>)</li>
<li><a
href="0775d47c9a"><code>0775d47</code></a>
allow testing with pytest 8.2.0 (<a
href="https://redirect.github.com/pyca/bcrypt/issues/786">#786</a>)</li>
<li><a
href="97d09ac5c1"><code>97d09ac</code></a>
Bump base64 from 0.22.0 to 0.22.1 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/787">#787</a>)</li>
<li><a
href="ee4a9a8dd1"><code>ee4a9a8</code></a>
use ubuntu rolling in arm64 CI (<a
href="https://redirect.github.com/pyca/bcrypt/issues/784">#784</a>)</li>
<li><a
href="7d2474faa5"><code>7d2474f</code></a>
Bump libc from 0.2.153 to 0.2.154 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/783">#783</a>)</li>
<li><a
href="7a252dde4d"><code>7a252dd</code></a>
Try blocking pytest 8.2.0 (<a
href="https://redirect.github.com/pyca/bcrypt/issues/785">#785</a>)</li>
<li><a
href="297a915720"><code>297a915</code></a>
Remove brew install rust from macOS CI (<a
href="https://redirect.github.com/pyca/bcrypt/issues/782">#782</a>)</li>
<li><a
href="6b3f99eff2"><code>6b3f99e</code></a>
Bump parking_lot_core from 0.9.9 to 0.9.10 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/778">#778</a>)</li>
<li><a
href="c88b31007d"><code>c88b310</code></a>
Bump parking_lot from 0.12.1 to 0.12.2 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/780">#780</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pyca/bcrypt/compare/4.1.2...4.1.3">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-05-16 20:58:18 +02:00
dependabot[bot]
702abfe678 Bump @tabler/icons-react from 2.47.0 to 3.4.0 in /frontend (#730)
Bumps
[@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react)
from 2.47.0 to 3.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tabler/tabler-icons/releases"><code>@​tabler/icons-react</code>'s
releases</a>.</em></p>
<blockquote>
<h2>Release 3.4.0</h2>
<!-- raw HTML omitted -->
<h3>18 new icons:</h3>
<ul>
<li><code>outline/ai</code></li>
<li><code>outline/cash-register</code></li>
<li><code>outline/percentage-0</code></li>
<li><code>outline/percentage-10</code></li>
<li><code>outline/percentage-100</code></li>
<li><code>outline/percentage-20</code></li>
<li><code>outline/percentage-25</code></li>
<li><code>outline/percentage-30</code></li>
<li><code>outline/percentage-33</code></li>
<li><code>outline/percentage-40</code></li>
<li><code>outline/percentage-50</code></li>
<li><code>outline/percentage-60</code></li>
<li><code>outline/percentage-66</code></li>
<li><code>outline/percentage-70</code></li>
<li><code>outline/percentage-75</code></li>
<li><code>outline/percentage-80</code></li>
<li><code>outline/percentage-90</code></li>
<li><code>outline/picnic-table</code></li>
</ul>
<h2>Release 3.3.0</h2>
<!-- raw HTML omitted -->
<h3>18 new icons:</h3>
<ul>
<li><code>filled/circle-percentage</code></li>
<li><code>filled/code-circle-2</code></li>
<li><code>filled/code-circle</code></li>
<li><code>filled/hospital-circle</code></li>
<li><code>filled/live-photo</code></li>
<li><code>filled/message-chatbot</code></li>
<li><code>filled/message-circle</code></li>
<li><code>filled/message-report</code></li>
<li><code>filled/message</code></li>
<li><code>filled/panorama-horizontal</code></li>
<li><code>filled/panorama-vertical</code></li>
<li><code>filled/parking-circle</code></li>
<li><code>filled/poo</code></li>
<li><code>filled/sunglasses</code></li>
<li><code>filled/tilt-shift</code></li>
<li><code>outline/ikosaedr</code></li>
<li><code>outline/message-circle-user</code></li>
<li><code>outline/message-user</code></li>
</ul>
<p>Fixed icons: <code>filled/shield-half</code>,
<code>outline/parking-circle</code></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="01e01a7567"><code>01e01a7</code></a>
Release 3.4.0</li>
<li><a
href="214c8cbfda"><code>214c8cb</code></a>
fix: IconProps type is incompatible with icons components (<a
href="https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react/issues/1078">#1078</a>)</li>
<li><a
href="f9610283b2"><code>f961028</code></a>
add TablerIcon type (<a
href="https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react/issues/1058">#1058</a>)</li>
<li><a
href="4e5371083c"><code>4e53710</code></a>
Release 3.3.0</li>
<li><a
href="cc7085f2ea"><code>cc7085f</code></a>
Release 3.2.0</li>
<li><a
href="f12135fe42"><code>f12135f</code></a>
Release 3.1.0</li>
<li><a
href="af9057244f"><code>af90572</code></a>
Release 3.0.3</li>
<li><a
href="013c5eec71"><code>013c5ee</code></a>
Release 3.0.2</li>
<li><a
href="78ea72c2c8"><code>78ea72c</code></a>
export Icon type (<a
href="https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react/issues/1056">#1056</a>)</li>
<li><a
href="a3200b5831"><code>a3200b5</code></a>
Generate icons list for build (<a
href="https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react/issues/1050">#1050</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tabler/tabler-icons/commits/v3.4.0/packages/icons-react">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@tabler/icons-react&package-manager=npm_and_yarn&previous-version=2.47.0&new-version=3.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-16 07:57:11 +02:00
Erik Vroon
d895adbd71 New Crowdin updates (#727) 2024-05-14 20:49:56 +02:00
Erik Vroon
fe458771fc UX improvements (#722) 2024-05-14 19:43:42 +02:00
Erik Vroon
2e9e4343b3 Fix created columns (#726)
The default was wrong, the `"now()"` was executed when building the
database, resulting in a default of a constant value instead of the
function `now()`
2024-05-14 18:59:46 +02:00
dependabot[bot]
1cb0c42f98 Bump @typescript-eslint/eslint-plugin from 7.8.0 to 7.9.0 in /frontend (#725)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 7.8.0 to 7.9.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.9.0</h2>
<h2>7.9.0 (2024-05-13)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>rule-tester:</strong> check for missing placeholder data in
the message (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9039">#9039</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li>do not pass tsconfig canonical file name to typescript API to get
program details for config file (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9042">#9042</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-types] fix
false positive on default parameters (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9045">#9045</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Kirk Waiblinger</li>
<li>Sheetal Nandi</li>
<li>Vinccool96</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.9.0 (2024-05-13)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [explicit-function-return-types] fix
false positive on default parameters</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Kirk Waiblinger</li>
<li>Sheetal Nandi</li>
<li>Vinccool96</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="77fc366aa0"><code>77fc366</code></a>
chore(release): publish 7.9.0</li>
<li><a
href="f53fece367"><code>f53fece</code></a>
chore: add knip (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8192">#8192</a>)</li>
<li><a
href="8acb8d4044"><code>8acb8d4</code></a>
fix(eslint-plugin): [explicit-function-return-types] fix false positive
on de...</li>
<li><a
href="d696ea22cd"><code>d696ea2</code></a>
docs(eslint-plugin): fix several 404 URLs (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/9064">#9064</a>)</li>
<li><a
href="37a41d9fb9"><code>37a41d9</code></a>
docs: fix broken link to <code>import/no-duplicates</code> on
<code>no-duplicate-imports</code> pag...</li>
<li><a
href="ab92621457"><code>ab92621</code></a>
docs: correct its/it's spelling (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/9048">#9048</a>)</li>
<li><a
href="f248e689b0"><code>f248e68</code></a>
docs: [no-floating-promises] remove ugly commas (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/9034">#9034</a>)</li>
<li><a
href="6e1241bba5"><code>6e1241b</code></a>
docs: fix no-unnecessary-boolean-literal-compare example (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8981">#8981</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.9.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.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-14 07:48:17 +02:00
dependabot[bot]
7a07c3bc76 Bump @typescript-eslint/parser from 7.8.0 to 7.9.0 in /frontend (#724)
Bumps
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
from 7.8.0 to 7.9.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.9.0</h2>
<h2>7.9.0 (2024-05-13)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>rule-tester:</strong> check for missing placeholder data in
the message (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9039">#9039</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li>do not pass tsconfig canonical file name to typescript API to get
program details for config file (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9042">#9042</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-types] fix
false positive on default parameters (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9045">#9045</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Kirk Waiblinger</li>
<li>Sheetal Nandi</li>
<li>Vinccool96</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.9.0 (2024-05-13)</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="77fc366aa0"><code>77fc366</code></a>
chore(release): publish 7.9.0</li>
<li><a
href="f53fece367"><code>f53fece</code></a>
chore: add knip (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8192">#8192</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v7.9.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.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-14 07:27:52 +02:00
Erik Vroon
bb19e6258d Add demo entities to demo account (#723) 2024-05-13 17:57:33 +02:00
Erik Vroon
22b943b2af Responsiveness fixes (#720) 2024-05-11 20:52:21 +02:00
Erik Vroon
e699e10533 New Crowdin updates (#719) 2024-05-11 18:36:00 +02:00
Erik Vroon
73153d095b fixup! Improve standings dashboard table (#717) (#718) 2024-05-11 16:58:45 +02:00
Erik Vroon
2e703d8a22 Improve standings dashboard table (#717) 2024-05-09 17:49:40 +02:00
Erik Vroon
1740d1c7e0 Fix sorting standings dashboard page (#716) 2024-05-08 17:11:58 +02:00
Erik Vroon
05b1367b0f Fix auth error dashboard (#715) 2024-05-08 13:28:07 +02:00
dependabot[bot]
8a22abeeeb Bump @mantine/spotlight from 7.6.0 to 7.9.0 in /frontend (#714)
Bumps
[@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight)
from 7.6.0 to 7.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/spotlight</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.0 </h2>
<p><a href="https://mantine.dev/changelog/7-9-0">View changelog with
demos on mantine.dev website</a></p>
<h2><code>@​mantine/emotion</code> package</h2>
<p>New <a
href="https://mantine.dev/styles/emotion"><code>@​mantine/emotion</code></a>
package is now available to simplify migration
from <a href="https://mantine.dev/guides/6x-to-7x/">6.x to 7.x</a>. It
includes <code>createStyles</code> function and additional
functionality for <code>sx</code> and <code>styles</code> props for all
components similar to what was available
in <code>@mantine/core</code> package in v6.</p>
<p>If you still haven't migrated to 7.x because of the change in styling
approach, you can now
have a smoother transition by using <code>@mantine/emotion</code>
package. To learn more about the package,
visit the <a href="https://mantine.dev/styles/emotion">documentation
page</a> and updated <a href="https://mantine.dev/guides/6x-to-7x/">6.x
to 7.x migration guide</a>.</p>
<pre lang="tsx"><code>import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
<p>const useStyles = createStyles((theme, _, u) =&gt; ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 'auto',
marginRight: 'auto',
borderRadius: theme.radius.sm,</p>
<pre><code>// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
  backgroundColor: theme.colors.gray[1],
},

[u.dark]: {
  backgroundColor: theme.colors.dark[5],
},

// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
  // Child reference in nested selectors via ref
  [`&amp;amp; .${u.ref('child')}`]: {
    fontSize: theme.fontSizes.xs,
  },
},
</code></pre>
<p>},</p>
<p>child: {
// Assign selector to a ref to reference it in other styles
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="b95051c4fc"><code>b95051c</code></a>
[release] Version: 7.8.1</li>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li><a
href="6d195cb5bb"><code>6d195cb</code></a>
[core] Migrate to auto-rem</li>
<li><a
href="878720bf26"><code>878720b</code></a>
[core] Remove baseUrl from all packages tsconfigs</li>
<li><a
href="30a48dfca3"><code>30a48df</code></a>
[release] Version: 7.7.1</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.0/packages/@mantine/spotlight">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-08 08:24:39 +02:00
dependabot[bot]
10ee24f71e Bump @mantine/dates from 7.6.0 to 7.9.0 in /frontend (#713)
Bumps
[@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates)
from 7.6.0 to 7.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/dates</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.0 </h2>
<p><a href="https://mantine.dev/changelog/7-9-0">View changelog with
demos on mantine.dev website</a></p>
<h2><code>@​mantine/emotion</code> package</h2>
<p>New <a
href="https://mantine.dev/styles/emotion"><code>@​mantine/emotion</code></a>
package is now available to simplify migration
from <a href="https://mantine.dev/guides/6x-to-7x/">6.x to 7.x</a>. It
includes <code>createStyles</code> function and additional
functionality for <code>sx</code> and <code>styles</code> props for all
components similar to what was available
in <code>@mantine/core</code> package in v6.</p>
<p>If you still haven't migrated to 7.x because of the change in styling
approach, you can now
have a smoother transition by using <code>@mantine/emotion</code>
package. To learn more about the package,
visit the <a href="https://mantine.dev/styles/emotion">documentation
page</a> and updated <a href="https://mantine.dev/guides/6x-to-7x/">6.x
to 7.x migration guide</a>.</p>
<pre lang="tsx"><code>import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
<p>const useStyles = createStyles((theme, _, u) =&gt; ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 'auto',
marginRight: 'auto',
borderRadius: theme.radius.sm,</p>
<pre><code>// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
  backgroundColor: theme.colors.gray[1],
},

[u.dark]: {
  backgroundColor: theme.colors.dark[5],
},

// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
  // Child reference in nested selectors via ref
  [`&amp;amp; .${u.ref('child')}`]: {
    fontSize: theme.fontSizes.xs,
  },
},
</code></pre>
<p>},</p>
<p>child: {
// Assign selector to a ref to reference it in other styles
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="b95051c4fc"><code>b95051c</code></a>
[release] Version: 7.8.1</li>
<li><a
href="d372b39a1b"><code>d372b39</code></a>
[<code>@​mantine/dates</code>] DatePicker: Fix date range being stuck in
incorrect state wh...</li>
<li><a
href="94051f502c"><code>94051f5</code></a>
[mantine.dev] Fix typo (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates/issues/6075">#6075</a>)</li>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li><a
href="6d195cb5bb"><code>6d195cb</code></a>
[core] Migrate to auto-rem</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.0/packages/@mantine/dates">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

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


</details>

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


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-06 07:41:25 +02:00
dependabot[bot]
2a1a933b8c Bump @mantine/notifications from 7.6.0 to 7.9.0 in /frontend (#704)
Bumps
[@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications)
from 7.6.0 to 7.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/notifications</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.9.0 </h2>
<p><a href="https://mantine.dev/changelog/7-9-0">View changelog with
demos on mantine.dev website</a></p>
<h2><code>@​mantine/emotion</code> package</h2>
<p>New <a
href="https://mantine.dev/styles/emotion"><code>@​mantine/emotion</code></a>
package is now available to simplify migration
from <a href="https://mantine.dev/guides/6x-to-7x/">6.x to 7.x</a>. It
includes <code>createStyles</code> function and additional
functionality for <code>sx</code> and <code>styles</code> props for all
components similar to what was available
in <code>@mantine/core</code> package in v6.</p>
<p>If you still haven't migrated to 7.x because of the change in styling
approach, you can now
have a smoother transition by using <code>@mantine/emotion</code>
package. To learn more about the package,
visit the <a href="https://mantine.dev/styles/emotion">documentation
page</a> and updated <a href="https://mantine.dev/guides/6x-to-7x/">6.x
to 7.x migration guide</a>.</p>
<pre lang="tsx"><code>import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
<p>const useStyles = createStyles((theme, _, u) =&gt; ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 'auto',
marginRight: 'auto',
borderRadius: theme.radius.sm,</p>
<pre><code>// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
  backgroundColor: theme.colors.gray[1],
},

[u.dark]: {
  backgroundColor: theme.colors.dark[5],
},

// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
  // Child reference in nested selectors via ref
  [`&amp;amp; .${u.ref('child')}`]: {
    fontSize: theme.fontSizes.xs,
  },
},
</code></pre>
<p>},</p>
<p>child: {
// Assign selector to a ref to reference it in other styles
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="94c053e205"><code>94c053e</code></a>
[release] Version: 7.9.0</li>
<li><a
href="faf096f125"><code>faf096f</code></a>
[core] Remove additional React imports</li>
<li><a
href="97eb4d41a7"><code>97eb4d4</code></a>
[core] Init new jsx transform</li>
<li><a
href="b95051c4fc"><code>b95051c</code></a>
[release] Version: 7.8.1</li>
<li><a
href="afc992942b"><code>afc9929</code></a>
[release] Version: 7.8.0</li>
<li><a
href="c6da05e4f9"><code>c6da05e</code></a>
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8</li>
<li><a
href="b2af7f8888"><code>b2af7f8</code></a>
[release] Version: 7.7.2</li>
<li><a
href="878720bf26"><code>878720b</code></a>
[core] Remove baseUrl from all packages tsconfigs</li>
<li><a
href="30a48dfca3"><code>30a48df</code></a>
[release] Version: 7.7.1</li>
<li><a
href="6b14c7ace7"><code>6b14c7a</code></a>
[release] Version: 7.7.0</li>
<li>Additional commits viewable in <a
href="https://github.com/mantinedev/mantine/commits/7.9.0/packages/@mantine/notifications">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-06 07:40:33 +02:00
Erik Vroon
808349496d Dashboard redesign (#703) 2024-05-05 21:25:42 +02:00
Erik Vroon
28cc472b6a New Crowdin updates (#702) 2024-05-05 14:23:28 +02:00
Erik Vroon
0e4df8dcb5 Handle foreign key on stage items (#701)
fix https://github.com/evroon/bracket/issues/629
2024-05-05 10:50:09 +02:00
Erik Vroon
295809ef61 Add language selector (#700)
fix https://github.com/evroon/bracket/issues/499
2024-05-05 10:36:03 +02:00
Erik Vroon
24f04fbaa0 Improve round robing handling (#699)
fix https://github.com/evroon/bracket/issues/695
2024-05-05 09:35:06 +02:00
Erik Vroon
4ab77afcfc Add stale bot (#698) 2024-05-04 11:43:50 +02:00
Erik Vroon
949c04b573 Codecov: ignore alembic (#689) v1.4.7 2024-05-04 10:49:50 +02:00
Erik Vroon
2a84d0bc6c Update translation info (#688) 2024-05-03 22:43:28 +02:00
Erik Vroon
3fd3825265 New Crowdin updates (#684) 2024-05-03 22:23:41 +02:00
Erik Vroon
19a617fa2f Fix upcoming matches table (#687)
This fixes a few small bugs related to upcoming matches for swiss
2024-05-03 22:20:41 +02:00
github-actions[bot]
7332b9906b Update contributors in docs (#685)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-05-03 21:21:49 +02:00
github-actions[bot]
0f2bb6ad27 Update contributors in readme (#686)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-05-03 20:16:58 +02:00