mirror of
https://github.com/evroon/bracket.git
synced 2026-02-05 20:11:15 -05:00
8a478d2e6adf084507d64faedd24e924e59d7ab3
817 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
8a478d2e6a |
Update pytest-cov requirement from 4.0.0 to 6.0.0 in /backend (#1080)
Updates the requirements on [pytest-cov](https://github.com/pytest-dev/pytest-cov) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst">pytest-cov's changelog</a>.</em></p> <blockquote> <h2>6.0.0 (2024-10-29)</h2> <ul> <li>Updated various documentation inaccuracies, especially on subprocess handling.</li> <li>Changed fail under checks to use the precision set in the coverage configuration. Now it will perform the check just like <code>coverage report</code> would.</li> <li>Added a <code>--cov-precision</code> cli option that can override the value set in your coverage configuration.</li> <li>Dropped support for now EOL Python 3.8.</li> </ul> <h2>5.0.0 (2024-03-24)</h2> <ul> <li>Removed support for xdist rsync (now deprecated). Contributed by Matthias Reichenbach in <code>[#623](https://github.com/pytest-dev/pytest-cov/issues/623) <https://github.com/pytest-dev/pytest-cov/pull/623></code>_.</li> <li>Switched docs theme to Furo.</li> <li>Various legacy Python cleanup and CI improvements. Contributed by Christian Clauss and Hugo van Kemenade in <code>[#630](https://github.com/pytest-dev/pytest-cov/issues/630) <https://github.com/pytest-dev/pytest-cov/pull/630></code><em>, <code>[#631](https://github.com/pytest-dev/pytest-cov/issues/631) <https://github.com/pytest-dev/pytest-cov/pull/631></code></em>, <code>[#632](https://github.com/pytest-dev/pytest-cov/issues/632) <https://github.com/pytest-dev/pytest-cov/pull/632></code>_ and <code>[#633](https://github.com/pytest-dev/pytest-cov/issues/633) <https://github.com/pytest-dev/pytest-cov/pull/633></code>_.</li> <li>Added a <code>pyproject.toml</code> example in the docs. Contributed by Dawn James in <code>[#626](https://github.com/pytest-dev/pytest-cov/issues/626) <https://github.com/pytest-dev/pytest-cov/pull/626></code>_.</li> <li>Modernized project's pre-commit hooks to use ruff. Initial POC contributed by Christian Clauss in <code>[#584](https://github.com/pytest-dev/pytest-cov/issues/584) <https://github.com/pytest-dev/pytest-cov/pull/584></code>_.</li> <li>Dropped support for Python 3.7.</li> </ul> <h2>4.1.0 (2023-05-24)</h2> <ul> <li>Updated CI with new Pythons and dependencies.</li> <li>Removed rsyncdir support. This makes pytest-cov compatible with xdist 3.0. Contributed by Sorin Sbarnea in <code>[#558](https://github.com/pytest-dev/pytest-cov/issues/558) <https://github.com/pytest-dev/pytest-cov/pull/558></code>_.</li> <li>Optimized summary generation to not be performed if no reporting is active (for example, when <code>--cov-report=''</code> is used without <code>--cov-fail-under</code>). Contributed by Jonathan Stewmon in <code>[#589](https://github.com/pytest-dev/pytest-cov/issues/589) <https://github.com/pytest-dev/pytest-cov/pull/589></code>_.</li> <li>Added support for JSON reporting. Contributed by Matthew Gamble in <code>[#582](https://github.com/pytest-dev/pytest-cov/issues/582) <https://github.com/pytest-dev/pytest-cov/pull/582></code>_.</li> <li>Refactored code to use f-strings. Contributed by Mark Mayo in <code>[#572](https://github.com/pytest-dev/pytest-cov/issues/572) <https://github.com/pytest-dev/pytest-cov/pull/572></code>_.</li> <li>Fixed a skip in the test suite for some old xdist. Contributed by a bunch of people in <code>[#565](https://github.com/pytest-dev/pytest-cov/issues/565) <https://github.com/pytest-dev/pytest-cov/pull/565></code>_.</li> <li>Dropped support for Python 3.6.</li> </ul> <h2>4.0.0 (2022-09-28)</h2> <p><strong>Note that this release drops support for multiprocessing.</strong></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
3f9eab2eea |
Bump @mantine/form from 7.15.0 to 7.16.0 in /frontend (#1082)
Bumps [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) from 7.15.0 to 7.16.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.16.0 🌶️</h2> <p><a href="https://mantine.dev/changelog/7-16-0">View changelog with demos on mantine.dev website</a></p> <h2>use-scroll-spy hook</h2> <p>New <a href="https://mantine.dev/hooks/use-scroll-spy">use-scroll-spy</a> hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.</p> <pre lang="tsx"><code>import { Text, UnstyledButton } from '@mantine/core'; import { useScrollSpy } from '@mantine/hooks'; <p>function Demo() { const spy = useScrollSpy({ selector: '#mdx :is(h1, h2, h3, h4, h5, h6)', });</p> <p>const headings = spy.data.map((heading, index) => ( <li key={heading.id} style={{ listStylePosition: 'inside', paddingInlineStart: heading.depth * 20, background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined, }} > <UnstyledButton onClick={() => heading.getNode().scrollIntoView()}> {heading.value} </UnstyledButton> </li> ));</p> <p>return ( <div> <Text>Scroll to heading:</Text> <ul style={{ margin: 0, padding: 0 }}>{headings}</ul> </div> ); } </code></pre></p> <h2>TableOfContents component</h2> <p>New <a href="https://mantine.dev/core/table-of-contents">TableOfContents</a> component is built on top of <code>use-scroll-spy</code> hook and can be used to create table of contents components like the one on the right side of mantine.dev documentation sidebar:</p> <pre lang="tsx"><code></tr></table> </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
1afc177456 |
Bump eslint-plugin-jest from 28.10.0 to 28.11.0 in /frontend (#1081)
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 28.10.0 to 28.11.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.11.0</h2> <h1><a href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.10.1...v28.11.0">28.11.0</a> (2025-01-15)</h1> <h3>Features</h3> <ul> <li><strong>valid-expect:</strong> allow calling <code>expect</code> with no arguments (<a href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1688">#1688</a>) (<a href=" |
||
|
|
00ea0322a8 |
Update pytest-xdist requirement from 3.2.1 to 3.6.1 in /backend (#1079)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Updates the requirements on [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst">pytest-xdist's changelog</a>.</em></p> <blockquote> <h1>pytest-xdist 3.6.1 (2024-04-28)</h1> <h2>Bug Fixes</h2> <ul> <li><code>[#1071](https://github.com/pytest-dev/pytest-xdist/issues/1071) <https://github.com/pytest-dev/pytest-xdist/issues/1071></code>_: Add backward compatibility for deadlock issue with the <code>execnet</code> new <code>main_thread_only</code> "execmodel" triggered when pytest-cov accesses rinfo.</li> </ul> <h1>pytest-xdist 3.6.0 (2024-04-19)</h1> <p>This release was YANKED due to a regression fixed in 3.6.1.</p> <h2>Features</h2> <ul> <li><code>[#1027](https://github.com/pytest-dev/pytest-xdist/issues/1027) <https://github.com/pytest-dev/pytest-xdist/pull/1027></code>_:<code>pytest-xdist</code> workers now always execute the tests in the main thread. Previously some tests might end up executing in a separate thread other than <code>main</code> in the workers, due to some internal <code>execnet`` details. This can cause problems specially with async frameworks where the event loop is running in the ``main`` thread (for example </code><a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/620">#620</a> <a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/620">pytest-dev/pytest-xdist#620</a>`__).</li> </ul> <h2>Bug Fixes</h2> <ul> <li> <p><code>[#1024](https://github.com/pytest-dev/pytest-xdist/issues/1024) <https://github.com/pytest-dev/pytest-xdist/issues/1024></code>_: Added proper handling of <code>shouldstop</code> (such as set by <code>--max-fail</code>) and <code>shouldfail</code> conditions in workers. Previously, a worker might have continued executing further tests before the controller could terminate the session.</p> </li> <li> <p><code>[#1028](https://github.com/pytest-dev/pytest-xdist/issues/1028) <https://github.com/pytest-dev/pytest-xdist/issues/1028></code>_: Fixed compatibility issue between <code>looponfail</code> and editable installs.</p> </li> <li> <p><code>[#620](https://github.com/pytest-dev/pytest-xdist/issues/620) <https://github.com/pytest-dev/pytest-xdist/issues/620></code>_: Use the new <code>main_thread_only</code> <code>execnet</code> "execmodel" so that code which expects to only run in the main thread will now work as expected.</p> </li> <li> <p><code>[#937](https://github.com/pytest-dev/pytest-xdist/issues/937) <https://github.com/pytest-dev/pytest-xdist/issues/937></code>_: Fixed a bug where plugin would raise an incompatibility error with <code>--pdb</code> despite using <code>-n0</code>.</p> </li> </ul> <h2>Removals</h2> <ul> <li> <p><code>[#1053](https://github.com/pytest-dev/pytest-xdist/issues/1053) <https://github.com/pytest-dev/pytest-xdist/issues/1053></code>_: Dropped support for Python 3.7.</p> </li> <li> <p><code>[#1057](https://github.com/pytest-dev/pytest-xdist/issues/1057) <https://github.com/pytest-dev/pytest-xdist/issues/1057></code>_: pytest>=7.0.0 is now required.</p> <p>execnet>=2.1.0 is now required.</p> </li> </ul> <h2>Trivial Changes</h2> <ul> <li> <p><code>[#1020](https://github.com/pytest-dev/pytest-xdist/issues/1020) <https://github.com/pytest-dev/pytest-xdist/issues/1020></code>_: pytest-xdist's <code>setup.py</code> file is removed.</p> <p>If you relied on this file, e.g. to install pytest using <code>setup.py install</code>, please see <code>Why you shouldn't invoke setup.py directly <https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary></code>_ for alternatives.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
197d226f31 |
Update vulture requirement from 2.10 to 2.14 in /backend (#1078)
Updates the requirements on [vulture](https://github.com/jendrikseipp/vulture) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jendrikseipp/vulture/releases">vulture's releases</a>.</em></p> <blockquote> <h2>2.14 (2024-12-08)</h2> <ul> <li>Improve reachability analysis (kreathon, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/270">#270</a>, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/302">#302</a>).</li> <li>Add type hints for <code>get_unused_code</code> and the fields of the <code>Item</code> class (John Doknjas, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/361">#361</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jendrikseipp/vulture/blob/main/CHANGELOG.md">vulture's changelog</a>.</em></p> <blockquote> <h1>2.14 (2024-12-08)</h1> <ul> <li>Improve reachability analysis (kreathon, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/270">#270</a>, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/302">#302</a>).</li> <li>Add type hints for <code>get_unused_code</code> and the fields of the <code>Item</code> class (John Doknjas, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/361">#361</a>).</li> </ul> <h1>2.13 (2024-10-02)</h1> <ul> <li>Add support for Python 3.13 (Jendrik Seipp, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/369">#369</a>).</li> <li>Add PyPI and conda-forge badges to README file (Trevor James Smith, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/356">#356</a>).</li> <li>Include <code>tests/**/*.toml</code> in sdist (Colin Watson).</li> </ul> <h1>2.12 (2024-09-17)</h1> <ul> <li>Use <code>ruff</code> for linting and formatting (Anh Trinh, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/347">#347</a>, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/349">#349</a>).</li> <li>Replace <code>tox</code> by <code>pre-commit</code> for linting and formatting (Anh Trinh, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/349">#349</a>).</li> <li>Add <code>--config</code> flag to specify path to pyproject.toml configuration file (Glen Robertson, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/352">#352</a>).</li> </ul> <h1>2.11 (2024-01-06)</h1> <ul> <li>Switch to tomllib/tomli to support heterogeneous arrays (Sebastian Csar, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/340">#340</a>).</li> <li>Bump flake8, flake8-comprehensions and flake8-bugbear (Sebastian Csar, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/341">#341</a>).</li> <li>Provide whitelist parity for <code>MagicMock</code> and <code>Mock</code> (maxrake, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/342">#342</a>).</li> </ul> <h1>2.10 (2023-10-06)</h1> <ul> <li>Drop support for Python 3.7 (Jendrik Seipp, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/323">#323</a>).</li> <li>Add support for Python 3.12 (Jendrik Seipp, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/332">#332</a>).</li> <li>Use <code>end_lineno</code> AST attribute to obtain more accurate line counts (Jendrik Seipp).</li> </ul> <h1>2.9.1 (2023-08-21)</h1> <ul> <li>Use exit code 0 for <code>--help</code> and <code>--version</code> again (Jendrik Seipp, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/321">#321</a>).</li> </ul> <h1>2.9 (2023-08-20)</h1> <ul> <li>Use exit code 3 when dead code is found (whosayn, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/319">#319</a>).</li> <li>Treat non-supported decorator names as "@" instead of crashing (Llandy3d and Jendrik Seipp, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/284">#284</a>).</li> <li>Drop support for Python 3.6 (Jendrik Seipp).</li> </ul> <h1>2.8 (2023-08-10)</h1> <ul> <li>Add <code>UnicodeEncodeError</code> exception handling to <code>core.py</code> (milanbalazs, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/299">#299</a>).</li> <li>Add whitelist for <code>Enum</code> attributes <code>_name_</code> and <code>_value_</code> (Eugene Toder, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/305">#305</a>).</li> <li>Run tests and add PyPI trove for Python 3.11 (Jendrik Seipp).</li> </ul> <h1>2.7 (2023-01-08)</h1> <ul> <li>Ignore <code>setup_module()</code>, <code>teardown_module()</code>, etc. in pytest <code>test_*.py</code> files (Jendrik Seipp).</li> <li>Add whitelist for <code>socketserver.TCPServer.allow_reuse_address</code> (Ben Elliston).</li> <li>Clarify that <code>--exclude</code> patterns are matched against absolute paths (Jendrik Seipp, <a href="https://redirect.github.com/jendrikseipp/vulture/issues/260">#260</a>).</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
64998841e2 |
Fix dev packages (#1076)
Pins dev packages to avoid CI failing on master. Fixes some Ruff warnings/errors |
||
|
|
d34adf7356 |
Bump postcss from 8.4.33 to 8.5.0 in /frontend (#1077)
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.33 to 8.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/releases">postcss's releases</a>.</em></p> <blockquote> <h2>8.5 “Duke Alloces”</h2> <!-- raw HTML omitted --> <p>PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.</p> <p><a href="https://github.com/romainmenke"><code>@romainmenke</code></a> during <a href="https://redirect.github.com/postcss/postcss/issues/1995">his work</a> on <a href="https://stylelint.io">Stylelint</a> added <code>Input#document</code> in additional to <code>Input#css</code>.</p> <pre lang="js"><code>root.source.input.document //=> "<p>Hello</p> // <style> // p { // color: green; // } // </style>" root.source.input.css //=> "p { // color: green; // }" <p></code></pre></p> <h2>Thanks to Sponsors</h2> <p>This release was possible thanks to our community.</p> <p>If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:</p> <ul> <li><a href="https://tidelift.com/"><strong>Tidelift</strong></a> with a Spotify-like subscription model supporting all projects from your lock file.</li> <li>Direct donations at <a href="https://github.com/sponsors/ai"><strong>GitHub Sponsors</strong></a> or <a href="https://opencollective.com/postcss#section-contributors"><strong>Open Collective</strong></a>.</li> </ul> <h2>8.4.49</h2> <ul> <li>Fixed custom syntax without <code>source.offset</code> (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.48</h2> <ul> <li>Fixed position calculation in error/warnings methods (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.47</h2> <ul> <li>Removed debug code.</li> </ul> <h2>8.4.46</h2> <ul> <li>Fixed <code>Cannot read properties of undefined (reading 'before')</code>.</li> </ul> <h2>8.4.45</h2> <ul> <li>Removed unnecessary fix which could lead to infinite loop.</li> </ul> <h2>8.4.44</h2> <ul> <li>Another way to fix <code>markClean is not a function</code> error.</li> </ul> <h2>8.4.43</h2> <ul> <li>Fixed <code>markClean is not a function</code> error.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's changelog</a>.</em></p> <blockquote> <h1>Change Log</h1> <p>This project adheres to <a href="https://semver.org/">Semantic Versioning</a>.</p> <h2>8.5 “Duke Alloces”</h2> <ul> <li>Added <code>Input#document</code> for sources like CSS-in-JS or HTML (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.49</h2> <ul> <li>Fixed custom syntax without <code>source.offset</code> (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.48</h2> <ul> <li>Fixed position calculation in error/warnings methods (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.47</h2> <ul> <li>Removed debug code.</li> </ul> <h2>8.4.46</h2> <ul> <li>Fixed <code>Cannot read properties of undefined (reading 'before')</code>.</li> </ul> <h2>8.4.45</h2> <ul> <li>Removed unnecessary fix which could lead to infinite loop.</li> </ul> <h2>8.4.44</h2> <ul> <li>Another way to fix <code>markClean is not a function</code> error.</li> </ul> <h2>8.4.43</h2> <ul> <li>Fixed <code>markClean is not a function</code> error.</li> </ul> <h2>8.4.42</h2> <ul> <li>Fixed CSS syntax error on long minified files (by <a href="https://github.com/varpstar"><code>@varpstar</code></a>).</li> </ul> <h2>8.4.41</h2> <ul> <li>Fixed types (by <a href="https://github.com/nex3"><code>@nex3</code></a> and <a href="https://github.com/querkmachine"><code>@querkmachine</code></a>).</li> <li>Cleaned up RegExps (by <a href="https://github.com/bluwy"><code>@bluwy</code></a>).</li> </ul> <h2>8.4.40</h2> <ul> <li>Moved to getter/setter in nodes types to help Sass team (by <a href="https://github.com/nex3"><code>@nex3</code></a>).</li> </ul> <h2>8.4.39</h2> <ul> <li>Fixed <code>CssSyntaxError</code> types (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.38</h2> <ul> <li>Fixed <code>endIndex: 0</code> in errors and warnings (by <a href="https://github.com/romainmenke"><code>@romainmenke</code></a>).</li> </ul> <h2>8.4.37</h2> <ul> <li>Fixed <code>original.column are not numbers</code> error in another case.</li> </ul> <h2>8.4.36</h2> <ul> <li>Fixed <code>original.column are not numbers</code> error on broken previous source map.</li> </ul> <h2>8.4.35</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
4893bf0414 |
Bump docker/build-push-action from 6.10.0 to 6.11.0 (#1075)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.10.0 to 6.11.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/docker/build-push-action/releases">docker/build-push-action's releases</a>.</em></p> <blockquote> <h2>v6.11.0</h2> <ul> <li>Handlebar <code>defaultContext</code> support for <code>build-contexts</code> input by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://redirect.github.com/docker/build-push-action/pull/1283">docker/build-push-action#1283</a></li> <li>Bump <code>@docker/actions-toolkit</code> from 0.46.0 to 0.49.0 in <a href="https://redirect.github.com/docker/build-push-action/pull/1281">docker/build-push-action#1281</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/docker/build-push-action/compare/v6.10.0...v6.11.0">https://github.com/docker/build-push-action/compare/v6.10.0...v6.11.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
243614a50a |
Bump @tabler/icons-react from 3.27.1 to 3.28.1 in /frontend (#1073)
Bumps [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) from 3.27.1 to 3.28.1. <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.28.1</h2> <p>Hotfix for Installation Issue with Workspace Protocol</p> <h2>Release 3.28.0</h2> <!-- raw HTML omitted --> <h3>18 new icons:</h3> <ul> <li><code>filled/arrow-autofit-down</code></li> <li><code>filled/arrow-autofit-height</code></li> <li><code>filled/arrow-autofit-left</code></li> <li><code>filled/arrow-autofit-right</code></li> <li><code>filled/arrow-autofit-up</code></li> <li><code>filled/arrow-autofit-width</code></li> <li><code>filled/cloud-computing</code></li> <li><code>filled/cloud-data-connection</code></li> <li><code>filled/fish-bone</code></li> <li><code>filled/pig</code></li> <li><code>filled/spider</code></li> <li><code>filled/sun-high</code></li> <li><code>filled/sun-low</code></li> <li><code>filled/sunrise</code></li> <li><code>filled/sunset-2</code></li> <li><code>filled/sunset</code></li> <li><code>filled/temperature-minus</code></li> <li><code>filled/temperature-plus</code></li> </ul> <p>Fixed icons: <code>outline/file-text-shield</code>, <code>outline/replace-user</code></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
b82b337de1 |
Bump @tabler/icons-react from 3.26.0 to 3.27.1 in /frontend (#1072)
Bumps [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) from 3.26.0 to 3.27.1. <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.27.1</h2> <p>Update file patterns in <code>package.json</code> to include subdirectories for icon files in <code>@tabler/icons-png</code>, <code>@tabler/icons-pdf</code> and <code>@tabler/icons-eps</code></p> <h2>Release 3.27.0</h2> <!-- raw HTML omitted --> <h3>18 new icons:</h3> <ul> <li><code>filled/aerial-lift</code></li> <li><code>filled/air-balloon</code></li> <li><code>filled/bus</code></li> <li><code>filled/car-crane</code></li> <li><code>filled/caravan</code></li> <li><code>filled/engine</code></li> <li><code>filled/ferry</code></li> <li><code>filled/gas-station</code></li> <li><code>filled/helicopter</code></li> <li><code>filled/motorbike</code></li> <li><code>filled/rollercoaster</code></li> <li><code>filled/speedboat</code></li> <li><code>filled/train</code></li> <li><code>filled/trolley</code></li> <li><code>filled/truck</code></li> <li><code>outline/file-text-shield</code></li> <li><code>outline/hand-click-off</code></li> <li><code>outline/replace-user</code></li> </ul> <p>Fixed icons: <code>filled/car</code>, <code>outline/arrow-down-from-arc</code>, <code>outline/arrow-down-to-arc</code>, <code>outline/arrow-left-from-arc</code>, <code>outline/arrow-left-to-arc</code>, <code>outline/arrow-right-from-arc</code>, <code>outline/arrow-right-to-arc</code>, <code>outline/arrow-up-from-arc</code>, <code>outline/arrow-up-to-arc</code>, <code>outline/arrows-transfer-up-down</code>, <code>outline/article-off</code>, <code>outline/article</code>, <code>outline/automation</code>, <code>outline/background</code>, <code>outline/badge-2k</code>, <code>outline/badge-3k</code>, <code>outline/badge-5k</code>, <code>outline/basket-bolt</code>, <code>outline/basket-cancel</code>, <code>outline/basket-check</code>, <code>outline/basket-code</code>, <code>outline/basket-cog</code>, <code>outline/basket-discount</code>, <code>outline/basket-dollar</code>, <code>outline/basket-down</code>, <code>outline/basket-exclamation</code>, <code>outline/basket-heart</code>, <code>outline/basket-minus</code>, <code>outline/basket-pause</code>, <code>outline/basket-pin</code>, <code>outline/basket-plus</code>, <code>outline/basket-question</code>, <code>outline/basket-search</code>, <code>outline/basket-share</code>, <code>outline/basket-star</code>, <code>outline/basket-up</code>, <code>outline/basket-x</code>, <code>outline/blender</code>, <code>outline/bowling</code>, <code>outline/brain</code>, <code>outline/browser-maximize</code>, <code>outline/browser-minus</code>, <code>outline/browser-share</code>, <code>outline/bubble-tea-2</code>, <code>outline/bubble-tea</code>, <code>outline/building-airport</code>, <code>outline/building-burj-al-arab</code>, <code>outline/burger</code>, <code>outline/cake-off</code>, <code>outline/cake-roll</code>, <code>outline/cake</code>, <code>outline/calendar-clock</code>, <code>outline/calendar-dot</code>, <code>outline/calendar-month</code>, <code>outline/calendar-sad</code>, <code>outline/calendar-smile</code>, <code>outline/calendar-user</code>, <code>outline/calendar-week</code>, <code>outline/car-garage</code>, <code>outline/category-minus</code>, <code>outline/category-plus</code>, <code>outline/chart-bar-popular</code>, <code>outline/chart-cohort</code>, <code>outline/chart-column</code>, <code>outline/chart-covariate</code>, <code>outline/chart-funnel</code>, <code>outline/chart-scatter-3d</code>, <code>outline/chart-scatter</code>, <code>outline/clipboard-search</code>, <code>outline/clipboard-smile</code>, <code>outline/clock-bitcoin</code>, <code>outline/contract</code>, <code>outline/cookie</code>, <code>outline/credit-card-pay</code>, <code>outline/credit-card-refund</code>, <code>outline/hand-click</code>, <code>outline/hand-finger-off</code>, <code>outline/hand-finger</code>, <code>outline/http-connect-off</code>, <code>outline/http-delete-off</code>, <code>outline/http-get-off</code>, <code>outline/http-head-off</code>, <code>outline/http-options-off</code>, <code>outline/http-patch-off</code>, <code>outline/http-post-off</code>, <code>outline/http-put-off</code>, <code>outline/http-que-off</code>, <code>outline/http-trace-off</code>, <code>outline/monkeybar</code>, <code>outline/speedboat</code>, <code>outline/train</code></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
8fde37542b |
Bump next from 15.1.0 to 15.1.2 in /frontend (#1071)
Bumps [next](https://github.com/vercel/next.js) from 15.1.0 to 15.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases">next's releases</a>.</em></p> <blockquote> <h2>v15.1.2</h2> <blockquote> <p>[!NOTE]<br /> This release is backporting bug fixes. It does <strong>not</strong> include all pending features/changes on canary.</p> </blockquote> <h3>Core Changes</h3> <ul> <li>Update React from 7283a213-20241206 to 65e06cb7-20241218: <a href="https://redirect.github.com/vercel/next.js/pull/74117">vercel/next.js#74117</a></li> </ul> <h3>Credits</h3> <p>Huge thanks to <a href="https://github.com/ztanner"><code>@ztanner</code></a> for helping!</p> <h2>v15.1.1</h2> <blockquote> <p>[!NOTE]<br /> This release is backporting bug fixes. It does <strong>not</strong> include all pending features/changes on canary.</p> </blockquote> <h3>Core Changes</h3> <ul> <li>fix(turbo): sassOptions silenceDeprecations was not overwritten with user options: <a href="https://redirect.github.com/vercel/next.js/pull/73937">vercel/next.js#73937</a></li> <li>refactor collectAppPageSegments: <a href="https://redirect.github.com/vercel/next.js/pull/73908">vercel/next.js#73908</a></li> </ul> <h3>Credits</h3> <p>Huge thanks to <a href="https://github.com/devjiwonchoi"><code>@devjiwonchoi</code></a> and <a href="https://github.com/ztanner"><code>@ztanner</code></a> for helping!</p> <h2>v15.1.1-canary.24</h2> <h3>Core Changes</h3> <ul> <li>fix: update broken links in config-shared.d.ts: <a href="https://redirect.github.com/vercel/next.js/issues/74122">#74122</a></li> <li>fix: fix typos in errors.json & create-component-tree.tsx: <a href="https://redirect.github.com/vercel/next.js/issues/74471">#74471</a></li> <li>Safely retrieve router, improve page reload logic: <a href="https://redirect.github.com/vercel/next.js/issues/74209">#74209</a></li> <li>docs: bump year: <a href="https://redirect.github.com/vercel/next.js/issues/74475">#74475</a></li> </ul> <h3>Misc Changes</h3> <ul> <li>docs(generate-static-params): add typescript example and missing jsx switcher: <a href="https://redirect.github.com/vercel/next.js/issues/73962">#73962</a></li> <li>docs(fetching-data-and-streaming): add missing types to example: <a href="https://redirect.github.com/vercel/next.js/issues/74081">#74081</a></li> <li>docs(use-cache): add missing <code>switcher</code> code blocks and types in examples: <a href="https://redirect.github.com/vercel/next.js/issues/74083">#74083</a></li> </ul> <h3>Credits</h3> <p>Huge thanks to <a href="https://github.com/yongholeeme"><code>@yongholeeme</code></a>, <a href="https://github.com/spidersouris"><code>@spidersouris</code></a>, <a href="https://github.com/devpla"><code>@devpla</code></a>, <a href="https://github.com/gurkerl83"><code>@gurkerl83</code></a>, and <a href="https://github.com/cassiossantos"><code>@cassiossantos</code></a> for helping!</p> <h2>v15.1.1-canary.23</h2> <h3>Misc Changes</h3> <ul> <li>docs: remove catch-all for opengraph-image: <a href="https://redirect.github.com/vercel/next.js/issues/74338">#74338</a></li> </ul> <h3>Credits</h3> <p>Huge thanks to <a href="https://github.com/leerob"><code>@leerob</code></a> for helping!</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
efae83982b |
Bump react-i18next from 15.3.0 to 15.4.0 in /frontend (#1069)
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 15.3.0 to 15.4.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md">react-i18next's changelog</a>.</em></p> <blockquote> <h3>15.4.0</h3> <p>feat: add meta with codes on warnings to allow conditional logging <a href="https://redirect.github.com/i18next/react-i18next/pull/1826">1826</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
e6bc028900 |
Bump react-i18next from 15.2.0 to 15.3.0 in /frontend (#1067)
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 15.2.0 to 15.3.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md">react-i18next's changelog</a>.</em></p> <blockquote> <h3>15.3.0</h3> <p>Uses the i18next logger instead of the default console logger, if there is a valid i18next instance. Now the debug i18next option is respected, and you can also inject your own logger module: <a href="https://www.i18next.com/misc/creating-own-plugins#logger">https://www.i18next.com/misc/creating-own-plugins#logger</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
307809f384 | Install python 3.12 on CI (#1066) | ||
|
|
23ea37adb5 |
Bump swr from 2.2.4 to 2.3.0 in /frontend (#1065)
Bumps [swr](https://github.com/vercel/swr) from 2.2.4 to 2.3.0. <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.3.0</h2> <h3>Feature</h3> <ul> <li>Support promises as fallback data by <a href="https://github.com/shuding"><code>@shuding</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2891">vercel/swr#2891</a></li> <li>Allow to use with React 19 by <a href="https://github.com/vladshcherbin"><code>@vladshcherbin</code></a> and <a href="https://github.com/devjiwonchoi"><code>@devjiwonchoi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3047">vercel/swr#3047</a>, <a href="https://redirect.github.com/vercel/swr/pull/2963">vercel/swr#2963</a></li> </ul> <h3>Patches</h3> <ul> <li>fix <a href="https://redirect.github.com/vercel/swr/issues/3030">#3030</a> and run relateive test in edge-runtime by <a href="https://github.com/promer94"><code>@promer94</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3036">vercel/swr#3036</a></li> <li>fix: Only suspend when using the <code>fallback</code> by <a href="https://github.com/shuding"><code>@shuding</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3045">vercel/swr#3045</a></li> <li>fix type check in tests by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3052">vercel/swr#3052</a></li> <li>fix: Replace the deprecated 'window' with 'globalThis' for Deno by <a href="https://github.com/saul-atomrigs"><code>@saul-atomrigs</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2915">vercel/swr#2915</a></li> <li>fix: check if config.fallback is undefined by <a href="https://github.com/taku-hatano"><code>@taku-hatano</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2913">vercel/swr#2913</a></li> <li>fix(infinte): export SWRInfiniteKeyedMutator type by <a href="https://github.com/LeoMcA"><code>@LeoMcA</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2900">vercel/swr#2900</a></li> <li>fix: Improve comparison performance by <a href="https://github.com/shuding"><code>@shuding</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2973">vercel/swr#2973</a></li> <li>Export ScopedMutator type by <a href="https://github.com/joshkel"><code>@joshkel</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2937">vercel/swr#2937</a></li> <li>Improve-Type-Safety-and-State-Access-in-useStateWithDeps-Hook by <a href="https://github.com/O-BERNARDOFOEGBU"><code>@O-BERNARDOFOEGBU</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3027">vercel/swr#3027</a></li> </ul> <h3>Misc</h3> <ul> <li>chore: bump dev deps and change example react version to latest by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2894">vercel/swr#2894</a></li> <li>build: fix beta release job by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2895">vercel/swr#2895</a></li> <li>chore: Improve test coverage by <a href="https://github.com/shuding"><code>@shuding</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2903">vercel/swr#2903</a></li> <li>chore: simplify test coverage strategy by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2909">vercel/swr#2909</a></li> <li>build: simplify react-server export and update bundler by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2897">vercel/swr#2897</a></li> <li>examples: add RSC streaming pre-render with promise fallback example by <a href="https://github.com/promer94"><code>@promer94</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2905">vercel/swr#2905</a></li> <li>Drop client-only by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2910">vercel/swr#2910</a></li> <li>Mark package as side-effect free by <a href="https://github.com/htunnicliff"><code>@htunnicliff</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2904">vercel/swr#2904</a></li> <li>Drop exports module field by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2911">vercel/swr#2911</a></li> <li>chore: update pkg script watch by <a href="https://github.com/unliar"><code>@unliar</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2920">vercel/swr#2920</a></li> <li>test: remove console.error times check by <a href="https://github.com/promer94"><code>@promer94</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2918">vercel/swr#2918</a></li> <li>build: bump bundler for perf by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2929">vercel/swr#2929</a></li> <li>Fix bundling of client entry chunks by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2932">vercel/swr#2932</a></li> <li>ci: fix ci error and upgrade action version by <a href="https://github.com/promer94"><code>@promer94</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2952">vercel/swr#2952</a></li> <li>Add SWRInfiniteMutatorOptions type to export by <a href="https://github.com/ludwigbacklund"><code>@ludwigbacklund</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2954">vercel/swr#2954</a></li> <li>test: update the revalidate function test for useSWRInfinite by <a href="https://github.com/koba04"><code>@koba04</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2955">vercel/swr#2955</a></li> <li>chore: upgrade nextjs dev dep for e2e testing by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3044">vercel/swr#3044</a></li> <li>ci: simplify ci config and bump some deps version by <a href="https://github.com/promer94"><code>@promer94</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/2770">vercel/swr#2770</a></li> <li>chore: reorganize entries by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3048">vercel/swr#3048</a></li> <li>Bump bundler and reorganize serialize exports by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3049">vercel/swr#3049</a></li> <li>upgrade use-sync-external-store to support react 19 by <a href="https://github.com/huozhi"><code>@huozhi</code></a> in <a href="https://redirect.github.com/vercel/swr/pull/3050">vercel/swr#3050</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/htunnicliff"><code>@htunnicliff</code></a> made their first contribution in <a href="https://redirect.github.com/vercel/swr/pull/2904">vercel/swr#2904</a></li> <li><a href="https://github.com/saul-atomrigs"><code>@saul-atomrigs</code></a> made their first contribution in <a href="https://redirect.github.com/vercel/swr/pull/2915">vercel/swr#2915</a></li> <li><a href="https://github.com/unliar"><code>@unliar</code></a> made their first contribution in <a href="https://redirect.github.com/vercel/swr/pull/2920">vercel/swr#2920</a></li> <li><a href="https://github.com/ludwigbacklund"><code>@ludwigbacklund</code></a> made their first contribution in <a href="https://redirect.github.com/vercel/swr/pull/2954">vercel/swr#2954</a></li> <li><a href="https://github.com/taku-hatano"><code>@taku-hatano</code></a> made their first contribution in <a href="https://redirect.github.com/vercel/swr/pull/2913">vercel/swr#2913</a></li> <li><a href="https://github.com/LeoMcA"><code>@LeoMcA</code></a> made their first contribution in <a href="https://redirect.github.com/vercel/swr/pull/2900">vercel/swr#2900</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
57279de800 |
Bump i18next from 24.1.0 to 24.2.0 in /frontend (#1064)
Bumps [i18next](https://github.com/i18next/i18next) from 24.1.0 to 24.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next/releases">i18next's releases</a>.</em></p> <blockquote> <h2>v24.2.0</h2> <ul> <li>feat(typescript): Add strictKeyChecks option to enforce checking key existence when defaultValue is used <a href="https://redirect.github.com/i18next/i18next/pull/2274">2274</a>, fixes <a href="https://redirect.github.com/i18next/i18next/issues/2043">2043</a></li> </ul> <h2>v24.1.2</h2> <ul> <li>optimize fix: Bug Report: Unsafe Behavior in i18n.t Function Leading to Potential Code Execution <a href="https://redirect.github.com/i18next/i18next/issues/2273">2273</a></li> </ul> <h2>v24.1.1</h2> <ul> <li>fix: Bug Report: Unsafe Behavior in i18n.t Function Leading to Potential Code Execution <a href="https://redirect.github.com/i18next/i18next/issues/2273">2273</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next/blob/master/CHANGELOG.md">i18next's changelog</a>.</em></p> <blockquote> <h2>24.2.0</h2> <ul> <li>feat(typescript): Add strictKeyChecks option to enforce checking key existence when defaultValue is used <a href="https://redirect.github.com/i18next/i18next/pull/2274">2274</a>, fixes <a href="https://redirect.github.com/i18next/i18next/issues/2043">2043</a></li> </ul> <h2>24.1.2</h2> <ul> <li>optimize fix: Bug Report: Unsafe Behavior in i18n.t Function Leading to Potential Code Execution <a href="https://redirect.github.com/i18next/i18next/issues/2273">2273</a></li> </ul> <h2>24.1.1</h2> <ul> <li>fix: Bug Report: Unsafe Behavior in i18n.t Function Leading to Potential Code Execution <a href="https://redirect.github.com/i18next/i18next/issues/2273">2273</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
355a2377ef |
Update contributors in docs (#1062)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |
||
|
|
d52a618fea |
Update contributors in readme (#1061)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |
||
|
|
4929248725 |
Bump eslint-plugin-jest from 28.9.0 to 28.10.0 in /frontend (#1060)
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 28.9.0 to 28.10.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.10.0</h2> <h1><a href="https://github.com/jest-community/eslint-plugin-jest/compare/v28.9.0...v28.10.0">28.10.0</a> (2024-12-19)</h1> <h3>Features</h3> <ul> <li><strong>unbound-method:</strong> ignore functions passed to <code>jest.mocked</code> (<a href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1681">#1681</a>) (<a href=" |
||
|
|
791a3a1bb2 |
Bump @tabler/icons-react from 3.24.0 to 3.26.0 in /frontend (#1059)
Bumps [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) from 3.24.0 to 3.26.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.26.0</h2> <!-- raw HTML omitted --> <h3>18 new icons:</h3> <ul> <li><code>filled/circle-chevrons-down</code></li> <li><code>filled/circle-chevrons-left</code></li> <li><code>filled/circle-chevrons-right</code></li> <li><code>filled/circle-chevrons-up</code></li> <li><code>filled/clipboard-data</code></li> <li><code>filled/clipboard-list</code></li> <li><code>filled/clipboard-text</code></li> <li><code>filled/clipboard-typography</code></li> <li><code>outline/http-connect-off</code></li> <li><code>outline/http-delete-off</code></li> <li><code>outline/http-get-off</code></li> <li><code>outline/http-head-off</code></li> <li><code>outline/http-options-off</code></li> <li><code>outline/http-patch-off</code></li> <li><code>outline/http-post-off</code></li> <li><code>outline/http-put-off</code></li> <li><code>outline/http-que-off</code></li> <li><code>outline/http-trace-off</code></li> </ul> <p>Fixed icons: <code>outline/badge-2k</code>, <code>outline/cake-roll</code>, <code>outline/error-404-off</code>, <code>outline/error-404</code>, <code>outline/http-connect</code>, <code>outline/http-delete</code>, <code>outline/http-options</code>, <code>outline/http-post</code>, <code>outline/http-que</code>, <code>outline/http-trace</code>, <code>outline/matrix</code>, <code>outline/square-dashed</code>, <code>outline/table-dashed</code></p> <h2>Release 3.25.0</h2> <!-- raw HTML omitted --> <h3>18 new icons:</h3> <ul> <li><code>filled/chart-dots-2</code></li> <li><code>filled/chart-dots-3</code></li> <li><code>filled/chart-funnel</code></li> <li><code>filled/chart-pie-2</code></li> <li><code>filled/chart-pie-3</code></li> <li><code>filled/chart-pie-4</code></li> <li><code>filled/chef-hat</code></li> <li><code>filled/circle-caret-down</code></li> <li><code>filled/circle-caret-left</code></li> <li><code>filled/circle-caret-right</code></li> <li><code>filled/circle-caret-up</code></li> <li><code>filled/circle-chevron-down</code></li> <li><code>filled/circle-chevron-left</code></li> <li><code>filled/circle-chevron-right</code></li> <li><code>filled/circle-chevron-up</code></li> <li><code>filled/clipboard-check</code></li> <li><code>filled/clipboard-x</code></li> <li><code>filled/clipboard</code></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
02c2753a80 |
Fix Team Logos not loading (#1057)
Team logos currently do not load because the URL does not reflect the location of team logos. This should fix it |
||
|
|
66b22f015b |
Bump react-i18next from 15.1.0 to 15.2.0 in /frontend (#1055)
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 15.1.0 to 15.2.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md">react-i18next's changelog</a>.</em></p> <blockquote> <h3>15.2.0</h3> <p>This version may be breaking if you still use React < v18 with TypeScript. For JS users this version is equal to v15.1.4</p> <ul> <li>fix: Global JSX namespace is deprecated <a href="https://redirect.github.com/i18next/react-i18next/issues/1823">1823</a> with <a href="https://redirect.github.com/i18next/react-i18next/pull/1822">1822</a></li> </ul> <h3>15.1.4</h3> <ul> <li>Fix: warning each child should have a unique key <a href="https://redirect.github.com/i18next/react-i18next/pull/1820">1820</a></li> </ul> <h3>15.1.3</h3> <ul> <li>fix: Self-closing REACT components in translation strings should not attempt to replace the component's children <a href="https://redirect.github.com/i18next/react-i18next/issues/1815">1815</a> <a href="https://redirect.github.com/i18next/react-i18next/pull/1816">1816</a></li> </ul> <h3>15.1.2</h3> <ul> <li>fix: Attempted to assign to readonly property <a href="https://redirect.github.com/i18next/react-i18next/pull/1813">1813</a></li> </ul> <h3>15.1.1</h3> <ul> <li>fix: Not all namespaces are loaded when passing the lng option to useTranslate <a href="https://redirect.github.com/i18next/react-i18next/issues/1809">1809</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
e2ba930476 |
Bump i18next from 24.0.0 to 24.1.0 in /frontend (#1054)
Bumps [i18next](https://github.com/i18next/i18next) from 24.0.0 to 24.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next/releases">i18next's releases</a>.</em></p> <blockquote> <h2>v24.1.0</h2> <ul> <li>try to address <a href="https://redirect.github.com/i18next/i18next/issues/2270">2270</a> by cloning the store data <a href="https://redirect.github.com/i18next/i18next/pull/2271">2271</a></li> </ul> <h2>v24.0.5</h2> <ul> <li>remove extra log for <a href="https://redirect.github.com/i18next/i18next/pull/2268">2268</a></li> </ul> <h2>v24.0.4</h2> <ul> <li>simplify fix: incorrect locale detected <a href="https://redirect.github.com/i18next/i18next/pull/2268">2268</a></li> </ul> <h2>v24.0.3</h2> <ul> <li>fix: incorrect locale detected <a href="https://redirect.github.com/i18next/i18next/pull/2268">2268</a></li> <li>fix: Intl.getCanonicalLocales throws with custom regions <a href="https://redirect.github.com/i18next/i18next/issues/2267">2267</a></li> </ul> <h2>v24.0.2</h2> <ul> <li>if no Intl api, log error and use dummy rule</li> </ul> <h2>v24.0.1</h2> <ul> <li>early return and log error, if no Intl api</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next/blob/master/CHANGELOG.md">i18next's changelog</a>.</em></p> <blockquote> <h2>24.1.0</h2> <ul> <li>try to address <a href="https://redirect.github.com/i18next/i18next/issues/2270">2270</a> by cloning the store data <a href="https://redirect.github.com/i18next/i18next/pull/2271">2271</a></li> </ul> <h2>24.0.5</h2> <ul> <li>remove extra log for <a href="https://redirect.github.com/i18next/i18next/pull/2268">2268</a></li> </ul> <h2>24.0.4</h2> <ul> <li>simplify fix: incorrect locale detected <a href="https://redirect.github.com/i18next/i18next/pull/2268">2268</a></li> </ul> <h2>24.0.3</h2> <ul> <li>fix: incorrect locale detected <a href="https://redirect.github.com/i18next/i18next/pull/2268">2268</a></li> <li>fix: Intl.getCanonicalLocales throws with custom regions <a href="https://redirect.github.com/i18next/i18next/issues/2267">2267</a></li> </ul> <h2>24.0.2</h2> <ul> <li>if no Intl api, log error and use dummy rule</li> </ul> <h2>24.0.1</h2> <ul> <li>early return and log error, if no Intl api</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
6a6702c227 |
Bump @next/eslint-plugin-next from 15.0.0 to 15.1.0 in /frontend (#1053)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) from 15.0.0 to 15.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases"><code>@next/eslint-plugin-next</code>'s releases</a>.</em></p> <blockquote> <h2>v15.1.0</h2> <h3>Core Changes</h3> <ul> <li>fix: decrypt bound args before generating a cache key: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72463">#72463</a></li> <li>Fix the path to the next/experimental/testing/server export: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72527">#72527</a></li> <li>Expand <code>server-source-maps</code> scenarios to cover Edge runtime: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72288">#72288</a></li> <li>Ensure logged errors in Edge runtime include the stack: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72394">#72394</a></li> <li>fix: added cache control headers for static app routes: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72521">#72521</a></li> <li>capture console issues as console errors: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72468">#72468</a></li> <li>Add expireTag and expirePath APIs: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72485">#72485</a></li> <li>fix: try/catch access to localStorage within __NEXT_APP_ISR_INDICATOR useEffect: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72362">#72362</a></li> <li>Move client build ID to a global variable: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72592">#72592</a></li> <li>refactor(turbopack): Remove <code>swc_css</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72602">#72602</a></li> <li>Bypass source map dev middleware for client chunks: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72581">#72581</a></li> <li>chore: remove <code>rc</code> from URL: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72599">#72599</a></li> <li>improve <code>no-img-element</code> lint error message: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72410">#72410</a></li> <li>Combine bound <code>"use cache"</code> closure args into a single parameter: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72587">#72587</a></li> <li>[Turbopack] add BackendOptions and allow to disable dependencies, children and storage: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72426">#72426</a></li> <li>Omit unused args when calling <code>"use cache"</code> functions: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72506">#72506</a></li> <li>Add experimental <code>clientSegmentCache</code> flag: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72626">#72626</a></li> <li>Add <code>compiler.define</code> option: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/71802">#71802</a></li> <li>Fix static indicator with dynamicIO: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72631">#72631</a></li> <li>Allow usage of Node.js prereleases: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72635">#72635</a></li> <li>improved network url in (dev) cli: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72634">#72634</a></li> <li>chore: update <code>getting-started/react-essentials</code> path: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72250">#72250</a></li> <li>Fix static indicator for pure IO case: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72639">#72639</a></li> <li>Bump the monorepo packages TypeScript to <code>5.6.3</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72625">#72625</a></li> <li>Bump <code>@capsizecss/metrics</code> to 3.4.0 for Geist Google Font: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72746">#72746</a></li> <li>refactor: remove unused asNotFound property: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72585">#72585</a></li> <li>Remove unused <code>enabled</code> config from server actions transforms: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72755">#72755</a></li> <li>Ensure Next.js is ignore-listed when used as external: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72498">#72498</a></li> <li>Bump <code>eslint-plugin-react</code> to 7.37.0: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72759">#72759</a></li> <li>upgrade amphtml-validator to 1.0.38: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72645">#72645</a></li> <li>fix multi-level redirect in server actions: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72770">#72770</a></li> <li>refactor: rename error boundary not-found to http-error-fallback: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72586">#72586</a></li> <li>Upgrade React from <code>5c56b873-20241107</code> to <code>7ac8e612-20241113</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72768">#72768</a></li> <li>Re-use randomly selected dev server port for automatic restarts: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72771">#72771</a></li> <li>Emit build error when <code>"use cache"</code> is used without <code>dynamicIO</code> enabled: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72781">#72781</a></li> <li>fix: not found bounary prop: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72784">#72784</a></li> <li>silence sass <code>legacy-js-api</code> warning: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72632">#72632</a></li> <li>[Segment Prefetch] Move access token to route tree: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72775">#72775</a></li> <li>Add internal affordances to show ignore-listed stackframes in terminal: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72763">#72763</a></li> <li>chore(turbopack): Centralize reqwest TLS feature configs in turbo-tasks-fetch: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72526">#72526</a></li> <li>Upgrade React from <code>7ac8e612-20241113</code> to <code>380f5d67-20241113</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72819">#72819</a></li> <li>Shorten unsourcemapped absolute locations in terminal stacktraces: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72764">#72764</a></li> <li>codemod: replace <code>revalidate(Tag|Path)</code> to <code>expire(Tag|Path)</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72826">#72826</a></li> <li>"Fix": Lift type check out of loop: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72840">#72840</a></li> <li>hide stack trace in CanaryOnlyError: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72859">#72859</a></li> <li>Allow missing CacheNodeSeedData during prefetch: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72857">#72857</a></li> <li>Add Segment Cache feature check to <code>prefetch</code> API: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next/issues/72861">#72861</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
6406c12906 |
Bump react-redux from 9.1.2 to 9.2.0 in /frontend (#1052)
Bumps [react-redux](https://github.com/reduxjs/react-redux) from 9.1.2 to 9.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/reduxjs/react-redux/releases">react-redux's releases</a>.</em></p> <blockquote> <h2>v9.2.0</h2> <p>This <strong>feature release</strong> updates the React peer dependency to work with React 19, and improves treeshakeability of our build artifacts.</p> <h2>Changelog</h2> <h3>React 19 Compat</h3> <p><a href="https://react.dev/blog/2024/12/05/react-19">React 19 was just released</a>! We've updated our peer dep to accept React 19, and updated our runtime and type tests to check against both React 18 and 19.</p> <p>Also see <a href="https://github.com/reduxjs/redux-toolkit/releases/tag/v2.5.0">Redux Toolkit v2.5.0</a> for the same peer dep update.</p> <h3>Treeshaking</h3> <p>We've done some nitty-gritty optimization work to ensure bundlers correctly treeshake unused parts of the bundle.</p> <h2>What's Changed</h2> <ul> <li>Improve treeshakeability of build artifacts by <a href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2176">reduxjs/react-redux#2176</a></li> <li>Migrate to React by <a href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2172">reduxjs/react-redux#2172</a></li> <li>Migrate to React 19 (take 2) by <a href="https://github.com/markerikson"><code>@markerikson</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2216">reduxjs/react-redux#2216</a></li> <li>Clean up devdeps by <a href="https://github.com/markerikson"><code>@markerikson</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2217">reduxjs/react-redux#2217</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/reduxjs/react-redux/compare/v9.1.2...v9.2.0">https://github.com/reduxjs/react-redux/compare/v9.1.2...v9.2.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
4787a5764c |
Bump next from 15.0.0 to 15.1.0 in /frontend (#1051)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [next](https://github.com/vercel/next.js) from 15.0.0 to 15.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases">next's releases</a>.</em></p> <blockquote> <h2>v15.1.0</h2> <h3>Core Changes</h3> <ul> <li>fix: decrypt bound args before generating a cache key: <a href="https://redirect.github.com/vercel/next.js/issues/72463">#72463</a></li> <li>Fix the path to the next/experimental/testing/server export: <a href="https://redirect.github.com/vercel/next.js/issues/72527">#72527</a></li> <li>Expand <code>server-source-maps</code> scenarios to cover Edge runtime: <a href="https://redirect.github.com/vercel/next.js/issues/72288">#72288</a></li> <li>Ensure logged errors in Edge runtime include the stack: <a href="https://redirect.github.com/vercel/next.js/issues/72394">#72394</a></li> <li>fix: added cache control headers for static app routes: <a href="https://redirect.github.com/vercel/next.js/issues/72521">#72521</a></li> <li>capture console issues as console errors: <a href="https://redirect.github.com/vercel/next.js/issues/72468">#72468</a></li> <li>Add expireTag and expirePath APIs: <a href="https://redirect.github.com/vercel/next.js/issues/72485">#72485</a></li> <li>fix: try/catch access to localStorage within __NEXT_APP_ISR_INDICATOR useEffect: <a href="https://redirect.github.com/vercel/next.js/issues/72362">#72362</a></li> <li>Move client build ID to a global variable: <a href="https://redirect.github.com/vercel/next.js/issues/72592">#72592</a></li> <li>refactor(turbopack): Remove <code>swc_css</code>: <a href="https://redirect.github.com/vercel/next.js/issues/72602">#72602</a></li> <li>Bypass source map dev middleware for client chunks: <a href="https://redirect.github.com/vercel/next.js/issues/72581">#72581</a></li> <li>chore: remove <code>rc</code> from URL: <a href="https://redirect.github.com/vercel/next.js/issues/72599">#72599</a></li> <li>improve <code>no-img-element</code> lint error message: <a href="https://redirect.github.com/vercel/next.js/issues/72410">#72410</a></li> <li>Combine bound <code>"use cache"</code> closure args into a single parameter: <a href="https://redirect.github.com/vercel/next.js/issues/72587">#72587</a></li> <li>[Turbopack] add BackendOptions and allow to disable dependencies, children and storage: <a href="https://redirect.github.com/vercel/next.js/issues/72426">#72426</a></li> <li>Omit unused args when calling <code>"use cache"</code> functions: <a href="https://redirect.github.com/vercel/next.js/issues/72506">#72506</a></li> <li>Add experimental <code>clientSegmentCache</code> flag: <a href="https://redirect.github.com/vercel/next.js/issues/72626">#72626</a></li> <li>Add <code>compiler.define</code> option: <a href="https://redirect.github.com/vercel/next.js/issues/71802">#71802</a></li> <li>Fix static indicator with dynamicIO: <a href="https://redirect.github.com/vercel/next.js/issues/72631">#72631</a></li> <li>Allow usage of Node.js prereleases: <a href="https://redirect.github.com/vercel/next.js/issues/72635">#72635</a></li> <li>improved network url in (dev) cli: <a href="https://redirect.github.com/vercel/next.js/issues/72634">#72634</a></li> <li>chore: update <code>getting-started/react-essentials</code> path: <a href="https://redirect.github.com/vercel/next.js/issues/72250">#72250</a></li> <li>Fix static indicator for pure IO case: <a href="https://redirect.github.com/vercel/next.js/issues/72639">#72639</a></li> <li>Bump the monorepo packages TypeScript to <code>5.6.3</code>: <a href="https://redirect.github.com/vercel/next.js/issues/72625">#72625</a></li> <li>Bump <code>@capsizecss/metrics</code> to 3.4.0 for Geist Google Font: <a href="https://redirect.github.com/vercel/next.js/issues/72746">#72746</a></li> <li>refactor: remove unused asNotFound property: <a href="https://redirect.github.com/vercel/next.js/issues/72585">#72585</a></li> <li>Remove unused <code>enabled</code> config from server actions transforms: <a href="https://redirect.github.com/vercel/next.js/issues/72755">#72755</a></li> <li>Ensure Next.js is ignore-listed when used as external: <a href="https://redirect.github.com/vercel/next.js/issues/72498">#72498</a></li> <li>Bump <code>eslint-plugin-react</code> to 7.37.0: <a href="https://redirect.github.com/vercel/next.js/issues/72759">#72759</a></li> <li>upgrade amphtml-validator to 1.0.38: <a href="https://redirect.github.com/vercel/next.js/issues/72645">#72645</a></li> <li>fix multi-level redirect in server actions: <a href="https://redirect.github.com/vercel/next.js/issues/72770">#72770</a></li> <li>refactor: rename error boundary not-found to http-error-fallback: <a href="https://redirect.github.com/vercel/next.js/issues/72586">#72586</a></li> <li>Upgrade React from <code>5c56b873-20241107</code> to <code>7ac8e612-20241113</code>: <a href="https://redirect.github.com/vercel/next.js/issues/72768">#72768</a></li> <li>Re-use randomly selected dev server port for automatic restarts: <a href="https://redirect.github.com/vercel/next.js/issues/72771">#72771</a></li> <li>Emit build error when <code>"use cache"</code> is used without <code>dynamicIO</code> enabled: <a href="https://redirect.github.com/vercel/next.js/issues/72781">#72781</a></li> <li>fix: not found bounary prop: <a href="https://redirect.github.com/vercel/next.js/issues/72784">#72784</a></li> <li>silence sass <code>legacy-js-api</code> warning: <a href="https://redirect.github.com/vercel/next.js/issues/72632">#72632</a></li> <li>[Segment Prefetch] Move access token to route tree: <a href="https://redirect.github.com/vercel/next.js/issues/72775">#72775</a></li> <li>Add internal affordances to show ignore-listed stackframes in terminal: <a href="https://redirect.github.com/vercel/next.js/issues/72763">#72763</a></li> <li>chore(turbopack): Centralize reqwest TLS feature configs in turbo-tasks-fetch: <a href="https://redirect.github.com/vercel/next.js/issues/72526">#72526</a></li> <li>Upgrade React from <code>7ac8e612-20241113</code> to <code>380f5d67-20241113</code>: <a href="https://redirect.github.com/vercel/next.js/issues/72819">#72819</a></li> <li>Shorten unsourcemapped absolute locations in terminal stacktraces: <a href="https://redirect.github.com/vercel/next.js/issues/72764">#72764</a></li> <li>codemod: replace <code>revalidate(Tag|Path)</code> to <code>expire(Tag|Path)</code>: <a href="https://redirect.github.com/vercel/next.js/issues/72826">#72826</a></li> <li>"Fix": Lift type check out of loop: <a href="https://redirect.github.com/vercel/next.js/issues/72840">#72840</a></li> <li>hide stack trace in CanaryOnlyError: <a href="https://redirect.github.com/vercel/next.js/issues/72859">#72859</a></li> <li>Allow missing CacheNodeSeedData during prefetch: <a href="https://redirect.github.com/vercel/next.js/issues/72857">#72857</a></li> <li>Add Segment Cache feature check to <code>prefetch</code> API: <a href="https://redirect.github.com/vercel/next.js/issues/72861">#72861</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
d925c64606 |
Bump @next/bundle-analyzer from 15.0.0 to 15.1.0 in /frontend (#1050)
Bumps [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) from 15.0.0 to 15.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases"><code>@next/bundle-analyzer</code>'s releases</a>.</em></p> <blockquote> <h2>v15.1.0</h2> <h3>Core Changes</h3> <ul> <li>fix: decrypt bound args before generating a cache key: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72463">#72463</a></li> <li>Fix the path to the next/experimental/testing/server export: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72527">#72527</a></li> <li>Expand <code>server-source-maps</code> scenarios to cover Edge runtime: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72288">#72288</a></li> <li>Ensure logged errors in Edge runtime include the stack: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72394">#72394</a></li> <li>fix: added cache control headers for static app routes: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72521">#72521</a></li> <li>capture console issues as console errors: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72468">#72468</a></li> <li>Add expireTag and expirePath APIs: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72485">#72485</a></li> <li>fix: try/catch access to localStorage within __NEXT_APP_ISR_INDICATOR useEffect: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72362">#72362</a></li> <li>Move client build ID to a global variable: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72592">#72592</a></li> <li>refactor(turbopack): Remove <code>swc_css</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72602">#72602</a></li> <li>Bypass source map dev middleware for client chunks: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72581">#72581</a></li> <li>chore: remove <code>rc</code> from URL: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72599">#72599</a></li> <li>improve <code>no-img-element</code> lint error message: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72410">#72410</a></li> <li>Combine bound <code>"use cache"</code> closure args into a single parameter: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72587">#72587</a></li> <li>[Turbopack] add BackendOptions and allow to disable dependencies, children and storage: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72426">#72426</a></li> <li>Omit unused args when calling <code>"use cache"</code> functions: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72506">#72506</a></li> <li>Add experimental <code>clientSegmentCache</code> flag: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72626">#72626</a></li> <li>Add <code>compiler.define</code> option: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/71802">#71802</a></li> <li>Fix static indicator with dynamicIO: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72631">#72631</a></li> <li>Allow usage of Node.js prereleases: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72635">#72635</a></li> <li>improved network url in (dev) cli: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72634">#72634</a></li> <li>chore: update <code>getting-started/react-essentials</code> path: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72250">#72250</a></li> <li>Fix static indicator for pure IO case: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72639">#72639</a></li> <li>Bump the monorepo packages TypeScript to <code>5.6.3</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72625">#72625</a></li> <li>Bump <code>@capsizecss/metrics</code> to 3.4.0 for Geist Google Font: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72746">#72746</a></li> <li>refactor: remove unused asNotFound property: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72585">#72585</a></li> <li>Remove unused <code>enabled</code> config from server actions transforms: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72755">#72755</a></li> <li>Ensure Next.js is ignore-listed when used as external: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72498">#72498</a></li> <li>Bump <code>eslint-plugin-react</code> to 7.37.0: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72759">#72759</a></li> <li>upgrade amphtml-validator to 1.0.38: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72645">#72645</a></li> <li>fix multi-level redirect in server actions: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72770">#72770</a></li> <li>refactor: rename error boundary not-found to http-error-fallback: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72586">#72586</a></li> <li>Upgrade React from <code>5c56b873-20241107</code> to <code>7ac8e612-20241113</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72768">#72768</a></li> <li>Re-use randomly selected dev server port for automatic restarts: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72771">#72771</a></li> <li>Emit build error when <code>"use cache"</code> is used without <code>dynamicIO</code> enabled: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72781">#72781</a></li> <li>fix: not found bounary prop: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72784">#72784</a></li> <li>silence sass <code>legacy-js-api</code> warning: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72632">#72632</a></li> <li>[Segment Prefetch] Move access token to route tree: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72775">#72775</a></li> <li>Add internal affordances to show ignore-listed stackframes in terminal: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72763">#72763</a></li> <li>chore(turbopack): Centralize reqwest TLS feature configs in turbo-tasks-fetch: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72526">#72526</a></li> <li>Upgrade React from <code>7ac8e612-20241113</code> to <code>380f5d67-20241113</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72819">#72819</a></li> <li>Shorten unsourcemapped absolute locations in terminal stacktraces: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72764">#72764</a></li> <li>codemod: replace <code>revalidate(Tag|Path)</code> to <code>expire(Tag|Path)</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72826">#72826</a></li> <li>"Fix": Lift type check out of loop: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72840">#72840</a></li> <li>hide stack trace in CanaryOnlyError: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72859">#72859</a></li> <li>Allow missing CacheNodeSeedData during prefetch: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72857">#72857</a></li> <li>Add Segment Cache feature check to <code>prefetch</code> API: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/72861">#72861</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
d449c9f746 |
Bump @mantine/form from 7.14.0 to 7.15.0 in /frontend (#1049)
Bumps [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) from 7.14.0 to 7.15.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.15.0 💋</h2> <p><a href="https://mantine.dev/changelog/7-15-0">View changelog with demos on mantine.dev website</a></p> <h2>Support Mantine development</h2> <p>You can now sponsor Mantine development with <a href="https://opencollective.com/mantinedev">OpenCollective</a>. All funds will be used to improve Mantine and create new features and components.</p> <h2>use-radial-move hook</h2> <p>New <a href="https://mantine.dev/hooks/use-radial-move">use-radial-move</a> hook can be used to create custom radial sliders:</p> <pre lang="tsx"><code>import { useState } from 'react'; import { Box } from '@mantine/core'; import { useRadialMove } from '@mantine/hooks'; import classes from './Demo.module.css'; <p>function Demo() { const [value, setValue] = useState(115); const { ref } = useRadialMove(setValue);</p> <p>return ( <Box className={classes.root} ref={ref} style={{ '--angle': <code>${value}deg</code> }}> <div className={classes.value}>{value}°</div> <div className={classes.thumb} /> </Box> ); } </code></pre></p> <h2>BarChart color based on value</h2> <p><a href="https://mantine.dev/charts/bar-chart">BarChart</a> component now supports <code>getBarColor</code> prop to assign color based on value. <code>getBarColor</code> function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).</p> <pre lang="tsx"><code>import { BarChart } from '@mantine/charts'; import { data } from './data'; <p>function Demo() { return ( <BarChart h={300} data={data} dataKey="month" getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')} series={[{ name: 'Laptops', color: 'gray.6' }]} /> </tr></table> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
c8a5873318 |
Bump nanoid from 3.3.7 to 3.3.8 in /frontend (#1047)
Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ai/nanoid/blob/main/CHANGELOG.md">nanoid's changelog</a>.</em></p> <blockquote> <h2>3.3.8</h2> <ul> <li>Fixed a way to break Nano ID by passing non-integer size (by <a href="https://github.com/myndzi"><code>@myndzi</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
af8214cfba |
Bump nanoid from 3.3.7 to 3.3.8 in /docs (#1048)
Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ai/nanoid/blob/main/CHANGELOG.md">nanoid's changelog</a>.</em></p> <blockquote> <h2>3.3.8</h2> <ul> <li>Fixed a way to break Nano ID by passing non-integer size (by <a href="https://github.com/myndzi"><code>@myndzi</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
dee03b7627 |
Bump @emotion/react from 11.13.0 to 11.14.0 in /frontend (#1046)
Bumps [@emotion/react](https://github.com/emotion-js/emotion) from 11.13.0 to 11.14.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/emotion-js/emotion/releases"><code>@emotion/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@emotion/react</code><a href="https://github.com/11"><code>@11</code></a>.14.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/emotion-js/emotion/pull/3281">#3281</a> <a href=" |
||
|
|
aab8a54c1a |
Bump @trivago/prettier-plugin-sort-imports from 4.3.0 to 5.2.0 in /frontend (#1045)
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) from 4.3.0 to 5.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/trivago/prettier-plugin-sort-imports/releases"><code>@trivago/prettier-plugin-sort-imports</code>'s releases</a>.</em></p> <blockquote> <h2>v5.2.0</h2> <h2>What's Changed</h2> <ul> <li>fix type import ordering <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/331">#331</a> by <a href="https://github.com/rsslldnphy"><code>@rsslldnphy</code></a></li> <li>Fix conditional import of prettier-plugin-svelte <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/332">#332</a> by <a href="https://github.com/rsslldnphy"><code>@rsslldnphy</code></a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.1.0...v5.2.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.1.0...v5.2.0</a></p> <h2>v5.1.0</h2> <h2>What's Changed</h2> <ul> <li>Fix svelte packages being required all the time by <a href="https://github.com/byara"><code>@byara</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/327">trivago/prettier-plugin-sort-imports#327</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.0.1...v5.1.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.0.1...v5.1.0</a></p> <h2>v5.0.1</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.0.0...v5.0.1">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.0.0...v5.0.1</a></p> <h2>v5.0.0</h2> <h2>What's Changed</h2> <ul> <li>Updated dependencies by <a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/316">trivago/prettier-plugin-sort-imports#316</a></li> <li>svelte import sort by <a href="https://github.com/canarddemagret"><code>@canarddemagret</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/310">trivago/prettier-plugin-sort-imports#310</a></li> <li>feature: order respects side effect imports by <a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/320">trivago/prettier-plugin-sort-imports#320</a></li> <li>(<a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/276">#276</a>) Fixed dollar sign group replace in vue preprocessor by <a href="https://github.com/adamDilger"><code>@adamDilger</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/283">trivago/prettier-plugin-sort-imports#283</a></li> <li>chore: describe the sort-imports-ignore comment in the README by <a href="https://github.com/lorenzodejong"><code>@lorenzodejong</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/307">trivago/prettier-plugin-sort-imports#307</a></li> <li>chore: Update <code>README</code> for <code>prettier</code> v3.x by <a href="https://github.com/basselworkforce"><code>@basselworkforce</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/242">trivago/prettier-plugin-sort-imports#242</a></li> <li>fix incorrect location of colon in environment section on bug report template by <a href="https://github.com/DetachHead"><code>@DetachHead</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/221">trivago/prettier-plugin-sort-imports#221</a></li> <li>Updated compatibility in README.md by <a href="https://github.com/elite174"><code>@elite174</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/257">trivago/prettier-plugin-sort-imports#257</a></li> <li>feat: support importOrderImportAttributesKeyword by <a href="https://github.com/chentsulin"><code>@chentsulin</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/273">trivago/prettier-plugin-sort-imports#273</a></li> <li>version 5 by <a href="https://github.com/byara"><code>@byara</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/214">trivago/prettier-plugin-sort-imports#214</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/316">trivago/prettier-plugin-sort-imports#316</a></li> <li><a href="https://github.com/canarddemagret"><code>@canarddemagret</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/310">trivago/prettier-plugin-sort-imports#310</a></li> <li><a href="https://github.com/lorenzodejong"><code>@lorenzodejong</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/307">trivago/prettier-plugin-sort-imports#307</a></li> <li><a href="https://github.com/DetachHead"><code>@DetachHead</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/221">trivago/prettier-plugin-sort-imports#221</a></li> <li><a href="https://github.com/elite174"><code>@elite174</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/257">trivago/prettier-plugin-sort-imports#257</a></li> <li><a href="https://github.com/chentsulin"><code>@chentsulin</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/273">trivago/prettier-plugin-sort-imports#273</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v4.3.0...v5.0.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v4.3.0...v5.0.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md"><code>@trivago/prettier-plugin-sort-imports</code>'s changelog</a>.</em></p> <blockquote> <h3>5.2.0</h3> <ul> <li>fix type import ordering <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/331">#331</a> by <a href="https://github.com/rsslldnphy"><code>@rsslldnphy</code></a></li> <li>Fix conditional import of prettier-plugin-svelte <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/332">#332</a> by <a href="https://github.com/rsslldnphy"><code>@rsslldnphy</code></a></li> </ul> <h3>v5.1.0</h3> <ul> <li>Fix svelte packages being required all the time <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/327">#327</a> by <a href="https://github.com/byara"><code>@byara</code></a></li> </ul> <h3>v5.0.1</h3> <ul> <li>Clean up unwanted packages and unpin dependencies <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/322">#322</a> by <a href="https://github.com/byara"><code>@byara</code></a></li> </ul> <h3>v5.0.0</h3> <h4>New features</h4> <ul> <li>Type imports <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/153">#153</a> by <a href="https://github.com/broofa">Xenfo</a></li> <li>Svelte support <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/310">#310</a> by <a href="https://github.com/canarddemagret">canarddemagret</a></li> <li>Side effect import support <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/320">#320</a> by <a href="https://github.com/blutorange">blutorange</a> and <a href="https://github.com/vladislavarsenev">vladislavarsenev</a></li> <li>Fixed dollar sign group replace in Vue <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/283">#283</a> by <a href="https://github.com/adamDilger">adamDilger</a></li> <li>Support <code>importOrderImportAttributesKeyword</code> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/273">#273</a> by <a href="https://github.com/chentsulin">chentsulin</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
02a03fc47c |
Bump @trivago/prettier-plugin-sort-imports from 4.3.0 to 5.0.1 in /docs (#1041)
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) from 4.3.0 to 5.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/trivago/prettier-plugin-sort-imports/releases"><code>@trivago/prettier-plugin-sort-imports</code>'s releases</a>.</em></p> <blockquote> <h2>v5.0.1</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.0.0...v5.0.1">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.0.0...v5.0.1</a></p> <h2>v5.0.0</h2> <h2>What's Changed</h2> <ul> <li>Updated dependencies by <a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/316">trivago/prettier-plugin-sort-imports#316</a></li> <li>svelte import sort by <a href="https://github.com/canarddemagret"><code>@canarddemagret</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/310">trivago/prettier-plugin-sort-imports#310</a></li> <li>feature: order respects side effect imports by <a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/320">trivago/prettier-plugin-sort-imports#320</a></li> <li>(<a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/276">#276</a>) Fixed dollar sign group replace in vue preprocessor by <a href="https://github.com/adamDilger"><code>@adamDilger</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/283">trivago/prettier-plugin-sort-imports#283</a></li> <li>chore: describe the sort-imports-ignore comment in the README by <a href="https://github.com/lorenzodejong"><code>@lorenzodejong</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/307">trivago/prettier-plugin-sort-imports#307</a></li> <li>chore: Update <code>README</code> for <code>prettier</code> v3.x by <a href="https://github.com/basselworkforce"><code>@basselworkforce</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/242">trivago/prettier-plugin-sort-imports#242</a></li> <li>fix incorrect location of colon in environment section on bug report template by <a href="https://github.com/DetachHead"><code>@DetachHead</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/221">trivago/prettier-plugin-sort-imports#221</a></li> <li>Updated compatibility in README.md by <a href="https://github.com/elite174"><code>@elite174</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/257">trivago/prettier-plugin-sort-imports#257</a></li> <li>feat: support importOrderImportAttributesKeyword by <a href="https://github.com/chentsulin"><code>@chentsulin</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/273">trivago/prettier-plugin-sort-imports#273</a></li> <li>version 5 by <a href="https://github.com/byara"><code>@byara</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/214">trivago/prettier-plugin-sort-imports#214</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/316">trivago/prettier-plugin-sort-imports#316</a></li> <li><a href="https://github.com/canarddemagret"><code>@canarddemagret</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/310">trivago/prettier-plugin-sort-imports#310</a></li> <li><a href="https://github.com/lorenzodejong"><code>@lorenzodejong</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/307">trivago/prettier-plugin-sort-imports#307</a></li> <li><a href="https://github.com/DetachHead"><code>@DetachHead</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/221">trivago/prettier-plugin-sort-imports#221</a></li> <li><a href="https://github.com/elite174"><code>@elite174</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/257">trivago/prettier-plugin-sort-imports#257</a></li> <li><a href="https://github.com/chentsulin"><code>@chentsulin</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/273">trivago/prettier-plugin-sort-imports#273</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v4.3.0...v5.0.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v4.3.0...v5.0.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md"><code>@trivago/prettier-plugin-sort-imports</code>'s changelog</a>.</em></p> <blockquote> <h3>v5.0.1</h3> <ul> <li>Clean up unwanted packages and unpin dependencies <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/322">#322</a></li> </ul> <h3>v5.0.0</h3> <h4>New features</h4> <ul> <li>Type imports <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/153">#153</a> by <a href="https://github.com/broofa">Xenfo</a></li> <li>Svelte support <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/310">#310</a> by <a href="https://github.com/canarddemagret">canarddemagret</a></li> <li>Side effect import support <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/320">#320</a> by <a href="https://github.com/blutorange">blutorange</a> and <a href="https://github.com/vladislavarsenev">vladislavarsenev</a></li> <li>Fixed dollar sign group replace in Vue <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/283">#283</a> by <a href="https://github.com/adamDilger">adamDilger</a></li> <li>Support <code>importOrderImportAttributesKeyword</code> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/273">#273</a> by <a href="https://github.com/chentsulin">chentsulin</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
738a8a7c25 |
Bump @testing-library/react from 16.0.0 to 16.1.0 in /frontend (#1040)
Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 16.0.0 to 16.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/react-testing-library/releases"><code>@testing-library/react</code>'s releases</a>.</em></p> <blockquote> <h2>v16.1.0</h2> <h1><a href="https://github.com/testing-library/react-testing-library/compare/v16.0.1...v16.1.0">16.1.0</a> (2024-12-05)</h1> <h3>Features</h3> <ul> <li>Add support for React 19 (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1367">#1367</a>) (<a href=" |
||
|
|
9c6453ba78 |
Bump eslint-plugin-testing-library from 7.0.0 to 7.1.0 in /frontend (#1038)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 7.0.0 to 7.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/eslint-plugin-testing-library/releases">eslint-plugin-testing-library's releases</a>.</em></p> <blockquote> <h2>v7.1.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.0.0...v7.1.0">7.1.0</a> (2024-12-04)</h1> <h3>Features</h3> <ul> <li>add config for Svelte (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/973">#973</a>) (<a href=" |
||
|
|
6a909a445a |
Update fastapi requirement from 0.115.5 to 0.115.6 in /backend (#1037)
Updates the requirements on [fastapi](https://github.com/fastapi/fastapi) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fastapi/fastapi/releases">fastapi's releases</a>.</em></p> <blockquote> <h2>0.115.6</h2> <h3>Fixes</h3> <ul> <li>🐛 Preserve traceback when an exception is raised in sync dependency with <code>yield</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/5823">#5823</a> by <a href="https://github.com/sombek"><code>@sombek</code></a>.</li> </ul> <h3>Refactors</h3> <ul> <li>♻️ Update tests and internals for compatibility with Pydantic >=2.10. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12971">#12971</a> by <a href="https://github.com/tamird"><code>@tamird</code></a>.</li> </ul> <h3>Docs</h3> <ul> <li>📝 Update includes format in docs with an automated script. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12950">#12950</a> by <a href="https://github.com/tiangolo"><code>@tiangolo</code></a>.</li> <li>📝 Update includes for <code>docs/de/docs/advanced/using-request-directly.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12685">#12685</a> by <a href="https://github.com/alissadb"><code>@alissadb</code></a>.</li> <li>📝 Update includes for <code>docs/de/docs/how-to/conditional-openapi.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12689">#12689</a> by <a href="https://github.com/alissadb"><code>@alissadb</code></a>.</li> </ul> <h3>Translations</h3> <ul> <li>🌐 Add Traditional Chinese translation for <code>docs/zh-hant/docs/async.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12990">#12990</a> by <a href="https://github.com/ILoveSorasakiHina"><code>@ILoveSorasakiHina</code></a>.</li> <li>🌐 Add Traditional Chinese translation for <code>docs/zh-hant/docs/tutorial/query-param-models.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12932">#12932</a> by <a href="https://github.com/Vincy1230"><code>@Vincy1230</code></a>.</li> <li>🌐 Add Korean translation for <code>docs/ko/docs/advanced/testing-dependencies.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12992">#12992</a> by <a href="https://github.com/Limsunoh"><code>@Limsunoh</code></a>.</li> <li>🌐 Add Korean translation for <code>docs/ko/docs/advanced/websockets.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12991">#12991</a> by <a href="https://github.com/kwang1215"><code>@kwang1215</code></a>.</li> <li>🌐 Add Portuguese translation for <code>docs/pt/docs/tutorial/response-model.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12933">#12933</a> by <a href="https://github.com/AndreBBM"><code>@AndreBBM</code></a>.</li> <li>🌐 Add Korean translation for <code>docs/ko/docs/advanced/middlewares.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12753">#12753</a> by <a href="https://github.com/nahyunkeem"><code>@nahyunkeem</code></a>.</li> <li>🌐 Add Korean translation for <code>docs/ko/docs/advanced/openapi-webhooks.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12752">#12752</a> by <a href="https://github.com/saeye"><code>@saeye</code></a>.</li> <li>🌐 Add Chinese translation for <code>docs/zh/docs/tutorial/query-param-models.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12931">#12931</a> by <a href="https://github.com/Vincy1230"><code>@Vincy1230</code></a>.</li> <li>🌐 Add Russian translation for <code>docs/ru/docs/tutorial/query-param-models.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12445">#12445</a> by <a href="https://github.com/gitgernit"><code>@gitgernit</code></a>.</li> <li>🌐 Add Korean translation for <code>docs/ko/docs/tutorial/query-param-models.md</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12940">#12940</a> by <a href="https://github.com/jts8257"><code>@jts8257</code></a>.</li> <li>🔥 Remove obsolete tutorial translation to Chinese for <code>docs/zh/docs/tutorial/sql-databases.md</code>, it references files that are no longer on the repo. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12949">#12949</a> by <a href="https://github.com/tiangolo"><code>@tiangolo</code></a>.</li> </ul> <h3>Internal</h3> <ul> <li>⬆ [pre-commit.ci] pre-commit autoupdate. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/12954">#12954</a> by <a href="https://github.com/apps/pre-commit-ci"><code>@pre-commit-ci[bot]</code></a>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
d60958db29 |
Bump react-icons from 5.3.0 to 5.4.0 in /frontend (#1036)
Bumps [react-icons](https://github.com/react-icons/react-icons) from 5.3.0 to 5.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-icons/react-icons/releases">react-icons's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <h2>What's Changed</h2> <ul> <li>Add closing of the icon details modal with the ESC key by <a href="https://github.com/gabrielogregorio"><code>@gabrielogregorio</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/900">react-icons/react-icons#900</a></li> <li>support moduleResolution: bundler in tsconfig by <a href="https://github.com/kamijin-fanta"><code>@kamijin-fanta</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/970">react-icons/react-icons#970</a></li> <li>min search length changed to 2 by <a href="https://github.com/Kumar06Lav"><code>@Kumar06Lav</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/967">react-icons/react-icons#967</a></li> <li>Bump webpack from 5.89.0 to 5.94.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/975">react-icons/react-icons#975</a></li> <li>Bump micromatch from 4.0.5 to 4.0.8 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/976">react-icons/react-icons#976</a></li> <li>Bump axios from 1.6.8 to 1.7.7 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/977">react-icons/react-icons#977</a></li> <li>preview: Reduce the number of results displayed in search results by <a href="https://github.com/kamijin-fanta"><code>@kamijin-fanta</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/997">react-icons/react-icons#997</a></li> <li>2024-12-03 upgrade icons by <a href="https://github.com/kamijin-fanta"><code>@kamijin-fanta</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/998">react-icons/react-icons#998</a></li> <li>Bump dset from 3.1.3 to 3.1.4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/979">react-icons/react-icons#979</a></li> <li>Bump express from 4.19.2 to 4.21.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/981">react-icons/react-icons#981</a></li> <li>Bump rollup from 2.79.1 to 2.79.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/982">react-icons/react-icons#982</a></li> <li>Bump http-proxy-middleware from 2.0.6 to 2.0.7 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/989">react-icons/react-icons#989</a></li> <li>Bump cross-spawn from 7.0.3 to 7.0.6 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/994">react-icons/react-icons#994</a></li> <li>workflow: upgrade workflows by <a href="https://github.com/kamijin-fanta"><code>@kamijin-fanta</code></a> in <a href="https://redirect.github.com/react-icons/react-icons/pull/999">react-icons/react-icons#999</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Kumar06Lav"><code>@Kumar06Lav</code></a> made their first contribution in <a href="https://redirect.github.com/react-icons/react-icons/pull/967">react-icons/react-icons#967</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/react-icons/react-icons/compare/v5.3.0...v5.4.0">https://github.com/react-icons/react-icons/compare/v5.3.0...v5.4.0</a></p> <table> <thead> <tr> <th>Icon Library</th> <th>License</th> <th>Version</th> <th align="right">Count</th> </tr> </thead> <tbody> <tr> <td><a href="https://circumicons.com/">Circum Icons</a></td> <td><a href="https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE">MPL-2.0 license</a></td> <td>1.0.0</td> <td align="right">288</td> </tr> <tr> <td><a href="https://fontawesome.com/">Font Awesome 5</a></td> <td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0 License</a></td> <td>5.15.4-3-gafecf2a</td> <td align="right">1612</td> </tr> <tr> <td><a href="https://fontawesome.com/">Font Awesome 6</a></td> <td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0 License</a></td> <td>6.6.0</td> <td align="right">2050</td> </tr> <tr> <td><a href="https://ionicons.com/">Ionicons 4</a></td> <td><a href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td> <td>4.6.3</td> <td align="right">696</td> </tr> <tr> <td><a href="https://ionicons.com/">Ionicons 5</a></td> <td><a href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td> <td>5.5.4</td> <td align="right">1332</td> </tr> <tr> <td><a href="http://google.github.io/material-design-icons/">Material Design icons</a></td> <td><a href="https://github.com/google/material-design-icons/blob/master/LICENSE">Apache License Version 2.0</a></td> <td>4.0.0-125-gef43291c4d</td> <td align="right">4341</td> </tr> <tr> <td><a href="http://s-ings.com/typicons/">Typicons</a></td> <td><a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a></td> <td>2.1.2</td> <td align="right">336</td> </tr> <tr> <td><a href="https://octicons.github.com/">Github Octicons icons</a></td> <td><a href="https://github.com/primer/octicons/blob/master/LICENSE">MIT</a></td> <td>18.3.0</td> <td align="right">264</td> </tr> <tr> <td><a href="https://feathericons.com/">Feather</a></td> <td><a href="https://github.com/feathericons/feather/blob/master/LICENSE">MIT</a></td> <td>4.29.2</td> <td align="right">287</td> </tr> <tr> <td><a href="https://lucide.dev/">Lucide</a></td> <td><a href="https://github.com/lucide-icons/lucide/blob/main/LICENSE">ISC</a></td> <td>0.462.0</td> <td align="right">1541</td> </tr> <tr> <td><a href="https://game-icons.net/">Game Icons</a></td> <td><a href="https://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a></td> <td>12920d6565588f0512542a3cb0cdfd36a497f910</td> <td align="right">4040</td> </tr> <tr> <td><a href="https://erikflowers.github.io/weather-icons/">Weather Icons</a></td> <td><a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a></td> <td>2.0.12</td> <td align="right">219</td> </tr> <tr> <td><a href="https://vorillaz.github.io/devicons/">Devicons</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>1.8.0</td> <td align="right">192</td> </tr> <tr> <td><a href="https://github.com/ant-design/ant-design-icons">Ant Design Icons</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>4.4.2</td> <td align="right">831</td> </tr> <tr> <td><a href="https://github.com/twbs/icons">Bootstrap Icons</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>1.11.3</td> <td align="right">2716</td> </tr> <tr> <td><a href="https://github.com/Remix-Design/RemixIcon">Remix Icon</a></td> <td><a href="http://www.apache.org/licenses/">Apache License Version 2.0</a></td> <td>4.5.0</td> <td align="right">3020</td> </tr> <tr> <td><a href="https://github.com/icons8/flat-color-icons">Flat Color Icons</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>1.0.2</td> <td align="right">329</td> </tr> <tr> <td><a href="https://github.com/grommet/grommet-icons">Grommet-Icons</a></td> <td><a href="http://www.apache.org/licenses/">Apache License Version 2.0</a></td> <td>4.12.1</td> <td align="right">635</td> </tr> <tr> <td><a href="https://github.com/tailwindlabs/heroicons">Heroicons</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>1.0.6</td> <td align="right">460</td> </tr> <tr> <td><a href="https://github.com/tailwindlabs/heroicons">Heroicons 2</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>2.2.0</td> <td align="right">972</td> </tr> <tr> <td><a href="https://simpleicons.org/">Simple Icons</a></td> <td><a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal</a></td> <td>13.19.0</td> <td align="right">3275</td> </tr> <tr> <td><a href="https://thesabbir.github.io/simple-line-icons/">Simple Line Icons</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>2.5.5</td> <td align="right">189</td> </tr> <tr> <td><a href="https://github.com/Keyamoon/IcoMoon-Free">IcoMoon Free</a></td> <td><a href="https://github.com/Keyamoon/IcoMoon-Free/blob/master/License.txt">CC BY 4.0 License</a></td> <td>d006795ede82361e1bac1ee76f215cf1dc51e4ca</td> <td align="right">491</td> </tr> <tr> <td><a href="https://github.com/atisawd/boxicons">BoxIcons</a></td> <td><a href="https://github.com/atisawd/boxicons/blob/master/LICENSE">MIT</a></td> <td>2.1.4</td> <td align="right">1634</td> </tr> <tr> <td><a href="https://github.com/astrit/css.gg">css.gg</a></td> <td><a href="https://opensource.org/licenses/MIT">MIT</a></td> <td>2.1.4</td> <td align="right">704</td> </tr> <tr> <td><a href="https://github.com/microsoft/vscode-codicons">VS Code Icons</a></td> <td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></td> <td>0.0.36</td> <td align="right">466</td> </tr> </tbody> </table> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
f4b36f3b48 |
Bump @tabler/icons-react from 3.23.0 to 3.24.0 in /frontend (#1035)
Bumps
[@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react)
from 3.23.0 to 3.24.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.24.0</h2>
<!-- raw HTML omitted -->
<h3>18 new icons:</h3>
<ul>
<li><code>filled/brand-bitbucket</code></li>
<li><code>filled/direction-arrows</code></li>
<li><code>filled/droplets</code></li>
<li><code>filled/eyeglass</code></li>
<li><code>filled/filters</code></li>
<li><code>filled/flame</code></li>
<li><code>filled/flare</code></li>
<li><code>filled/folders</code></li>
<li><code>filled/garden-cart</code></li>
<li><code>filled/grid-pattern</code></li>
<li><code>filled/helicopter-landing</code></li>
<li><code>filled/laurel-wreath</code></li>
<li><code>filled/lemon-2</code></li>
<li><code>filled/lifebuoy</code></li>
<li><code>outline/cake-roll</code></li>
<li><code>outline/matrix</code></li>
<li><code>outline/square-dashed</code></li>
<li><code>outline/table-dashed</code></li>
</ul>
<p>Fixed icons: <code>outline/exposure-off</code>,
<code>outline/exposure</code>, <code>outline/ferry</code>,
<code>outline/flame</code>, <code>outline/folders</code></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="
|
||
|
|
7021bb2373 |
Update pytest requirement from <=8.3.3 to <=8.3.4 in /backend (#1034)
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.3.4</h2> <h1>pytest 8.3.4 (2024-12-01)</h1> <h2>Bug fixes</h2> <ul> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12592">#12592</a>: Fixed <code>KeyError</code>{.interpreted-text role="class"} crash when using <code>--import-mode=importlib</code> in a directory layout where a directory contains a child directory with the same name.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12818">#12818</a>: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the <code>AST</code>, like <a href="https://github.com/alexmojaki/executing">executing</a>.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12849">#12849</a>: ANSI escape codes for colored output now handled correctly in <code>pytest.fail</code>{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/9353">#9353</a>: <code>pytest.approx</code>{.interpreted-text role="func"} now uses strict equality when given booleans.</p> </li> </ul> <h2>Improved documentation</h2> <ul> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/10558">#10558</a>: Fix ambiguous docstring of <code>pytest.Config.getoption</code>{.interpreted-text role="func"}.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/10829">#10829</a>: Improve documentation on the current handling of the <code>--basetemp</code> option and its lack of retention functionality (<code>temporary directory location and retention</code>{.interpreted-text role="ref"}).</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12866">#12866</a>: Improved cross-references concerning the <code>recwarn</code>{.interpreted-text role="fixture"} fixture.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12966">#12966</a>: Clarify <code>filterwarnings</code>{.interpreted-text role="ref"} docs on filter precedence/order when using multiple <code>@pytest.mark.filterwarnings <pytest.mark.filterwarnings ref></code>{.interpreted-text role="ref"} marks.</p> </li> </ul> <h2>Contributor-facing changes</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12497">#12497</a>: Fixed two failing pdb-related tests on Python 3.13.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
4f2718f720 |
Bump JamesIves/github-pages-deploy-action from 4.6.0 to 4.7.1 (#1032)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) from 4.6.0 to 4.7.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jamesives/github-pages-deploy-action/releases">JamesIves/github-pages-deploy-action's releases</a>.</em></p> <blockquote> <h2>v4.7.1</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>Features ✨</h3> <ul> <li>feat: when <code>target-folder</code> is specified the action will now create any missing folders for you by <a href="https://github.com/databasedav"><code>@databasedav</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1737">JamesIves/github-pages-deploy-action#1737</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/databasedav"><code>@databasedav</code></a> made their first contribution in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1737">JamesIves/github-pages-deploy-action#1737</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/JamesIves/github-pages-deploy-action/compare/v4.6.6...v4.7.1">https://github.com/JamesIves/github-pages-deploy-action/compare/v4.6.6...v4.7.1</a></p> <h2>v4.7.0</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>Features ✨</h3> <ul> <li>feat: added the option to specify an <code>atttempt-limit</code> input, giving you the option to change how many attempts the action will make before failing by <a href="https://github.com/databasedav"><code>@databasedav</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1737">JamesIves/github-pages-deploy-action#1737</a></li> </ul> <h3>Build 🔧</h3> <ul> <li>build(deps): bump codecov/codecov-action from 4.5.0 to 4.6.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1710">JamesIves/github-pages-deploy-action#1710</a></li> <li>chore(deps): update dependencies by <a href="https://github.com/JamesIves"><code>@JamesIves</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1732">JamesIves/github-pages-deploy-action#1732</a></li> <li>build(deps): bump typescript-eslint from 8.13.0 to 8.14.0 in the typescript group by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1734">JamesIves/github-pages-deploy-action#1734</a></li> <li>build(deps-dev): bump the eslint group with 2 updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1733">JamesIves/github-pages-deploy-action#1733</a></li> <li>build(deps): bump the misc group across 1 directory with 6 updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1743">JamesIves/github-pages-deploy-action#1743</a></li> <li>build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.7 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1745">JamesIves/github-pages-deploy-action#1745</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/databasedav"><code>@databasedav</code></a> made their first contribution in <a href="https://redirect.github.com/JamesIves/github-pages-deploy-action/pull/1737">JamesIves/github-pages-deploy-action#1737</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/JamesIves/github-pages-deploy-action/compare/v4.6.6...v4.7.0">https://github.com/JamesIves/github-pages-deploy-action/compare/v4.6.6...v4.7.0</a></p> <h2>v4.6.9</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>Dependencies 🤖</h3> <ul> <li>chore(deps): mass bump dependencies</li> <li>chore(deps): switch to using <code>.node-version</code> instead of <code>.nvmrc</code> for Node dependency management.</li> <li>chore(deps): updated node version to 22.11.0 for development</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/JamesIves/github-pages-deploy-action/compare/v4...v4.6.9">https://github.com/JamesIves/github-pages-deploy-action/compare/v4...v4.6.9</a></p> <h2>v4.6.8</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>Bug Fixes 🐝</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
1f537bfd80 |
Bump @tabler/icons-react from 3.22.0 to 3.23.0 in /frontend (#1033)
Bumps
[@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react)
from 3.22.0 to 3.23.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.23.0</h2>
<!-- raw HTML omitted -->
<h3>18 new icons:</h3>
<ul>
<li><code>filled/calendar-event</code></li>
<li><code>filled/calendar-month</code></li>
<li><code>filled/calendar-week</code></li>
<li><code>outline/alarm-smoke</code></li>
<li><code>outline/badge-2k</code></li>
<li><code>outline/badge-3k</code></li>
<li><code>outline/badge-5k</code></li>
<li><code>outline/blocks</code></li>
<li><code>outline/bowling</code></li>
<li><code>outline/browser-maximize</code></li>
<li><code>outline/browser-minus</code></li>
<li><code>outline/browser-share</code></li>
<li><code>outline/code-variable-minus</code></li>
<li><code>outline/code-variable-plus</code></li>
<li><code>outline/code-variable</code></li>
<li><code>outline/uhd</code></li>
<li><code>outline/wheat-off</code></li>
<li><code>outline/wheat</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="
|
||
|
|
f4ef45072d |
Bump docker/build-push-action from 6.9.0 to 6.10.0 (#1030)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.9.0 to 6.10.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/docker/build-push-action/releases">docker/build-push-action's releases</a>.</em></p> <blockquote> <h2>v6.10.0</h2> <ul> <li>Add <code>call</code> input to set method for evaluating build by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://redirect.github.com/docker/build-push-action/pull/1265">docker/build-push-action#1265</a></li> <li>Bump <code>@actions/core</code> from 1.10.1 to 1.11.1 in <a href="https://redirect.github.com/docker/build-push-action/pull/1238">docker/build-push-action#1238</a></li> <li>Bump <code>@docker/actions-toolkit</code> from 0.39.0 to 0.46.0 in <a href="https://redirect.github.com/docker/build-push-action/pull/1268">docker/build-push-action#1268</a></li> <li>Bump cross-spawn from 7.0.3 to 7.0.6 in <a href="https://redirect.github.com/docker/build-push-action/pull/1261">docker/build-push-action#1261</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/docker/build-push-action/compare/v6.9.0...v6.10.0">https://github.com/docker/build-push-action/compare/v6.9.0...v6.10.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
82d1e18a3b |
Bump prettier from 3.3.0 to 3.4.1 in /frontend (#1031)
Bumps [prettier](https://github.com/prettier/prettier) from 3.3.0 to 3.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.4.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#341">Changelog</a></p> <h2>3.4.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.3.3...3.4.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2024/11/26/3.4.0.html">Release note</a></p> <h2>3.3.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#333">Changelog</a></p> <h2>3.3.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#332">Changelog</a></p> <h2>3.3.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#331">Changelog</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.4.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.4.0...3.4.1">diff</a></p> <h4>Remove unnecessary parentheses around assignment in <code>v-on</code> (<a href="https://redirect.github.com/prettier/prettier/pull/16887">#16887</a> by <a href="https://github.com/fisker"><code>@fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="vue"><code><!-- Input --> \<template> <button @click="foo += 2">Click</button> </template> <p><!-- Prettier 3.4.0 --><br /> &lt;template><br /> <button <a href="https://github.com/click"><code>@click</code></a>="(foo += 2)">Click</button><br /> </template></p> <p><!-- Prettier 3.4.1 --><br /> &lt;template><br /> <button <a href="https://github.com/click"><code>@click</code></a>="foo += 2">Click</button><br /> </template><br /> </code></pre></p> <h1>3.4.0</h1> <p><a href="https://github.com/prettier/prettier/compare/3.3.3...3.4.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2024/11/26/3.4.0.html">Release Notes</a></p> <h1>3.3.3</h1> <p><a href="https://github.com/prettier/prettier/compare/3.3.2...3.3.3">diff</a></p> <h4>Add parentheses for nullish coalescing in ternary (<a href="https://redirect.github.com/prettier/prettier/pull/16391">#16391</a> by <a href="https://github.com/cdignam-segment"><code>@cdignam-segment</code></a>)</h4> <p>This change adds clarity to operator precedence.</p> <!-- raw HTML omitted --> <pre lang="js"><code>// Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; <p>// Prettier 3.3.2<br /> foo ? bar ?? foo : baz;<br /> foo ?? bar ? a : b;<br /> a ? b : foo ?? bar;</p> <p></tr></table><br /> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
3e886b21eb |
Bump @types/node from 22.9.0 to 22.10.0 in /frontend (#1029)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.9.0 to 22.10.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> [](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> |
||
|
|
a5fd32b255 |
Bump typescript from 5.6.3 to 5.7.2 in /frontend (#1028)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.3 to 5.7.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.7</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/">release announcement</a>.</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+">fixed issues query for Typescript 5.7.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.7.1%22+is%3Aclosed+">fixed issues query for Typescript 5.7.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.7.2%22+is%3Aclosed+">fixed issues query for Typescript 5.7.2 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> <h2>TypeScript 5.7 RC</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-rc/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+">fixed issues query for Typescript 5.7.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.7.1%22+is%3Aclosed+">fixed issues query for Typescript 5.7.1 (RC)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> <h2>TypeScript 5.7 Beta</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-beta/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+">fixed issues query for Typescript 5.7.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
ea455aa0e2 |
Bump next-i18next from 15.3.0 to 15.4.0 in /frontend (#1025)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [next-i18next](https://github.com/i18next/next-i18next) from 15.3.0 to 15.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/i18next/next-i18next/releases">next-i18next's releases</a>.</em></p> <blockquote> <h2>v15.4.0</h2> <ul> <li>support i18next v24</li> </ul> <h2>v15.3.1</h2> <ul> <li>update some i18next dependencies to address <a href="https://redirect.github.com/i18next/next-i18next/issues/2288">#2288</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/next-i18next/blob/master/CHANGELOG.md">next-i18next's changelog</a>.</em></p> <blockquote> <h2>15.4.0</h2> <ul> <li>support i18next v24</li> </ul> <h2>15.3.1</h2> <ul> <li>update some i18next dependencies to address <a href="https://redirect.github.com/i18next/next-i18next/issues/2288">#2288</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
b054e4af5b |
Bump eslint-plugin-testing-library from 6.5.0 to 7.0.0 in /frontend (#1027)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 6.5.0 to 7.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/eslint-plugin-testing-library/releases">eslint-plugin-testing-library's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v6.5.0...v7.0.0">7.0.0</a> (2024-11-23)</h1> <p>You can follow the <a href="https://github.com/testing-library/eslint-plugin-testing-library/blob/main/docs/migration-guides/v7.md">migration guide to v7</a>.</p> <h3>BREAKING CHANGES</h3> <ul> <li>Requires Node@^18.18.0 || ^20.9.0 || >=21.1.0</li> <li>Requires ESLint <code>^8.57.0</code>, or <code>^9.0.0</code></li> </ul> <h3>Features</h3> <ul> <li>Full support for ESLint v9 (v8 still compatible) and typescript-eslint v8</li> </ul> <p>Co-authored-by: <a href="https://github.com/MichaelDeBoey"><code>@MichaelDeBoey</code></a></p> <h2>v7.0.0-beta.6</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.0.0-beta.5...v7.0.0-beta.6">7.0.0-beta.6</a> (2024-11-19)</h1> <h3>Features</h3> <ul> <li><strong>deps:</strong> update to <code>@typescript-eslint/*</code> v8 (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/955">#955</a>) (<a href=" |
||
|
|
74be74b9a3 |
Bump i18next from 23.16.0 to 24.0.0 in /frontend (#1026)
Bumps [i18next](https://github.com/i18next/i18next) from 23.16.0 to 24.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next/releases">i18next's releases</a>.</em></p> <blockquote> <h2>v24.0.0</h2> <p><strong>This is a major breaking release:</strong></p> <ul> <li>remove support for older environments</li> <li>remove old i18next JSON formats <ul> <li>To convert your existing v3 translations to the v4 format, have a look at <a href="https://github.com/i18next/i18next-v4-format-converter">i18next-v4-format-converter</a> or this <a href="https://i18next.github.io/i18next-v4-format-converter-web/">web tool</a>.</li> </ul> </li> <li>remove support for compatibility to v1 API</li> <li>Intl API is mandatory now and will not fallback anymore</li> <li>possible compatibility layer for older formats: <code>test/compatibility/v4/v4Compatibility.js</code></li> <li>rename <code>initImmediate</code> to <code>initAsync</code></li> <li>fallback to <code>dev</code> language if plural rule not found</li> <li>remove TypeScript v4 support. TypeScript v5 is now an optional peer dependency</li> <li>addresses <ul> <li><a href="https://redirect.github.com/i18next/i18next/pull/2244">2244</a></li> <li><a href="https://redirect.github.com/i18next/i18next/pull/2184">2184</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2213">2213</a></li> <li><a href="https://redirect.github.com/i18next/i18next/pull/2206">2206</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2208">2208</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2148">2148</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2254">2254</a></li> </ul> </li> </ul> <p>➡️ check out the <a href="https://www.i18next.com/misc/migration-guide#v23.x.x-to-v24.0.0">migration guide</a></p> <h2>v23.16.8</h2> <ul> <li>fix(plural): Create cache entry for PluralRules created as part of the fallback flow <a href="https://redirect.github.com/i18next/i18next/pull/2256">2256</a></li> </ul> <h2>v23.16.7</h2> <ul> <li>if plural rule is not found, try to search with language only code <a href="https://redirect.github.com/i18next/i18next/issues/2252">2252</a></li> </ul> <h2>v23.16.6</h2> <ul> <li>fix: Small typo in the type definitions <a href="https://redirect.github.com/i18next/i18next/pull/2250">2250</a></li> </ul> <h2>v23.16.5</h2> <ul> <li>fix extractFromKey for use cases like <a href="https://redirect.github.com/i18next/react-i18next/issues/1810">this</a></li> </ul> <h2>v23.16.4</h2> <ul> <li>revert formatter change <a href="https://redirect.github.com/i18next/i18next/pull/2247">2247</a> because of caching not working anymore</li> </ul> <h2>v23.16.3</h2> <ul> <li>fix utils imports for Deno</li> </ul> <h2>v23.16.2</h2> <ul> <li>perf(size): Adds a isString utility <a href="https://redirect.github.com/i18next/i18next/pull/2248">2248</a></li> </ul> <h2>v23.16.1</h2> <ul> <li>perf: Optimize size of Formatter <a href="https://redirect.github.com/i18next/i18next/pull/2247">2247</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next/blob/master/CHANGELOG.md">i18next's changelog</a>.</em></p> <blockquote> <h2>24.0.0</h2> <p><strong>This is a major breaking release:</strong></p> <ul> <li>remove support for older environments</li> <li>remove old i18next JSON formats <ul> <li>To convert your existing v3 translations to the v4 format, have a look at <a href="https://github.com/i18next/i18next-v4-format-converter">i18next-v4-format-converter</a> or this <a href="https://i18next.github.io/i18next-v4-format-converter-web/">web tool</a>.</li> </ul> </li> <li>remove support for compatibility to v1 API</li> <li>Intl API is mandatory now and will not fallback anymore</li> <li>possible compatibility layer for older formats: <code>test/compatibility/v4/v4Compatibility.js</code></li> <li>rename <code>initImmediate</code> to <code>initAsync</code></li> <li>fallback to <code>dev</code> language if plural rule not found</li> <li>remove TypeScript v4 support. TypeScript v5 is now an optional peer dependency</li> <li>addresses <ul> <li><a href="https://redirect.github.com/i18next/i18next/pull/2244">2244</a></li> <li><a href="https://redirect.github.com/i18next/i18next/pull/2184">2184</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2213">2213</a></li> <li><a href="https://redirect.github.com/i18next/i18next/pull/2206">2206</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2208">2208</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2148">2148</a></li> <li><a href="https://redirect.github.com/i18next/i18next/issues/2254">2254</a></li> </ul> </li> </ul> <p>➡️ check out the <a href="https://www.i18next.com/misc/migration-guide#v23.x.x-to-v24.0.0">migration guide</a></p> <h2>23.16.8</h2> <ul> <li>fix(plural): Create cache entry for PluralRules created as part of the fallback flow <a href="https://redirect.github.com/i18next/i18next/pull/2256">2256</a></li> </ul> <h2>23.16.7</h2> <ul> <li>if plural rule is not found, try to search with language only code <a href="https://redirect.github.com/i18next/i18next/issues/2252">2252</a></li> </ul> <h2>23.16.6</h2> <ul> <li>fix: Small typo in the type definitions <a href="https://redirect.github.com/i18next/i18next/pull/2250">2250</a></li> </ul> <h2>23.16.5</h2> <ul> <li>fix extractFromKey for use cases like <a href="https://redirect.github.com/i18next/react-i18next/issues/1810">this</a></li> </ul> <h2>23.16.4</h2> <ul> <li>revert formatter change <a href="https://redirect.github.com/i18next/i18next/pull/2247">2247</a> because of caching not working anymore</li> </ul> <h2>23.16.3</h2> <ul> <li>fix utils imports for Deno</li> </ul> <h2>23.16.2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
a94328e14d |
Bump eslint-plugin-testing-library from 6.2.0 to 7.0.0 in /docs (#1024)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 6.2.0 to 7.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/eslint-plugin-testing-library/releases">eslint-plugin-testing-library's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v6.5.0...v7.0.0">7.0.0</a> (2024-11-23)</h1> <p>You can follow the <a href="https://github.com/testing-library/eslint-plugin-testing-library/blob/main/docs/migration-guides/v7.md">migration guide to v7</a>.</p> <h3>BREAKING CHANGES</h3> <ul> <li>Requires Node@^18.18.0 || ^20.9.0 || >=21.1.0</li> <li>Requires ESLint <code>^8.57.0</code>, or <code>^9.0.0</code></li> </ul> <h3>Features</h3> <ul> <li>Full support for ESLint v9 (v8 still compatible) and typescript-eslint v8</li> </ul> <p>Co-authored-by: <a href="https://github.com/MichaelDeBoey"><code>@MichaelDeBoey</code></a></p> <h2>v7.0.0-beta.6</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.0.0-beta.5...v7.0.0-beta.6">7.0.0-beta.6</a> (2024-11-19)</h1> <h3>Features</h3> <ul> <li><strong>deps:</strong> update to <code>@typescript-eslint/*</code> v8 (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/955">#955</a>) (<a href=" |
||
|
|
d6883ca71d | Fix standings page (#1023) |