Commit Graph

105 Commits

Author SHA1 Message Date
dependabot[bot]
2d3bcc110f Bump swr from 2.0.0 to 2.0.3 in /frontend (#111)
Bumps [swr](https://github.com/vercel/swr) from 2.0.0 to 2.0.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vercel/swr/releases">swr's
releases</a>.</em></p>
<blockquote>
<h2>v2.0.3</h2>
<h2>Patches</h2>
<ul>
<li>
<p>fix: parameters passed to subscribe is inconsistent with its
declaration by <a
href="https://github.com/hong24"><code>@​hong24</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2353">vercel/swr#2353</a></p>
</li>
<li>
<p>fix: when inifinite key changes, should use cached pagesize instead
of initialSize by <a
href="https://github.com/promer94"><code>@​promer94</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2386">vercel/swr#2386</a></p>
</li>
<li>
<p>fix: make compare function only compare data (<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2375">#2375</a>)
by <a
href="https://github.com/Retrospection"><code>@​Retrospection</code></a>
and <a href="https://github.com/promer94"><code>@​promer94</code></a> in
<a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2387">vercel/swr#2387</a>
<a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2389">vercel/swr#2389</a></p>
</li>
<li>
<p>fix: initial loading state should be false with revalidation is
disabed by <a
href="https://github.com/promer94"><code>@​promer94</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2382">vercel/swr#2382</a></p>
</li>
<li>
<p>fix: Ensure hydration matches the SSR result during streaming by <a
href="https://github.com/shuding"><code>@​shuding</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2391">vercel/swr#2391</a></p>
</li>
</ul>
<h2>Chores</h2>
<ul>
<li>ci: only run release when tags pushed by <a
href="https://github.com/promer94"><code>@​promer94</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2388">vercel/swr#2388</a></li>
<li>unify <code>-</code> characters in README.md by <a
href="https://github.com/JanKaifer"><code>@​JanKaifer</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2334">vercel/swr#2334</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/hong24"><code>@​hong24</code></a> made
their first contribution in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2353">vercel/swr#2353</a></li>
<li><a
href="https://github.com/Retrospection"><code>@​Retrospection</code></a>
made their first contribution in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2387">vercel/swr#2387</a></li>
<li><a href="https://github.com/JanKaifer"><code>@​JanKaifer</code></a>
made their first contribution in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2334">vercel/swr#2334</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/vercel/swr/compare/v2.0.2...v2.0.3">https://github.com/vercel/swr/compare/v2.0.2...v2.0.3</a></p>
<h2>v2.0.2</h2>
<h2>Patches</h2>
<ul>
<li>fix: delay revalidation if a key is already active and has error by
<a href="https://github.com/promer94"><code>@​promer94</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2338">vercel/swr#2338</a></li>
<li>fix: createCacheHelper type by <a
href="https://github.com/promer94"><code>@​promer94</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2365">vercel/swr#2365</a></li>
</ul>
<h2>Chores</h2>
<ul>
<li>release workflow by <a
href="https://github.com/huozhi"><code>@​huozhi</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2374">vercel/swr#2374</a>,
<a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2381">vercel/swr#2381</a>,
<a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2383">vercel/swr#2383</a>,
<a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2384">vercel/swr#2384</a>,
<a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2385">vercel/swr#2385</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/vercel/swr/compare/v2.0.1...v2.0.2">https://github.com/vercel/swr/compare/v2.0.1...v2.0.2</a></p>
<h2>v2.0.1</h2>
<p>In this patch release, we majorly improved typing support and SWR can
infer the types based on the configuration.</p>
<ul>
<li>When the <code>suspense</code> option is <code>true</code>, the
returned <code>data</code> will exclude <code>undefined</code> and the
<code>isLoading</code> will always be <code>false</code>.</li>
<li>When the <code>fallbackData</code> option is provided, the returned
<code>data</code> will be the same type of <code>fallbackData</code>,
and the <code>isLoading</code> will always be <code>false</code>.</li>
</ul>
<p>Here's a demo for it:</p>
<p><a
href="https://user-images.githubusercontent.com/4800338/213288879-ffbeeeb5-aca5-4a65-8229-69fbf9b0bf70.mp4">https://user-images.githubusercontent.com/4800338/213288879-ffbeeeb5-aca5-4a65-8229-69fbf9b0bf70.mp4</a></p>
<h2>What's Changed</h2>
<ul>
<li>types: make FullConfiguration generic by <a
href="https://github.com/huozhi"><code>@​huozhi</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2273">vercel/swr#2273</a></li>
<li>type: enforce array literal as tuple by <a
href="https://github.com/promer94"><code>@​promer94</code></a> in <a
href="https://github-redirect.dependabot.com/vercel/swr/pull/2283">vercel/swr#2283</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="903de33428"><code>903de33</code></a>
2.0.3</li>
<li><a
href="6fa714ba02"><code>6fa714b</code></a>
fix: Ensure hydration matches the SSR result during streaming (<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2391">#2391</a>)</li>
<li><a
href="77f922fe44"><code>77f922f</code></a>
unify <code>-</code> characters in README.md (<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2334">#2334</a>)</li>
<li><a
href="d603bb6483"><code>d603bb6</code></a>
fix: initial loading state should be false with revalidation is disabed
(<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2382">#2382</a>)</li>
<li><a
href="cc97171e42"><code>cc97171</code></a>
test: add test case for <a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2375">#2375</a>
(<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2389">#2389</a>)</li>
<li><a
href="e188ad9c3d"><code>e188ad9</code></a>
fix: make compare function only compare data (<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2375">#2375</a>)
(<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2387">#2387</a>)</li>
<li><a
href="8847ddcf83"><code>8847ddc</code></a>
ci: only run release when tags pushed (<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2388">#2388</a>)</li>
<li><a
href="8cc79324bc"><code>8cc7932</code></a>
fix: when inifinite key changes, should use cached pagesize instead of
initia...</li>
<li><a
href="33954d7b66"><code>33954d7</code></a>
fix: parameters passed to subscribe is inconsistent with its declaration
(<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2353">#2353</a>)</li>
<li><a
href="c0090ab95b"><code>c0090ab</code></a>
build: fix typos in workflow yml (<a
href="https://github-redirect.dependabot.com/vercel/swr/issues/2385">#2385</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vercel/swr/compare/2.0.0...v2.0.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
2023-02-21 08:19:03 +01:00
dependabot[bot]
4b231db7f7 Bump @typescript-eslint/eslint-plugin from 5.48.0 to 5.53.0 in /frontend (#122)
Bumps
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
from 5.48.0 to 5.53.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>v5.53.0</h2>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.52.0...v5.53.0">5.53.0</a>
(2023-02-20)</h1>
<h3>Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [consistent-generic-constructors]
handle default parameters (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6484">#6484</a>)
(<a
href="e8cebce972">e8cebce</a>)</li>
<li><strong>eslint-plugin:</strong> [no-mixed-enums] add rule (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6102">#6102</a>)
(<a
href="16144d1d6a">16144d1</a>)</li>
<li><strong>typescript-estree:</strong> expose a wrapper cache clearing
function for advanced usecases (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6476">#6476</a>)
(<a
href="d8164960d2">d816496</a>)</li>
</ul>
<h2>v5.52.0</h2>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.51.0...v5.52.0">5.52.0</a>
(2023-02-13)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-import-type-side-effects]
correctly ignore zero-specifier imports (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6444">#6444</a>)
(<a
href="d5a6688a22">d5a6688</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-condition] account
for optional chaining on potentially void values (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6432">#6432</a>)
(<a
href="e1d9c67981">e1d9c67</a>),
closes <a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/5255">#5255</a></li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-condition] fix false
positive when checking indexed access types (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6452">#6452</a>)
(<a
href="d569924cf3">d569924</a>)</li>
<li><strong>eslint-plugin:</strong> fix key-spacing when type starts on
next line (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6412">#6412</a>)
(<a
href="3eb2eed616">3eb2eed</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [block-spacing] extending base rule
for TS related blocks (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6195">#6195</a>)
(<a
href="b2db3f57d3">b2db3f5</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-type] add
allowFunctionsWithoutTypeParameters option (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6105">#6105</a>)
(<a
href="113640e974">113640e</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-type] add
allowIIFEs option (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6237">#6237</a>)
(<a
href="a1b3f7b4d9">a1b3f7b</a>)</li>
<li><strong>typescript-estree:</strong> add <code>.kind</code> to
<code>TSModuleDeclaration</code> (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6443">#6443</a>)
(<a
href="2f948df35b">2f948df</a>)</li>
<li><strong>typescript-estree:</strong> allow specifying project: true
(<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6084">#6084</a>)
(<a
href="dcd05f0b3a">dcd05f0</a>)</li>
</ul>
<h2>v5.51.0</h2>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.50.0...v5.51.0">5.51.0</a>
(2023-02-06)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [sort-type-constituents] fixed
behavior change (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6384">#6384</a>)
(<a
href="5bf7f7fe48">5bf7f7f</a>),
closes <a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6339">#6339</a></li>
<li><strong>eslint-plugin:</strong> do not use .at(), Node 14 does not
support it (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6402">#6402</a>)
(<a
href="077ed1b5be">077ed1b</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [naming-convention] improve
performance by removing unnecessary selectors (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6376">#6376</a>)
(<a
href="3647a1c1bb">3647a1c</a>)</li>
<li><strong>eslint-plugin:</strong> [no-floating-promises] error on
logical expression (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6356">#6356</a>)
(<a
href="f330e06515">f330e06</a>)</li>
<li><strong>eslint-plugin:</strong> [no-import-type-side-effects] add
rule to warn against runtime side effects with
<code>verbatimModuleSyntax</code> (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6394">#6394</a>)
(<a
href="b14d3be0f3">b14d3be</a>)</li>
<li><strong>eslint-plugin:</strong> [strict-boolean-expressions] add
allow nullable enum to strict boolean expressions (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6096">#6096</a>)
(<a
href="d4747cd8cc">d4747cd</a>)</li>
<li><strong>typescript-estree:</strong> cache project glob resolution
(<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6367">#6367</a>)
(<a
href="afae8374df">afae837</a>)</li>
</ul>
<h2>v5.50.0</h2>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.49.0...v5.50.0">5.50.0</a>
(2023-01-31)</h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md"><code>@​typescript-eslint/eslint-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.52.0...v5.53.0">5.53.0</a>
(2023-02-20)</h1>
<h3>Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [consistent-generic-constructors]
handle default parameters (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6484">#6484</a>)
(<a
href="e8cebce972">e8cebce</a>)</li>
<li><strong>eslint-plugin:</strong> [no-mixed-enums] add rule (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6102">#6102</a>)
(<a
href="16144d1d6a">16144d1</a>)</li>
</ul>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.51.0...v5.52.0">5.52.0</a>
(2023-02-13)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-import-type-side-effects]
correctly ignore zero-specifier imports (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6444">#6444</a>)
(<a
href="d5a6688a22">d5a6688</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-condition] account
for optional chaining on potentially void values (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6432">#6432</a>)
(<a
href="e1d9c67981">e1d9c67</a>),
closes <a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/5255">#5255</a></li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-condition] fix false
positive when checking indexed access types (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6452">#6452</a>)
(<a
href="d569924cf3">d569924</a>)</li>
<li><strong>eslint-plugin:</strong> fix key-spacing when type starts on
next line (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6412">#6412</a>)
(<a
href="3eb2eed616">3eb2eed</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [block-spacing] extending base rule
for TS related blocks (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6195">#6195</a>)
(<a
href="b2db3f57d3">b2db3f5</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-type] add
allowFunctionsWithoutTypeParameters option (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6105">#6105</a>)
(<a
href="113640e974">113640e</a>)</li>
<li><strong>eslint-plugin:</strong> [explicit-function-return-type] add
allowIIFEs option (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6237">#6237</a>)
(<a
href="a1b3f7b4d9">a1b3f7b</a>)</li>
</ul>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.50.0...v5.51.0">5.51.0</a>
(2023-02-06)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [sort-type-constituents] fixed
behavior change (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6384">#6384</a>)
(<a
href="5bf7f7fe48">5bf7f7f</a>),
closes <a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6339">#6339</a></li>
<li><strong>eslint-plugin:</strong> do not use .at(), Node 14 does not
support it (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6402">#6402</a>)
(<a
href="077ed1b5be">077ed1b</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [naming-convention] improve
performance by removing unnecessary selectors (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6376">#6376</a>)
(<a
href="3647a1c1bb">3647a1c</a>)</li>
<li><strong>eslint-plugin:</strong> [no-floating-promises] error on
logical expression (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6356">#6356</a>)
(<a
href="f330e06515">f330e06</a>)</li>
<li><strong>eslint-plugin:</strong> [no-import-type-side-effects] add
rule to warn against runtime side effects with
<code>verbatimModuleSyntax</code> (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6394">#6394</a>)
(<a
href="b14d3be0f3">b14d3be</a>)</li>
<li><strong>eslint-plugin:</strong> [strict-boolean-expressions] add
allow nullable enum to strict boolean expressions (<a
href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/6096">#6096</a>)
(<a
href="d4747cd8cc">d4747cd</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="cb272f095b"><code>cb272f0</code></a>
chore: publish v5.53.0</li>
<li><a
href="e8cebce972"><code>e8cebce</code></a>
feat(eslint-plugin): [consistent-generic-constructors] handle default
paramet...</li>
<li><a
href="16144d1d6a"><code>16144d1</code></a>
feat(eslint-plugin): [no-mixed-enums] add rule (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/6102">#6102</a>)</li>
<li><a
href="fc803cc6e3"><code>fc803cc</code></a>
docs(eslint-plugin): explicit-function-return-type: missing
allowFunctionsWit...</li>
<li><a
href="c46c793a34"><code>c46c793</code></a>
chore: publish v5.52.0</li>
<li><a
href="b2db3f57d3"><code>b2db3f5</code></a>
feat(eslint-plugin): [block-spacing] extending base rule for TS related
block...</li>
<li><a
href="d569924cf3"><code>d569924</code></a>
fix(eslint-plugin): [no-unnecessary-condition] fix false positive when
checki...</li>
<li><a
href="a1b3f7b4d9"><code>a1b3f7b</code></a>
feat(eslint-plugin): [explicit-function-return-type] add allowIIFEs
option (#...</li>
<li><a
href="e1d9c67981"><code>e1d9c67</code></a>
fix(eslint-plugin): [no-unnecessary-condition] account for optional
chaining ...</li>
<li><a
href="3eb2eed616"><code>3eb2eed</code></a>
fix(eslint-plugin): fix key-spacing when type starts on next line (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/6412">#6412</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v5.53.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=5.48.0&new-version=5.53.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 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>
2023-02-21 08:18:38 +01:00
Erik Vroon
45cd04137f Fix round order (#119) 2023-02-21 00:01:48 +01:00
Erik Vroon
e4fd83c3bc Pass iterations in API call 2023-02-01 17:38:32 +01:00
Erik Vroon
cfee73688c Constrain tournament logo width 2023-02-01 17:35:28 +01:00
Erik Vroon
8480d73af5 Fix update of tournaments (#115) 2023-02-01 17:21:34 +01:00
Erik Vroon
dd81c6a83b Improve scheduling (#114) 2023-02-01 16:35:26 +01:00
Erik Vroon
27ef6b3a3e Add skeletons to dashboard (#99) 2023-01-22 16:40:43 +01:00
Erik Vroon
ba31e22c7a Create LICENSE (#98) 2023-01-22 16:28:26 +01:00
dependabot[bot]
65ffc7b91e Bump eslint-plugin-jsx-a11y from 6.6.1 to 6.7.1 in /frontend (#89)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-21 16:59:59 +01:00
dependabot[bot]
8bff7f8f3e Bump eslint-plugin-react from 7.31.11 to 7.32.1 in /frontend (#86)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-21 16:41:21 +01:00
Erik Vroon
e941880edb Change page title on dashboard (#97) 2023-01-21 16:32:22 +01:00
dependabot[bot]
64e96fd6fa Bump eslint-plugin-import from 2.26.0 to 2.27.5 in /frontend (#88)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-21 16:31:32 +01:00
dependabot[bot]
0e5bd4a955 Bump next from 13.1.1 to 13.1.3 in /frontend (#91)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-21 16:31:17 +01:00
dependabot[bot]
1c09b0f4f2 Bump @next/bundle-analyzer from 13.1.1 to 13.1.3 in /frontend (#92)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-21 16:31:00 +01:00
Erik Vroon
d9f7efa3df Add Sentry (#96) 2023-01-21 16:21:25 +01:00
Erik Vroon
7309cdc757 Ignore unfinished games in score (#95) 2023-01-21 16:03:48 +01:00
Erik Vroon
28b4c95a90 Fix bug with no content on dashboard (#94) 2023-01-21 15:57:11 +01:00
Erik Vroon
452f6a9b0e Update codecov.yml (#93) 2023-01-21 15:56:48 +01:00
Erik Vroon
36f86e4e9b Dashboard auth fixes (#90) 2023-01-18 16:10:49 +01:00
Erik Vroon
3df7e65f19 Fix formatting, preview images (#84) 2023-01-16 19:35:05 +01:00
Erik Vroon
571bf95e40 Fix README content (#83) 2023-01-16 16:56:43 +01:00
Erik Vroon
1257e1f484 Fix README logo (#82) 2023-01-16 16:48:30 +01:00
Erik Vroon
f03bf6cb92 Various bugfixes (#77) 2023-01-16 16:35:44 +01:00
Erik Vroon
f85c5e31c8 Improve docs (#76) 2023-01-13 18:53:32 +01:00
dependabot[bot]
6d8773d966 Update pylint requirement from 2.15.9 to 2.15.10 in /backend (#69)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-13 10:23:43 +01:00
dependabot[bot]
e97c14b970 Bump @babel/core from 7.20.5 to 7.20.12 in /frontend (#63)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-12 21:14:25 +01:00
dependabot[bot]
d6a03970b0 Bump prettier from 2.8.1 to 2.8.2 in /frontend (#67)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-12 21:14:16 +01:00
dependabot[bot]
6030b00132 Update fastapi-cache2 requirement from 0.1.9 to 0.2.0 in /backend (#71)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-12 21:14:03 +01:00
Erik Vroon
194bc7c136 Send dashboard_public when creating tournaments (#72) 2023-01-12 21:13:35 +01:00
Erik Vroon
d0092d1f66 Add Dashboard (#62) 2023-01-12 21:04:51 +01:00
dependabot[bot]
0d94111962 Bump @mantine/form from 5.9.5 to 5.10.0 in /frontend (#58)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Erik Vroon <erik.vroon@channable.com>
2023-01-07 18:01:21 +01:00
Erik Vroon
56df31c343 Add test coverage (#61) 2023-01-07 17:27:21 +01:00
dependabot[bot]
1bfdf804fb Bump @typescript-eslint/eslint-plugin from 5.30.0 to 5.48.0 in /frontend (#56)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-07 15:42:31 +01:00
dependabot[bot]
8fd54fb273 Bump @testing-library/user-event from 14.0.4 to 14.4.3 in /frontend (#51)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-07 15:42:21 +01:00
dependabot[bot]
b7cf25545c Bump @types/node from 18.11.4 to 18.11.18 in /frontend (#55)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-07 15:42:13 +01:00
dependabot[bot]
cc7d11c141 Bump babel-loader from 8.2.4 to 9.1.2 in /frontend (#59)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-07 15:41:58 +01:00
dependabot[bot]
9a4a671177 Bump json5 from 1.0.1 to 1.0.2 in /frontend (#60)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-07 15:05:18 +01:00
Erik Vroon
557debf14c Add tournaments and club endpoints (#43) 2023-01-07 15:00:43 +01:00
dependabot[bot]
65590183f7 Bump @typescript-eslint/parser from 5.30.0 to 5.47.1 in /frontend (#50)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-01 06:10:00 -08:00
dependabot[bot]
690a7292e3 Bump eslint-plugin-jest from 26.5.3 to 27.2.0 in /frontend (#48)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-01 05:38:09 -08:00
dependabot[bot]
4ff9a4f6da Bump prettier from 2.7.1 to 2.8.1 in /frontend (#49)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-01 05:38:00 -08:00
dependabot[bot]
369dc5e184 Bump @tabler/icons from 1.118.0 to 1.119.0 in /frontend (#47)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-01 05:37:48 -08:00
dependabot[bot]
870579ca1b Update pydantic requirement from 1.10.2 to 1.10.4 in /backend (#45)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-01 05:37:33 -08:00
dependabot[bot]
9565f02e55 Bump @mantine/next from 5.9.5 to 5.9.6 in /frontend (#46)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-01 05:37:23 -08:00
Erik Vroon
1cec8ff910 Run dependabot daily (#44) 2023-01-01 05:25:30 -08:00
Erik Vroon
e5cbe941dd Create db tables when the db is empty (#42) 2022-12-27 20:46:28 +01:00
dependabot[bot]
cfbf3d8ab8 Bump @testing-library/react from 13.0.0 to 13.4.0 in /frontend
Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 13.0.0 to 13.4.0.
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/react-testing-library/compare/v13.0.0...v13.4.0)

---
updated-dependencies:
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-27 17:46:49 +00:00
dependabot[bot]
3d3f38ddfe Bump eslint-plugin-testing-library from 5.2.0 to 5.9.1 in /frontend
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 5.2.0 to 5.9.1.
- [Release notes](https://github.com/testing-library/eslint-plugin-testing-library/releases)
- [Changelog](https://github.com/testing-library/eslint-plugin-testing-library/blob/main/.releaserc.json)
- [Commits](https://github.com/testing-library/eslint-plugin-testing-library/compare/v5.2.0...v5.9.1)

---
updated-dependencies:
- dependency-name: eslint-plugin-testing-library
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-27 17:42:17 +00:00
dependabot[bot]
92006e11a1 Bump eslint-plugin-react from 7.30.1 to 7.31.11 in /frontend
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.30.1 to 7.31.11.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.30.1...v7.31.11)

---
updated-dependencies:
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-27 17:42:06 +00:00