mirror of
https://github.com/evroon/bracket.git
synced 2026-04-21 07:47:02 -04:00
583eb4e96355b69f970fcab4ffdb52996b3685de
1092 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
583eb4e963 |
Migrate Next.js to Vite (#1397)
Vite is much simpler to use than Next.js and we don't need any of the features Next has that Vite doesn't have. Benefits of moving to Vite are: - Much better performance in dev and prod environments - Much better build times - Actual support for static exports, no vendor lock-in of having to use Vercel - Support for runtime environment variables/loading config from `.env` files - No annoying backwards-incompatible changes on major releases of Next - Better i18n support without having to define getServerSideProps on every page - Better bundle optimization - No opt-out Vercel telemetry Also replaces yarn by pnpm and upgrades mantine to 8.3 |
||
|
|
3f2563b5a2 | Add permissions to GH actions (#1413) | ||
|
|
b8d7241ef0 | Docs: migrate yarn to pnpm (#1412) | ||
|
|
af5e12e295 |
Bump sqlalchemy from 1.4.54 to 2.0.44 in /backend (#1401)
Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 1.4.54 to 2.0.44. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sqlalchemy/sqlalchemy/releases">sqlalchemy's releases</a>.</em></p> <blockquote> <h1>2.0.44</h1> <p>Released: October 10, 2025</p> <h2>platform</h2> <ul> <li><strong>[platform] [bug]</strong> Unblocked automatic greenlet installation for Python 3.14 now that there are greenlet wheels on pypi for python 3.14.</li> </ul> <h2>orm</h2> <ul> <li> <p><strong>[orm] [usecase]</strong> The way ORM Annotated Declarative interprets Python <a href="https://peps.python.org/pep-0695">PEP 695</a> type aliases in <code>Mapped[]</code> annotations has been refined to expand the lookup scheme. A <a href="https://peps.python.org/pep-0695">PEP 695</a> type can now be resolved based on either its direct presence in <code>_orm.registry.type_annotation_map</code> or its immediate resolved value, as long as a recursive lookup across multiple <a href="https://peps.python.org/pep-0695">PEP 695</a> types is not required for it to resolve. This change reverses part of the restrictions introduced in 2.0.37 as part of <a href="https://www.sqlalchemy.org/trac/ticket/11955">#11955</a>, which deprecated (and disallowed in 2.1) the ability to resolve any <a href="https://peps.python.org/pep-0695">PEP 695</a> type that was not explicitly present in <code>_orm.registry.type_annotation_map</code>. Recursive lookups of <a href="https://peps.python.org/pep-0695">PEP 695</a> types remains deprecated in 2.0 and disallowed in version 2.1, as do implicit lookups of <code>NewType</code> types without an entry in <code>_orm.registry.type_annotation_map</code>.</p> <p>Additionally, new support has been added for generic <a href="https://peps.python.org/pep-0695">PEP 695</a> aliases that refer to <a href="https://peps.python.org/pep-0593">PEP 593</a> <code>Annotated</code> constructs containing <code>_orm.mapped_column()</code> configurations. See the sections below for examples.</p> <p>References: <a href="https://www.sqlalchemy.org/trac/ticket/12829">#12829</a></p> </li> <li> <p><strong>[orm] [bug]</strong> Fixed a caching issue where <code>_orm.with_loader_criteria()</code> would incorrectly reuse cached bound parameter values when used with <code>_sql.CompoundSelect</code> constructs such as <code>_sql.union()</code>. The issue was caused by the cache key for compound selects not including the execution options that are part of the <code>_sql.Executable</code> base class, which <code>_orm.with_loader_criteria()</code> uses to apply its criteria dynamically. The fix ensures that compound selects and other executable constructs properly include execution options in their cache key traversal.</p> <p>References: <a href="https://www.sqlalchemy.org/trac/ticket/12905">#12905</a></p> </li> </ul> <h2>engine</h2> <ul> <li><strong>[engine] [bug]</strong> Implemented initial support for free-threaded Python by adding new tests and reworking the test harness to include Python 3.13t and Python 3.14t in</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/sqlalchemy/sqlalchemy/commits">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> Co-authored-by: Erik Vroon <erik.vroon@channable.com> |
||
|
|
8ddcd5960a |
Bump python-dotenv from 1.1.0 to 1.2.1 in /backend (#1411)
Bumps [python-dotenv](https://github.com/theskumar/python-dotenv) from 1.1.0 to 1.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/theskumar/python-dotenv/releases">python-dotenv's releases</a>.</em></p> <blockquote> <h2>v1.2.1</h2> <h2>What's Changed</h2> <ul> <li>Support reading .env from FIFOs (Unix) by <a href="https://github.com/sidharth-sudhir"><code>@sidharth-sudhir</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/586">theskumar/python-dotenv#586</a></li> <li>Update CI to use trusted publishing on PyPI</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/sidharth-sudhir"><code>@sidharth-sudhir</code></a> made their first contribution in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/586">theskumar/python-dotenv#586</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/theskumar/python-dotenv/compare/v1.2.0...v1.2.1">https://github.com/theskumar/python-dotenv/compare/v1.2.0...v1.2.1</a></p> <h2>v1.2.0</h2> <h2>What's Changed</h2> <ul> <li>style: upgrade to use ruff by <a href="https://github.com/theskumar"><code>@theskumar</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/567">theskumar/python-dotenv#567</a></li> <li>Use sys.exit() instead of exit() by <a href="https://github.com/theskumar"><code>@theskumar</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/568">theskumar/python-dotenv#568</a></li> <li>feat: add <code>PYTHON_DOTENV_DISABLED</code> flag to disable load_dotenv (fixes <a href="https://redirect.github.com/theskumar/python-dotenv/issues/510">#510</a>) by <a href="https://github.com/matthewfranglen"><code>@matthewfranglen</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/569">theskumar/python-dotenv#569</a></li> <li>Added Python@3.14: Github CI & tox.ini by <a href="https://github.com/23f3001135"><code>@23f3001135</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/579">theskumar/python-dotenv#579</a></li> <li>ocs: clarify what load_dotenv() does in README by <a href="https://github.com/cybercoded"><code>@cybercoded</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/575">theskumar/python-dotenv#575</a></li> <li>Bump the github-actions group across 1 directory with 2 updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/577">theskumar/python-dotenv#577</a></li> <li>Move project metadata and config to pyproject.toml by <a href="https://github.com/EpicWink"><code>@EpicWink</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/583">theskumar/python-dotenv#583</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/matthewfranglen"><code>@matthewfranglen</code></a> made their first contribution in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/569">theskumar/python-dotenv#569</a></li> <li><a href="https://github.com/23f3001135"><code>@23f3001135</code></a> made their first contribution in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/579">theskumar/python-dotenv#579</a></li> <li><a href="https://github.com/cybercoded"><code>@cybercoded</code></a> made their first contribution in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/575">theskumar/python-dotenv#575</a></li> <li><a href="https://github.com/EpicWink"><code>@EpicWink</code></a> made their first contribution in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/583">theskumar/python-dotenv#583</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/theskumar/python-dotenv/compare/v1.1.1...v1.2.0">https://github.com/theskumar/python-dotenv/compare/v1.1.1...v1.2.0</a></p> <h2>v1.1.1</h2> <h2>What's Changed</h2> <ul> <li>fix: ensure find_dotenv work reliably on python 3.13 by <a href="https://github.com/theskumar"><code>@theskumar</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/563">theskumar/python-dotenv#563</a></li> <li>fix(cli): issue with execvpe on Windows by <a href="https://github.com/wrongontheinternet"><code>@wrongontheinternet</code></a> in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/566">theskumar/python-dotenv#566</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/wrongontheinternet"><code>@wrongontheinternet</code></a> made their first contribution in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/566">theskumar/python-dotenv#566</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/theskumar/python-dotenv/compare/v1.1.0...v1.1.1">https://github.com/theskumar/python-dotenv/compare/v1.1.0...v1.1.1</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md">python-dotenv's changelog</a>.</em></p> <blockquote> <h2>[1.2.1] - 2025-10-26</h2> <ul> <li>Move more config to <code>pyproject.toml</code>, removed <code>setup.cfg</code></li> <li>Add support for reading <code>.env</code> from FIFOs (Unix) by [<a href="https://github.com/sidharth-sudhir"><code>@sidharth-sudhir</code></a>] in <a href="https://redirect.github.com/theskumar/python-dotenv/issues/586">#586</a></li> </ul> <h2>[1.2.0] - 2025-10-26</h2> <ul> <li>Upgrade build system to use PEP 517 & PEP 518 to use <code>build</code> and <code>pyproject.toml</code> by [<a href="https://github.com/EpicWink"><code>@EpicWink</code></a>] in <a href="https://redirect.github.com/theskumar/python-dotenv/issues/583">#583</a></li> <li>Add support for Python 3.14 by [<a href="https://github.com/23f3001135"><code>@23f3001135</code></a>] in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/563">#579</a></li> <li>Add support for disabling of <code>load_dotenv()</code> using <code>PYTHON_DOTENV_DISABLED</code> env var. by [<a href="https://github.com/matthewfranglen"><code>@matthewfranglen</code></a>] in <a href="https://redirect.github.com/theskumar/python-dotenv/issues/569">#569</a></li> </ul> <h2>[1.1.1] - 2025-06-24</h2> <h3>Fixed</h3> <ul> <li>CLI: Ensure <code>find_dotenv</code> work reliably on python 3.13 by [<a href="https://github.com/theskumar"><code>@theskumar</code></a>] in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/563">#563</a></li> <li>CLI: revert the use of execvpe on Windows by [<a href="https://github.com/wrongontheinternet"><code>@wrongontheinternet</code></a>] in <a href="https://redirect.github.com/theskumar/python-dotenv/pull/566">#566</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
84b6f30d75 |
Bump mypy from 1.17.0 to 1.18.2 in /backend (#1410)
Bumps [mypy](https://github.com/python/mypy) from 1.17.0 to 1.18.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's changelog</a>.</em></p> <blockquote> <h3>Mypy 1.18.2</h3> <ul> <li>Fix crash on recursive alias (Ivan Levkivskyi, PR <a href="https://redirect.github.com/python/mypy/pull/19845">19845</a>)</li> <li>Add additional guidance for stubtest errors when runtime is <code>object.__init__</code> (Stephen Morton, PR <a href="https://redirect.github.com/python/mypy/pull/19733">19733</a>)</li> <li>Fix handling of None values in f-string expressions in mypyc (BobTheBuidler, PR <a href="https://redirect.github.com/python/mypy/pull/19846">19846</a>)</li> </ul> <h3>Acknowledgements</h3> <p>Thanks to all mypy contributors who contributed to this release:</p> <ul> <li>Ali Hamdan</li> <li>Anthony Sottile</li> <li>BobTheBuidler</li> <li>Brian Schubert</li> <li>Chainfire</li> <li>Charlie Denton</li> <li>Christoph Tyralla</li> <li>CoolCat467</li> <li>Daniel Hnyk</li> <li>Emily</li> <li>Emma Smith</li> <li>Ethan Sarp</li> <li>Ivan Levkivskyi</li> <li>Jahongir Qurbonov</li> <li>Jelle Zijlstra</li> <li>Joren Hammudoglu</li> <li>Jukka Lehtosalo</li> <li>Marc Mueller</li> <li>Omer Hadari</li> <li>Piotr Sawicki</li> <li>PrinceNaroliya</li> <li>Randolf Scholz</li> <li>Robsdedude</li> <li>Saul Shanabrook</li> <li>Shantanu</li> <li>Stanislav Terliakov</li> <li>Stephen Morton</li> <li>wyattscarpenter</li> </ul> <p>I’d also like to thank my employer, Dropbox, for supporting mypy development.</p> <h2>Mypy 1.17</h2> <p>We’ve just uploaded mypy 1.17 to the Python Package Index (<a href="https://pypi.org/project/mypy/">PyPI</a>). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:</p> <pre><code>python3 -m pip install -U mypy </code></pre> <p>You can read the full documentation for this release on <a href="http://mypy.readthedocs.io">Read the Docs</a>.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
99724b3806 |
Bump pytest-asyncio from 1.1.0 to 1.3.0 in /backend (#1409)
Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 1.1.0 to 1.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's releases</a>.</em></p> <blockquote> <h2>pytest-asyncio 1.3.0</h2> <h1><a href="https://github.com/pytest-dev/pytest-asyncio/tree/1.3.0">1.3.0</a> - 2025-11-10</h1> <h2>Removed</h2> <ul> <li>Support for Python 3.9 (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1278">#1278</a>)</li> </ul> <h2>Added</h2> <ul> <li>Support for pytest 9 (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1279">#1279</a>)</li> </ul> <h2>Notes for Downstream Packagers</h2> <ul> <li>Tested Python versions include free threaded Python 3.14t (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1274">#1274</a>)</li> <li>Tests are run in the same pytest process, instead of spawning a subprocess with <code>pytest.Pytester.runpytest_subprocess</code>. This prevents the test suite from accidentally using a system installation of pytest-asyncio, which could result in test errors. (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1275">#1275</a>)</li> </ul> <h2>pytest-asyncio 1.2.0</h2> <h1><a href="https://github.com/pytest-dev/pytest-asyncio/tree/1.2.0">1.2.0</a> - 2025-09-12</h1> <h2>Added</h2> <ul> <li><code>--asyncio-debug</code> CLI option and <code>asyncio_debug</code> configuration option to enable asyncio debug mode for the default event loop. (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/980">#980</a>)</li> <li>A <code>pytest.UsageError</code> for invalid configuration values of <code>asyncio_default_fixture_loop_scope</code> and <code>asyncio_default_test_loop_scope</code>. (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1189">#1189</a>)</li> <li>Compatibility with the Pyright type checker (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/731">#731</a>)</li> </ul> <h2>Fixed</h2> <ul> <li><code>RuntimeError: There is no current event loop in thread 'MainThread'</code> when any test unsets the event loop (such as when using <code>asyncio.run</code> and <code>asyncio.Runner</code>). (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1177">#1177</a>)</li> <li>Deprecation warning when decorating an asynchronous fixture with <code>@pytest.fixture</code> in [strict]{.title-ref} mode. The warning message now refers to the correct package. (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1198">#1198</a>)</li> </ul> <h2>Notes for Downstream Packagers</h2> <ul> <li>Bump the minimum required version of tox to v4.28. This change is only relevant if you use the <code>tox.ini</code> file provided by pytest-asyncio to run tests.</li> <li>Extend dependency on typing-extensions>=4.12 from Python<3.10 to Python<3.13.</li> </ul> <h2>pytest-asyncio 1.1.1</h2> <h1><a href="https://github.com/pytest-dev/pytest-asyncio/tree/v1.1.1">v1.1.1</a> - 2025-09-12</h1> <h2>Notes for Downstream Packagers</h2> <p>- Addresses a build problem with setuptoos-scm >= 9 caused by invalid setuptools-scm configuration in pytest-asyncio. (<a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1192">#1192</a>)</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
60166bc59e |
Bump pydantic from 2.11.1 to 2.12.4 in /backend (#1408)
Bumps [pydantic](https://github.com/pydantic/pydantic) from 2.11.1 to 2.12.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pydantic/pydantic/releases">pydantic's releases</a>.</em></p> <blockquote> <h2>v2.12.4 2025-11-05</h2> <h2>v2.12.4 (2025-11-05)</h2> <p>This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the <code>build()</code> method of the <a href="https://docs.pydantic.dev/latest/api/networks/"><code>AnyUrl</code> and Dsn types</a>.</p> <p>This patch release also fixes an issue with the serialization of IP address types, when <code>serialize_as_any</code> is used. The next patch release will try to address the remaining issues with <em>serialize as any</em> behavior by introducing a new <em>polymorphic serialization</em> feature, that should be used in most cases in place of <em>serialize as any</em>.</p> <ul> <li> <p>Fix issue with forward references in parent <code>TypedDict</code> classes by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12427">#12427</a>.</p> <p>This issue is only relevant on Python 3.14 and greater.</p> </li> <li> <p>Exclude fields with <code>exclude_if</code> from JSON Schema required fields by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12430">#12430</a></p> </li> <li> <p>Revert URL percent-encoding of credentials in the <code>build()</code> method of the <a href="https://docs.pydantic.dev/latest/api/networks/"><code>AnyUrl</code> and Dsn types</a> by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1833">pydantic-core#1833</a>.</p> <p>This was initially considered as a bugfix, but caused regressions and as such was fully reverted. The next release will include an opt-in option to percent-encode components of the URL.</p> </li> <li> <p>Add type inference for IP address types by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1868">pydantic-core#1868</a>.</p> <p>The 2.12 changes to the <code>serialize_as_any</code> behavior made it so that IP address types could not properly serialize to JSON.</p> </li> <li> <p>Avoid getting default values from defaultdict by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1853">pydantic-core#1853</a>.</p> <p>This fixes a subtle regression in the validation behavior of the <a href="https://docs.python.org/3/library/collections.html#collections.defaultdict"><code>collections.defaultdict</code></a> type.</p> </li> <li> <p>Fix issue with field serializers on nested typed dictionaries by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1879">pydantic-core#1879</a>.</p> </li> <li> <p>Add more <code>pydantic-core</code> builds for the three-threaded version of Python 3.14 by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1864">pydantic-core#1864</a>.</p> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pydantic/pydantic/compare/v2.12.3...v2.12.4">https://github.com/pydantic/pydantic/compare/v2.12.3...v2.12.4</a></p> <h2>v2.12.3 2025-10-17</h2> <h2>v2.12.3 (2025-10-17)</h2> <h3>What's Changed</h3> <p>This is the third 2.13 patch release, fixing issues related to the <code>FieldInfo</code> class, and reverting a change to the supported <a href="https://docs.pydantic.dev/latest/concepts/validators/#model-validators"><em>after</em> model validator</a> function signatures.</p> <ul> <li>Raise a warning when an invalid after model validator function signature is raised by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12414">#12414</a>. Starting in 2.12.0, using class methods for <em>after</em> model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.</li> <li>Add <a href="https://docs.pydantic.dev/latest/api/fields/#pydantic.fields.FieldInfo.asdict"><code>FieldInfo.asdict()</code></a> method, improve documentation around <code>FieldInfo</code> by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12411">#12411</a>. This also adds back support for mutations on <code>FieldInfo</code> classes, that are reused as <code>Annotated</code> metadata. <strong>However</strong>, note that this is still <em>not</em> a supported pattern. Instead, please refer to the <a href="https://docs.pydantic.dev/latest/examples/dynamic_models/">added example</a> in the documentation.</li> </ul> <p>The <a href="https://pydantic.dev/articles/pydantic-v2-12-release#changes">blog post</a> section on changes was also updated to document the changes related to <code>serialize_as_any</code>.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/pydantic/pydantic/compare/v2.12.2...v2.12.3">https://github.com/pydantic/pydantic/compare/v2.12.2...v2.12.3</a></p> <h2>v2.12.2 2025-10-14</h2> <h2>v2.12.2 (2025-10-14)</h2> <h3>What's Changed</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pydantic/pydantic/blob/v2.12.4/HISTORY.md">pydantic's changelog</a>.</em></p> <blockquote> <h2>v2.12.4 (2025-11-05)</h2> <p><a href="https://github.com/pydantic/pydantic/releases/tag/v2.12.4">GitHub release</a></p> <p>This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the <code>build()</code> method of the <a href="https://docs.pydantic.dev/latest/api/networks/"><code>AnyUrl</code> and Dsn types</a>.</p> <p>This patch release also fixes an issue with the serialization of IP address types, when <code>serialize_as_any</code> is used. The next patch release will try to address the remaining issues with <em>serialize as any</em> behavior by introducing a new <em>polymorphic serialization</em> feature, that should be used in most cases in place of <em>serialize as any</em>.</p> <ul> <li> <p>Fix issue with forward references in parent <code>TypedDict</code> classes by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12427">#12427</a>.</p> <p>This issue is only relevant on Python 3.14 and greater.</p> </li> <li> <p>Exclude fields with <code>exclude_if</code> from JSON Schema required fields by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12430">#12430</a></p> </li> <li> <p>Revert URL percent-encoding of credentials in the <code>build()</code> method of the <a href="https://docs.pydantic.dev/latest/api/networks/"><code>AnyUrl</code> and Dsn types</a> by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1833">pydantic-core#1833</a>.</p> <p>This was initially considered as a bugfix, but caused regressions and as such was fully reverted. The next release will include an opt-in option to percent-encode components of the URL.</p> </li> <li> <p>Add type inference for IP address types by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1868">pydantic-core#1868</a>.</p> <p>The 2.12 changes to the <code>serialize_as_any</code> behavior made it so that IP address types could not properly serialize to JSON.</p> </li> <li> <p>Avoid getting default values from defaultdict by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1853">pydantic-core#1853</a>.</p> <p>This fixes a subtle regression in the validation behavior of the <a href="https://docs.python.org/3/library/collections.html#collections.defaultdict"><code>collections.defaultdict</code></a> type.</p> </li> <li> <p>Fix issue with field serializers on nested typed dictionaries by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1879">pydantic-core#1879</a>.</p> </li> <li> <p>Add more <code>pydantic-core</code> builds for the three-threaded version of Python 3.14 by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/pydantic/pydantic-core/pull/1864">pydantic-core#1864</a>.</p> </li> </ul> <h2>v2.12.3 (2025-10-17)</h2> <p><a href="https://github.com/pydantic/pydantic/releases/tag/v2.12.3">GitHub release</a></p> <h3>What's Changed</h3> <p>This is the third 2.12 patch release, fixing issues related to the <code>FieldInfo</code> class, and reverting a change to the supported <a href="https://docs.pydantic.dev/latest/concepts/validators/#model-validators"><em>after</em> model validator</a> function signatures.</p> <ul> <li>Raise a warning when an invalid after model validator function signature is raised by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12414">#12414</a>. Starting in 2.12.0, using class methods for <em>after</em> model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.</li> <li>Add <a href="https://docs.pydantic.dev/latest/api/fields/#pydantic.fields.FieldInfo.asdict"><code>FieldInfo.asdict()</code></a> method, improve documentation around <code>FieldInfo</code> by <a href="https://github.com/Viicos"><code>@Viicos</code></a> in <a href="https://redirect.github.com/pydantic/pydantic/pull/12411">#12411</a>. This also add back support for mutations on <code>FieldInfo</code> classes, that are reused as <code>Annotated</code> metadata. <strong>However</strong>, note that this is still <em>not</em> a supported pattern. Instead, please refer to the <a href="https://docs.pydantic.dev/latest/examples/dynamic_models/">added example</a> in the documentation.</li> </ul> <p>The <a href="https://pydantic.dev/articles/pydantic-v2-12-release#changes">blog post</a> section on changes was also updated to document the changes related to <code>serialize_as_any</code>.</p> <h2>v2.12.2 (2025-10-14)</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
154b8fe839 |
Bump starlette from 0.46.2 to 0.49.1 in /backend (#1399)
Bumps [starlette](https://github.com/Kludex/starlette) from 0.46.2 to 0.49.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Kludex/starlette/releases">starlette's releases</a>.</em></p> <blockquote> <h2>Version 0.49.1</h2> <p>This release fixes a security vulnerability in the parsing logic of the <code>Range</code> header in <code>FileResponse</code>.</p> <p>You can view the full security advisory: <a href="https://github.com/Kludex/starlette/security/advisories/GHSA-7f5h-v6xp-fcq8">GHSA-7f5h-v6xp-fcq8</a></p> <h2>Fixed</h2> <ul> <li>Optimize the HTTP ranges parsing logic <a href=" |
||
|
|
1869a524f1 |
Bump pylint from 3.3.1 to 4.0.2 in /backend (#1404)
Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.3.1 to 4.0.2. <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
c8c5bb8c11 |
Bump ruff from 0.12.2 to 0.14.4 in /backend (#1405)
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.12.2 to 0.14.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p> <blockquote> <h2>0.14.4</h2> <h2>Release Notes</h2> <p>Released on 2025-11-06.</p> <h3>Preview features</h3> <ul> <li>[formatter] Allow newlines after function headers without docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/21110">#21110</a>)</li> <li>[formatter] Avoid extra parentheses for long <code>match</code> patterns with <code>as</code> captures (<a href="https://redirect.github.com/astral-sh/ruff/pull/21176">#21176</a>)</li> <li>[<code>refurb</code>] Expand fix safety for keyword arguments and <code>Decimal</code>s (<code>FURB164</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21259">#21259</a>)</li> <li>[<code>refurb</code>] Preserve argument ordering in autofix (<code>FURB103</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/20790">#20790</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[server] Fix missing diagnostics for notebooks (<a href="https://redirect.github.com/astral-sh/ruff/pull/21156">#21156</a>)</li> <li>[<code>flake8-bugbear</code>] Ignore non-NFKC attribute names in <code>B009</code> and <code>B010</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/21131">#21131</a>)</li> <li>[<code>refurb</code>] Fix false negative for underscores before sign in <code>Decimal</code> constructor (<code>FURB157</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21190">#21190</a>)</li> <li>[<code>ruff</code>] Fix false positives on starred arguments (<code>RUF057</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21256">#21256</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>airflow</code>] extend deprecated argument <code>concurrency</code> in <code>airflow..DAG</code> (<code>AIR301</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21220">#21220</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Improve <code>extend</code> docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/21135">#21135</a>)</li> <li>[<code>flake8-comprehensions</code>] Fix typo in <code>C416</code> documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/21184">#21184</a>)</li> <li>Revise Ruff setup instructions for Zed editor (<a href="https://redirect.github.com/astral-sh/ruff/pull/20935">#20935</a>)</li> </ul> <h3>Other changes</h3> <ul> <li>Make <code>ruff analyze graph</code> work with jupyter notebooks (<a href="https://redirect.github.com/astral-sh/ruff/pull/21161">#21161</a>)</li> </ul> <h3>Contributors</h3> <ul> <li><a href="https://github.com/chirizxc"><code>@chirizxc</code></a></li> <li><a href="https://github.com/Lee-W"><code>@Lee-W</code></a></li> <li><a href="https://github.com/musicinmybrain"><code>@musicinmybrain</code></a></li> <li><a href="https://github.com/MichaReiser"><code>@MichaReiser</code></a></li> <li><a href="https://github.com/tjkuson"><code>@tjkuson</code></a></li> <li><a href="https://github.com/danparizher"><code>@danparizher</code></a></li> <li><a href="https://github.com/renovate"><code>@renovate</code></a></li> <li><a href="https://github.com/ntBre"><code>@ntBre</code></a></li> <li><a href="https://github.com/gauthsvenkat"><code>@gauthsvenkat</code></a></li> <li><a href="https://github.com/LoicRiegel"><code>@LoicRiegel</code></a></li> </ul> <h2>Install ruff 0.14.4</h2> <h3>Install prebuilt binaries via shell script</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's changelog</a>.</em></p> <blockquote> <h2>0.14.4</h2> <p>Released on 2025-11-06.</p> <h3>Preview features</h3> <ul> <li>[formatter] Allow newlines after function headers without docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/21110">#21110</a>)</li> <li>[formatter] Avoid extra parentheses for long <code>match</code> patterns with <code>as</code> captures (<a href="https://redirect.github.com/astral-sh/ruff/pull/21176">#21176</a>)</li> <li>[<code>refurb</code>] Expand fix safety for keyword arguments and <code>Decimal</code>s (<code>FURB164</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21259">#21259</a>)</li> <li>[<code>refurb</code>] Preserve argument ordering in autofix (<code>FURB103</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/20790">#20790</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[server] Fix missing diagnostics for notebooks (<a href="https://redirect.github.com/astral-sh/ruff/pull/21156">#21156</a>)</li> <li>[<code>flake8-bugbear</code>] Ignore non-NFKC attribute names in <code>B009</code> and <code>B010</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/21131">#21131</a>)</li> <li>[<code>refurb</code>] Fix false negative for underscores before sign in <code>Decimal</code> constructor (<code>FURB157</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21190">#21190</a>)</li> <li>[<code>ruff</code>] Fix false positives on starred arguments (<code>RUF057</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21256">#21256</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>airflow</code>] extend deprecated argument <code>concurrency</code> in <code>airflow..DAG</code> (<code>AIR301</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/21220">#21220</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Improve <code>extend</code> docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/21135">#21135</a>)</li> <li>[<code>flake8-comprehensions</code>] Fix typo in <code>C416</code> documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/21184">#21184</a>)</li> <li>Revise Ruff setup instructions for Zed editor (<a href="https://redirect.github.com/astral-sh/ruff/pull/20935">#20935</a>)</li> </ul> <h3>Other changes</h3> <ul> <li>Make <code>ruff analyze graph</code> work with jupyter notebooks (<a href="https://redirect.github.com/astral-sh/ruff/pull/21161">#21161</a>)</li> </ul> <h3>Contributors</h3> <ul> <li><a href="https://github.com/chirizxc"><code>@chirizxc</code></a></li> <li><a href="https://github.com/Lee-W"><code>@Lee-W</code></a></li> <li><a href="https://github.com/musicinmybrain"><code>@musicinmybrain</code></a></li> <li><a href="https://github.com/MichaReiser"><code>@MichaReiser</code></a></li> <li><a href="https://github.com/tjkuson"><code>@tjkuson</code></a></li> <li><a href="https://github.com/danparizher"><code>@danparizher</code></a></li> <li><a href="https://github.com/renovate"><code>@renovate</code></a></li> <li><a href="https://github.com/ntBre"><code>@ntBre</code></a></li> <li><a href="https://github.com/gauthsvenkat"><code>@gauthsvenkat</code></a></li> <li><a href="https://github.com/LoicRiegel"><code>@LoicRiegel</code></a></li> </ul> <h2>0.14.3</h2> <p>Released on 2025-10-30.</p> <h3>Preview features</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
42f66fa3fe | Bump fastapi to 0.121.1 (#1407) | ||
|
|
ebc0b002bc |
Bump @trivago/prettier-plugin-sort-imports from 5.2.2 to 6.0.0 in /docs (#1395)
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) from 5.2.2 to 6.0.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>v6.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update packages and pin babel/types by <a href="https://github.com/byara"><code>@byara</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/343">trivago/prettier-plugin-sort-imports#343</a></li> <li>V6 by <a href="https://github.com/byara"><code>@byara</code></a> and <a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/385">trivago/prettier-plugin-sort-imports#385</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.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>6.0.0</h3> <h4>Breaking Changes</h4> <ul> <li><strong>Switch to ESM</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/366">#366</a> by <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - The plugin now uses ES modules instead of CommonJS</li> <li><strong>Require Node >= 20.x</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/367">#367</a> by <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - Drop support for Node.js versions below 20</li> <li><strong>Switch to vitest</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/370">#370</a> by <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - Replaced Jest with Vitest for better ESM support</li> </ul> <h4>New features</h4> <ul> <li><strong>Ember.js gjs/gts support</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/377">#377</a> by <a href="https://github.com/NullVoxPopuli"><code>@NullVoxPopuli</code></a> and <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - Add support for Ember.js gjs/gts file formats with namespace and named type imports</li> <li><strong><code><BUILTIN_MODULES></code> placeholder</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/381">#381</a> by <a href="https://github.com/sdotson"><code>@sdotson</code></a> - Add support for sorting Node.js builtin modules to a specific position using <code><BUILTIN_MODULES></code> placeholder in <code>importOrder</code></li> <li><strong><code><SEPARATOR></code> placeholder</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/339">#339</a> - Add <code><SEPARATOR></code> keyword for fine-grained control over import group separation when <code>importOrderSeparation</code> is enabled</li> <li><strong>Sort by length option</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/224">#224</a> by <a href="https://github.com/KLewin23"><code>@KLewin23</code></a> - Add option to sort imports by import statement length</li> <li><strong><code>importOrderExclude</code> option</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/384">#384</a> by <a href="https://github.com/RyderKishan"><code>@RyderKishan</code></a> - Add support for excluding specific files from import sorting using glob patterns</li> <li><strong>Expand <code>sort-imports-ignore</code> detection</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/358">#358</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Improved detection of <code>sort-imports-ignore</code> comments throughout the file, not just at line 1</li> </ul> <h4>Performance improvements</h4> <ul> <li><strong>Improve <code>removeNodesFromOriginalCode()</code> performance</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/356">#356</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Replace RegExp logic with string slices for better performance</li> </ul> <h4>Refactoring</h4> <ul> <li><strong>Stop rerendering directives</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/357">#357</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Inject imports instead of re-rendering directives to better preserve whitespace and reduce formatting conflicts</li> <li><strong>Stop ignoring exceptions in snapshot tests</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/355">#355</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Improve test reliability by properly handling exceptions</li> </ul> <h4>Chores</h4> <ul> <li>Add pnpm install command to README <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/361">#361</a> - Document pnpm installation option</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
424941ba56 |
Bump eslint-plugin-jest from 29.0.1 to 29.1.0 in /frontend (#1396)
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 29.0.1 to 29.1.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>v29.1.0</h2> <h1><a href="https://github.com/jest-community/eslint-plugin-jest/compare/v29.0.1...v29.1.0">29.1.0</a> (2025-11-10)</h1> <h3>Features</h3> <ul> <li><strong>prefer-lowercase-title:</strong> allow ignoring <code>todo</code>s (<a href="https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1843">#1843</a>) (<a href=" |
||
|
|
2b8d9416b8 |
Bump @trivago/prettier-plugin-sort-imports from 5.2.0 to 6.0.0 in /frontend (#1394)
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) from 5.2.0 to 6.0.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>v6.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update packages and pin babel/types by <a href="https://github.com/byara"><code>@byara</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/343">trivago/prettier-plugin-sort-imports#343</a></li> <li>V6 by <a href="https://github.com/byara"><code>@byara</code></a> and <a href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/385">trivago/prettier-plugin-sort-imports#385</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0</a></p> <h2>v5.2.2</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.1...v5.2.2">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.1...v5.2.2</a></p> <h2>v5.2.1</h2> <h2>What's Changed</h2> <ul> <li>add svelte 5.x as peer dependency by <a href="https://github.com/werner-drklein"><code>@werner-drklein</code></a> in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/337">trivago/prettier-plugin-sort-imports#337</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/werner-drklein"><code>@werner-drklein</code></a> made their first contribution in <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/337">trivago/prettier-plugin-sort-imports#337</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.0...v5.2.1">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.0...v5.2.1</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>6.0.0</h3> <h4>Breaking Changes</h4> <ul> <li><strong>Switch to ESM</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/366">#366</a> by <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - The plugin now uses ES modules instead of CommonJS</li> <li><strong>Require Node >= 20.x</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/367">#367</a> by <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - Drop support for Node.js versions below 20</li> <li><strong>Switch to vitest</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/370">#370</a> by <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - Replaced Jest with Vitest for better ESM support</li> </ul> <h4>New features</h4> <ul> <li><strong>Ember.js gjs/gts support</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/377">#377</a> by <a href="https://github.com/NullVoxPopuli"><code>@NullVoxPopuli</code></a> and <a href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a> - Add support for Ember.js gjs/gts file formats with namespace and named type imports</li> <li><strong><code><BUILTIN_MODULES></code> placeholder</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/381">#381</a> by <a href="https://github.com/sdotson"><code>@sdotson</code></a> - Add support for sorting Node.js builtin modules to a specific position using <code><BUILTIN_MODULES></code> placeholder in <code>importOrder</code></li> <li><strong><code><SEPARATOR></code> placeholder</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/339">#339</a> - Add <code><SEPARATOR></code> keyword for fine-grained control over import group separation when <code>importOrderSeparation</code> is enabled</li> <li><strong>Sort by length option</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/224">#224</a> by <a href="https://github.com/KLewin23"><code>@KLewin23</code></a> - Add option to sort imports by import statement length</li> <li><strong><code>importOrderExclude</code> option</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/384">#384</a> by <a href="https://github.com/RyderKishan"><code>@RyderKishan</code></a> - Add support for excluding specific files from import sorting using glob patterns</li> <li><strong>Expand <code>sort-imports-ignore</code> detection</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/358">#358</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Improved detection of <code>sort-imports-ignore</code> comments throughout the file, not just at line 1</li> </ul> <h4>Performance improvements</h4> <ul> <li><strong>Improve <code>removeNodesFromOriginalCode()</code> performance</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/356">#356</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Replace RegExp logic with string slices for better performance</li> </ul> <h4>Refactoring</h4> <ul> <li><strong>Stop rerendering directives</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/357">#357</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Inject imports instead of re-rendering directives to better preserve whitespace and reduce formatting conflicts</li> <li><strong>Stop ignoring exceptions in snapshot tests</strong> <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/355">#355</a> by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> - Improve test reliability by properly handling exceptions</li> </ul> <h4>Chores</h4> <ul> <li>Add pnpm install command to README <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/361">#361</a> - Document pnpm installation option</li> </ul> <h3>5.2.2</h3> <ul> <li>Update packages and pin babel/types <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/343">#343</a> by <a href="https://github.com/byara"><code>@byara</code></a></li> </ul> <h3>5.2.1</h3> <ul> <li>add svelte 5.x as peer dependency <a href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/337">#337</a> by <a href="https://github.com/werner-drklein"><code>@werner-drklein</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
9e79b2d837 |
Bump aiohttp from 3.12.2 to 3.13.2 in /backend (#1403)
[](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> |
||
|
|
1da57901db |
Bump types-aiofiles from 24.1.0.20241221 to 25.1.0.20251011 in /backend (#1406)
Bumps [types-aiofiles](https://github.com/typeshed-internal/stub_uploader) from 24.1.0.20241221 to 25.1.0.20251011. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/typeshed-internal/stub_uploader/commits">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> |
||
|
|
3e9a930a26 |
Bump bcrypt from 4.3.0 to 5.0.0 in /backend (#1402)
Bumps [bcrypt](https://github.com/pyca/bcrypt) from 4.3.0 to 5.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pyca/bcrypt/blob/main/CHANGELOG.rst">bcrypt's changelog</a>.</em></p> <blockquote> <h2>5.0.0</h2> <ul> <li>Bumped MSRV to 1.74.</li> <li>Added support for Python 3.14 and free-threaded Python 3.14.</li> <li>Added support for Windows on ARM.</li> <li>Passing <code>hashpw</code> a password longer than 72 bytes now raises a <code>ValueError</code>. Previously the password was silently truncated, following the behavior of the original OpenBSD <code>bcrypt</code> implementation.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
e5e7e60e43 |
Bump aiohttp from 3.12.2 to 3.12.14 in /backend (#1400)
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/evroon/bracket/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
d5c48ded7a |
Migrate to uv (#1398)
uv is more modern and nicer to use than pipenv. |
||
|
|
dd016e891c |
Bump @types/node from 24.9.1 to 24.10.0 in /frontend (#1393)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.9.1 to 24.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> |
||
|
|
f0506e3ea9 |
Bump axios from 1.12.0 to 1.13.0 in /frontend (#1385)
Bumps [axios](https://github.com/axios/axios) from 1.12.0 to 1.13.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p> <blockquote> <h2>Release v1.13.0</h2> <h2>Release notes:</h2> <h3>Bug Fixes</h3> <ul> <li><strong>fetch:</strong> prevent TypeError when config.env is undefined (<a href="https://redirect.github.com/axios/axios/issues/7155">#7155</a>) (<a href=" |
||
|
|
176bb8f4b5 | New Crowdin updates (#1383) | ||
|
|
4b33ee055b |
Bump react-i18next from 16.1.2 to 16.2.0 in /frontend (#1384)
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 16.1.2 to 16.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>16.2.0</h3> <ul> <li>try to address: useTranslation hook violates React's rules of hooks by conditionally calling inner hooks <a href="https://redirect.github.com/i18next/react-i18next/issues/1863">1863</a></li> </ul> <h3>16.1.6</h3> <ul> <li>fix: fix: handle spread props for inner components in Trans (icu) <a href="https://redirect.github.com/i18next/react-i18next/pull/1877">1877</a></li> </ul> <h3>16.1.5</h3> <ul> <li>fix: Incosistent behaviour of Trans and t. Trans set defaultValue when t call doesn't set the field. <a href="https://redirect.github.com/i18next/react-i18next/issues/1876">1876</a></li> <li>Trans: use also defaultValue via tOptions as fallback</li> </ul> <h3>16.1.4</h3> <ul> <li>fix: detect pre-transformation use of interpolation like number/date/etc. <a href="https://redirect.github.com/i18next/react-i18next/pull/1875">1875</a></li> </ul> <h3>16.1.3</h3> <ul> <li>fix: ensure invalid identifiers are quoted in the props object <a href="https://redirect.github.com/i18next/react-i18next/pull/1874">1874</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
536f67a0c3 | New Crowdin updates (#1382) | ||
|
|
1818bd8a16 |
Update contributors in readme (#1381)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |
||
|
|
8ac02e7bb1 | New Crowdin updates (#1380) | ||
|
|
e97f83e025 |
Update Spanish translations for courts terminology (#1378)
Se mejora el texto court por canchas. |
||
|
|
e65dc4c435 |
Bump @hcaptcha/react-hcaptcha from 1.13.1 to 1.14.0 in /frontend (#1379)
Bumps
[@hcaptcha/react-hcaptcha](https://github.com/hCaptcha/react-hcaptcha)
from 1.13.1 to 1.14.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hCaptcha/react-hcaptcha/releases"><code>@hcaptcha/react-hcaptcha</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.14</h2>
<h2>What's Changed</h2>
<ul>
<li>feat(execute): Add unmount tracking to reject async execution</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/hCaptcha/react-hcaptcha/compare/v1.13.1...v1.14">https://github.com/hCaptcha/react-hcaptcha/compare/v1.13.1...v1.14</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="
|
||
|
|
2de1e00aff |
Bump @hcaptcha/react-hcaptcha from 1.12.0 to 1.13.1 in /frontend (#1377)
Bumps [@hcaptcha/react-hcaptcha](https://github.com/hCaptcha/react-hcaptcha) from 1.12.0 to 1.13.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hCaptcha/react-hcaptcha/releases"><code>@hcaptcha/react-hcaptcha</code>'s releases</a>.</em></p> <blockquote> <h2>v1.13.1</h2> <h2>What's Changed</h2> <ul> <li>fix(api): Passing the expected parameter to the loader by <a href="https://github.com/Cai3ra"><code>@Cai3ra</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/issues/310">#310</a></li> <li>feat(package): Bump hCaptcha loader version by <a href="https://github.com/Cai3ra"><code>@Cai3ra</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/issues/310">#310</a></li> <li>docs: Update README.md by <a href="https://github.com/Cai3ra"><code>@Cai3ra</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/issues/310">#310</a></li> </ul> <h2>1.13.0</h2> <h2>What's Changed</h2> <ul> <li>feat(api): add userJourneys prop support by <a href="https://github.com/Cai3ra"><code>@Cai3ra</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/299">hCaptcha/react-hcaptcha#299</a></li> </ul> <h2>1.12.1</h2> <h2>What's Changed</h2> <ul> <li>chore(deps-dev): bump http-proxy-middleware from 2.0.6 to 2.0.9 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/261">hCaptcha/react-hcaptcha#261</a></li> <li>chore(deps): bump <code>@babel/runtime</code> from 7.23.9 to 7.27.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/262">hCaptcha/react-hcaptcha#262</a></li> <li>ci: Update and Lock Actions by <a href="https://github.com/rocelito"><code>@rocelito</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/260">hCaptcha/react-hcaptcha#260</a></li> <li>chore(deps-dev): bump webpack-dev-server from 4.15.1 to 5.2.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/266">hCaptcha/react-hcaptcha#266</a></li> <li>chore(deps): bump on-headers and compression by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/271">hCaptcha/react-hcaptcha#271</a></li> <li>chore(deps-dev): bump form-data from 4.0.0 to 4.0.4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/272">hCaptcha/react-hcaptcha#272</a></li> <li>docs: Update README.md by <a href="https://github.com/kdziamura"><code>@kdziamura</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/273">hCaptcha/react-hcaptcha#273</a></li> <li>feat(package): Bump hCaptcha loader version by <a href="https://github.com/brdlyptrs"><code>@brdlyptrs</code></a> in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/275">hCaptcha/react-hcaptcha#275</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/rocelito"><code>@rocelito</code></a> made their first contribution in <a href="https://redirect.github.com/hCaptcha/react-hcaptcha/pull/260">hCaptcha/react-hcaptcha#260</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/hCaptcha/react-hcaptcha/compare/1.12.0...1.12.1">https://github.com/hCaptcha/react-hcaptcha/compare/1.12.0...1.12.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
509f3e066e |
Bump eslint-config-next from 15.1.7 to 16.0.0 in /docs (#1376)
Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 15.1.7 to 16.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases">eslint-config-next's releases</a>.</em></p> <blockquote> <h2>v16.0.0</h2> <blockquote> <p>[!TIP]<br /> <strong>Check out our Next v16 <a href="https://nextjs.org/blog/next-16">Blog Post</a> to learn more about this release.</strong></p> </blockquote> <h3>Core Changes</h3> <ul> <li>Development: Don't import app-router / hot-reloader through next/link in application code: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83656">#83656</a></li> <li>Remove clientParamParsing requirement from RDC for Navigations: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83661">#83661</a></li> <li>Upgrade React from <code>6b70072c-20250909</code> to <code>886b3d36-20250910</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83650">#83650</a></li> <li>Turbopack: Use readFileSync / writeFileSync for manifest writing: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83694">#83694</a></li> <li>Upgrade React from <code>886b3d36-20250910</code> to <code>f3a80361-20250911</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83696">#83696</a></li> <li>Don't create client-side debug channel if the feature is disabled: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83699">#83699</a></li> <li>fix: dev should produce the correct default fallback regex to match builds/Turbopack: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83701">#83701</a></li> <li>[devtool] fix overlay styles are missing: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83721">#83721</a></li> <li>Revert "Remove clientParamParsing requirement from RDC for Navigations": <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83725">#83725</a></li> <li>Only enable unhandledRejection filtering when opted in: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83726">#83726</a></li> <li>Fix index data route for adapter build-complete: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83730">#83730</a></li> <li>Remove leading underscore for unhandledRejection envvar: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83732">#83732</a></li> <li>Upgrade React from <code>f3a80361-20250911</code> to <code>93d7aa69-20250912</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83729">#83729</a></li> <li>Upgrade React from <code>93d7aa69-20250912</code> to <code>8a8e9a7e-20250912</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83742">#83742</a></li> <li>Fix reentrancy of unhandledRejection filtering: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83741">#83741</a></li> <li>Fix type for unhandled rejection handler process.removeListener: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83748">#83748</a></li> <li>[OTel] fix: Root span name should not include high cardinality URL: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/75416">#75416</a></li> <li>Turbopack: Remove matchers.reload() call on each request: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83720">#83720</a></li> <li>[Breaking] Flat config as default in <code>@next/eslint-plugin-next</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83763">#83763</a></li> <li>fix: Rspack splitChunks.chunks regex: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83670">#83670</a></li> <li>Revert "Turbopack: Remove matchers.reload() call on each request": <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83819">#83819</a></li> <li>fix: unstable_cache should perform blocking revalidation during ISR revalidation: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83820">#83820</a></li> <li>fix(Rspack): resolve HMR unresponsiveness or unexpected full reload & update dev snapshot: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83480">#83480</a></li> <li>Allow <code>next.config.mts</code> for Node.js native TS resolver: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83556">#83556</a></li> <li>chore: Ensure Import Trace starts in a newline: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83638">#83638</a></li> <li>Development: Remove matchers.reload() on each request: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83829">#83829</a></li> <li>Upgrade React from <code>8a8e9a7e-20250912</code> to <code>5e0c951b-20250916</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83850">#83850</a></li> <li>Bump typescript 5.9.2: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83833">#83833</a></li> <li>Allow headers, rewrites and redirects to be defined as sync functions: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83743">#83743</a></li> <li>Turbopack: Optimize addedRoutes and removedRoutes calculation: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83840">#83840</a></li> <li>[next-config-ts] Set Node.js native TS loader fallback flag to process.env: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83832">#83832</a></li> <li>Development: Clarify TypescriptStatus in watcher: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83857">#83857</a></li> <li>Upgrade sharp dependency to version ^0.34.4: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83892">#83892</a></li> <li>Upgrade React from <code>5e0c951b-20250916</code> to <code>128abcfa-20250917</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83906">#83906</a></li> <li>Add native ts resolver docs link to transpile-config: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83914">#83914</a></li> <li>OTel: use <code>srcPage</code> for templates when <code>next.route</code> is unavailable: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83911">#83911</a></li> <li>Remove inline CSS sourcemaps from next-devtools: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83917">#83917</a></li> <li>Development: Move all TypeScript related work in watcher together: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83912">#83912</a></li> <li>[Cache Components] Allow sync IO inside console methods : <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83843">#83843</a></li> <li>Upgrade React from <code>128abcfa-20250917</code> to <code>84af9085-20250917</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83959">#83959</a></li> <li>Build: Add .next/trace-build with high level trace: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83949">#83949</a></li> <li>Remove force writing **/*.mts to tsconfig: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83967">#83967</a></li> <li>feat: Isolate dev build from prod: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83961">#83961</a></li> <li>Remove JS size reporting from next build: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/83815">#83815</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
ca15c96d00 |
Bump @next/bundle-analyzer from 15.5.0 to 16.0.0 in /frontend (#1374)
Bumps [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) from 15.5.0 to 16.0.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>v16.0.0</h2> <blockquote> <p>[!TIP]<br /> <strong>Check out our Next v16 <a href="https://nextjs.org/blog/next-16">Blog Post</a> to learn more about this release.</strong></p> </blockquote> <h3>Core Changes</h3> <ul> <li>Development: Don't import app-router / hot-reloader through next/link in application code: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83656">#83656</a></li> <li>Remove clientParamParsing requirement from RDC for Navigations: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83661">#83661</a></li> <li>Upgrade React from <code>6b70072c-20250909</code> to <code>886b3d36-20250910</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83650">#83650</a></li> <li>Turbopack: Use readFileSync / writeFileSync for manifest writing: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83694">#83694</a></li> <li>Upgrade React from <code>886b3d36-20250910</code> to <code>f3a80361-20250911</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83696">#83696</a></li> <li>Don't create client-side debug channel if the feature is disabled: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83699">#83699</a></li> <li>fix: dev should produce the correct default fallback regex to match builds/Turbopack: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83701">#83701</a></li> <li>[devtool] fix overlay styles are missing: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83721">#83721</a></li> <li>Revert "Remove clientParamParsing requirement from RDC for Navigations": <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83725">#83725</a></li> <li>Only enable unhandledRejection filtering when opted in: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83726">#83726</a></li> <li>Fix index data route for adapter build-complete: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83730">#83730</a></li> <li>Remove leading underscore for unhandledRejection envvar: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83732">#83732</a></li> <li>Upgrade React from <code>f3a80361-20250911</code> to <code>93d7aa69-20250912</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83729">#83729</a></li> <li>Upgrade React from <code>93d7aa69-20250912</code> to <code>8a8e9a7e-20250912</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83742">#83742</a></li> <li>Fix reentrancy of unhandledRejection filtering: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83741">#83741</a></li> <li>Fix type for unhandled rejection handler process.removeListener: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83748">#83748</a></li> <li>[OTel] fix: Root span name should not include high cardinality URL: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/75416">#75416</a></li> <li>Turbopack: Remove matchers.reload() call on each request: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83720">#83720</a></li> <li>[Breaking] Flat config as default in <code>@next/eslint-plugin-next</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83763">#83763</a></li> <li>fix: Rspack splitChunks.chunks regex: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83670">#83670</a></li> <li>Revert "Turbopack: Remove matchers.reload() call on each request": <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83819">#83819</a></li> <li>fix: unstable_cache should perform blocking revalidation during ISR revalidation: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83820">#83820</a></li> <li>fix(Rspack): resolve HMR unresponsiveness or unexpected full reload & update dev snapshot: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83480">#83480</a></li> <li>Allow <code>next.config.mts</code> for Node.js native TS resolver: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83556">#83556</a></li> <li>chore: Ensure Import Trace starts in a newline: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83638">#83638</a></li> <li>Development: Remove matchers.reload() on each request: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83829">#83829</a></li> <li>Upgrade React from <code>8a8e9a7e-20250912</code> to <code>5e0c951b-20250916</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83850">#83850</a></li> <li>Bump typescript 5.9.2: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83833">#83833</a></li> <li>Allow headers, rewrites and redirects to be defined as sync functions: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83743">#83743</a></li> <li>Turbopack: Optimize addedRoutes and removedRoutes calculation: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83840">#83840</a></li> <li>[next-config-ts] Set Node.js native TS loader fallback flag to process.env: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83832">#83832</a></li> <li>Development: Clarify TypescriptStatus in watcher: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83857">#83857</a></li> <li>Upgrade sharp dependency to version ^0.34.4: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83892">#83892</a></li> <li>Upgrade React from <code>5e0c951b-20250916</code> to <code>128abcfa-20250917</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83906">#83906</a></li> <li>Add native ts resolver docs link to transpile-config: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83914">#83914</a></li> <li>OTel: use <code>srcPage</code> for templates when <code>next.route</code> is unavailable: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83911">#83911</a></li> <li>Remove inline CSS sourcemaps from next-devtools: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83917">#83917</a></li> <li>Development: Move all TypeScript related work in watcher together: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83912">#83912</a></li> <li>[Cache Components] Allow sync IO inside console methods : <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83843">#83843</a></li> <li>Upgrade React from <code>128abcfa-20250917</code> to <code>84af9085-20250917</code>: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83959">#83959</a></li> <li>Build: Add .next/trace-build with high level trace: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83949">#83949</a></li> <li>Remove force writing **/*.mts to tsconfig: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83967">#83967</a></li> <li>feat: Isolate dev build from prod: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83961">#83961</a></li> <li>Remove JS size reporting from next build: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/83815">#83815</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
8d2dffea20 |
Bump @types/node from 24.8.1 to 24.9.1 in /frontend (#1371)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.8.1 to 24.9.1. <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> |
||
|
|
c244859edb |
Bump react-i18next from 16.0.1 to 16.1.2 in /frontend (#1370)
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 16.0.1 to 16.1.2. <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>16.1.2</h3> <ul> <li>missing.js extensions for Icu imports</li> </ul> <h3>16.1.1</h3> <ul> <li>exports for <code>IcuTrans</code> component <a href="https://redirect.github.com/i18next/react-i18next/pull/1873">1873</a></li> </ul> <h3>16.1.0</h3> <ul> <li>Introduce <code>IcuTrans</code> component <a href="https://redirect.github.com/i18next/react-i18next/issues/1869">1869</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
b0963d8a0f |
Bump @types/node from 24.7.0 to 24.8.1 in /frontend (#1367)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.7.0 to 24.8.1. <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> |
||
|
|
cbfc922505 |
Bump react-i18next from 15.7.0 to 16.0.1 in /frontend (#1366)
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 15.7.0 to 16.0.1. <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>16.0.1</h3> <ul> <li>fix: Using <!-- raw HTML omitted --> component with named tags throws error when Selector API is enabled <a href="https://redirect.github.com/i18next/react-i18next/issues/1867">1867</a> with <a href="https://redirect.github.com/i18next/react-i18next/pull/1868">1868</a></li> </ul> <h3>16.0.0</h3> <ul> <li>major upgrade i18next dep to address <a href="https://redirect.github.com/i18next/react-i18next/issues/1865">1865</a></li> </ul> <h3>15.7.4</h3> <ul> <li>downgrade i18next dep to address <a href="https://redirect.github.com/i18next/react-i18next/issues/1865">1865</a></li> </ul> <h3>15.7.3</h3> <ul> <li>exports TransSelectorProps <a href="https://redirect.github.com/i18next/react-i18next/pull/1862">1862</a> to address <a href="https://redirect.github.com/i18next/react-i18next/issues/1861">1861</a></li> </ul> <h3>15.7.2</h3> <ul> <li>update i18next dependency</li> </ul> <h3>15.7.1</h3> <ul> <li>Fix: _EnableSelector type (for compatibility, enableSelector does not exist in TypeOptions) <a href="https://redirect.github.com/i18next/react-i18next/pull/1858">1858</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
25f49d17fd |
Bump actions/setup-node from 5 to 6 (#1365)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 5 to 6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-node/releases">actions/setup-node's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <h2>What's Changed</h2> <p><strong>Breaking Changes</strong></p> <ul> <li>Limit automatic caching to npm, update workflows and documentation by <a href="https://github.com/priyagupta108"><code>@priyagupta108</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1374">actions/setup-node#1374</a></li> </ul> <p><strong>Dependency Upgrades</strong></p> <ul> <li>Upgrade ts-jest from 29.1.2 to 29.4.1 and document breaking changes in v5 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/setup-node/pull/1336">#1336</a></li> <li>Upgrade prettier from 2.8.8 to 3.6.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/setup-node/pull/1334">#1334</a></li> <li>Upgrade actions/publish-action from 0.3.0 to 0.4.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/setup-node/pull/1362">#1362</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-node/compare/v5...v6.0.0">https://github.com/actions/setup-node/compare/v5...v6.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
cf45721039 |
Bump i18next from 25.5.0 to 25.6.0 in /frontend (#1364)
Bumps [i18next](https://github.com/i18next/i18next) from 25.5.0 to 25.6.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>v25.6.0</h2> <ul> <li> <p><strong>feat</strong>: <code>exists()</code> method now respects <code>returnObjects</code> option - returns <code>false</code> when accessing an object key with <code>returnObjects: false</code>, enabling detection of object vs string keys <a href="https://redirect.github.com/i18next/i18next/issues/2359">2359</a></p> <p><strong>Note</strong>: This is a potential behavior change. If you were previously calling <code>exists()</code> with <code>returnObjects: false</code> on object keys, those calls will now return <code>false</code> instead of <code>true</code>. This enables developers to detect whether a key points to an object or string value.</p> </li> </ul> <h2>v25.5.3</h2> <ul> <li>export esm type declaration for keyFromSelector <a href="https://redirect.github.com/i18next/i18next/pull/2356">2356</a></li> </ul> <h2>v25.5.2</h2> <ul> <li>fix <a href="https://redirect.github.com/i18next/i18next/pull/2347">last change</a> => for cjs there is just 1 default export, no named exports, fixes <a href="https://redirect.github.com/i18next/i18next/issues/2348">2348</a></li> </ul> <h2>v25.5.1</h2> <ul> <li>export keyFromSelector from index.cjs <a href="https://redirect.github.com/i18next/i18next/pull/2347">2347</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>25.6.0</h2> <ul> <li> <p><strong>feat</strong>: <code>exists()</code> method now respects <code>returnObjects</code> option - returns <code>false</code> when accessing an object key with <code>returnObjects: false</code>, enabling detection of object vs string keys <a href="https://redirect.github.com/i18next/i18next/issues/2359">2359</a></p> <p><strong>Note</strong>: This is a potential behavior change. If you were previously calling <code>exists()</code> with <code>returnObjects: false</code> on object keys, those calls will now return <code>false</code> instead of <code>true</code>. This enables developers to detect whether a key points to an object or string value.</p> </li> </ul> <h2>25.5.3</h2> <ul> <li>export esm type declaration for keyFromSelector <a href="https://redirect.github.com/i18next/i18next/pull/2356">2356</a></li> </ul> <h2>25.5.2</h2> <ul> <li>fix <a href="https://redirect.github.com/i18next/i18next/pull/2347">last change</a> => for cjs there is just 1 default export, no named exports, fixes <a href="https://redirect.github.com/i18next/i18next/issues/2348">2348</a></li> </ul> <h2>25.5.1</h2> <ul> <li>export keyFromSelector from index.cjs <a href="https://redirect.github.com/i18next/i18next/pull/2347">2347</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
0662c8f730 | New Crowdin updates (#1360) | ||
|
|
6da1095990 |
Bump eslint-plugin-testing-library from 7.12.0 to 7.13.0 in /frontend (#1359)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 7.12.0 to 7.13.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.13.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.12.0...v7.13.0">7.13.0</a> (2025-10-08)</h1> <h3>Features</h3> <ul> <li><strong>no-wait-for-multiple-assertions:</strong> add auto-fix (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/1099">#1099</a>) (<a href=" |
||
|
|
467681f20f |
Bump @types/node from 24.6.0 to 24.7.0 in /frontend (#1358)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.6.0 to 24.7.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> |
||
|
|
f5fd1baffa |
Bump eslint-plugin-testing-library from 7.11.0 to 7.12.0 in /frontend (#1357)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 7.11.0 to 7.12.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.12.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.11.0...v7.12.0">7.12.0</a> (2025-10-06)</h1> <h3>Features</h3> <ul> <li><strong>no-wait-for-multiple-assertions:</strong> avoid reporting unrelated assertions (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/1097">#1097</a>) (<a href=" |
||
|
|
7e0d0fdae8 | New Crowdin updates (#1356) | ||
|
|
629d78718d |
Bump @testing-library/jest-dom from 6.8.0 to 6.9.0 in /frontend (#1355)
Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 6.8.0 to 6.9.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/jest-dom/releases"><code>@testing-library/jest-dom</code>'s releases</a>.</em></p> <blockquote> <h2>v6.9.0</h2> <h1><a href="https://github.com/testing-library/jest-dom/compare/v6.8.0...v6.9.0">6.9.0</a> (2025-09-30)</h1> <h3>Features</h3> <ul> <li>Add .toAppearBefore/.toAppearAfter matcher (<a href="https://redirect.github.com/testing-library/jest-dom/issues/702">#702</a>) (<a href=" |
||
|
|
3d430a1a06 |
Bump eslint-plugin-testing-library from 7.10.0 to 7.11.0 in /frontend (#1354)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 7.10.0 to 7.11.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.11.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.10.0...v7.11.0">7.11.0</a> (2025-09-29)</h1> <h3>Features</h3> <ul> <li><strong>no-wait-for-multiple-assertions:</strong> improve autofix (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/1091">#1091</a>) (<a href=" |
||
|
|
c86e4cca57 |
Bump @types/node from 24.5.0 to 24.6.0 in /frontend (#1353)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.5.0 to 24.6.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> |
||
|
|
4e458b790a |
Bump jest-environment-jsdom from 30.1.1 to 30.2.0 in /frontend (#1351)
[//]: # (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 [jest-environment-jsdom](https://github.com/jestjs/jest/tree/HEAD/packages/jest-environment-jsdom) from 30.1.1 to 30.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jestjs/jest/releases">jest-environment-jsdom's releases</a>.</em></p> <blockquote> <h2>30.2.0</h2> <h3>Chore & Maintenance</h3> <ul> <li><code>[*]</code> Update example repo for testing React Native projects (<a href="https://redirect.github.com/jestjs/jest/pull/15832">#15832</a>)</li> <li><code>[*]</code> Update <code>jest-watch-typeahead</code> to v3 (<a href="https://redirect.github.com/jestjs/jest/pull/15830">#15830</a>)</li> </ul> <h2>Features</h2> <ul> <li><code>[jest-environment-jsdom-abstract]</code> Add support for JSDOM v27 (<a href="https://redirect.github.com/jestjs/jest/pull/15834">#15834</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[babel-jest]</code> Export the <code>TransformerConfig</code> interface (<a href="https://redirect.github.com/jestjs/jest/pull/15820">#15820</a>)</li> <li><code>[jest-config]</code> Fix <code>jest.config.ts</code> with TS loader specified in docblock pragma (<a href="https://redirect.github.com/jestjs/jest/pull/15839">#15839</a>)</li> </ul> <h2>30.1.3</h2> <h3>Fixes</h3> <ul> <li>Fix <code>unstable_mockModule</code> with <code>node:</code> prefixed core modules.</li> </ul> <h2>30.1.2</h2> <h3>Fixes</h3> <ul> <li><code>[jest-snapshot-utils]</code> Correct snapshot header regexp to work with newline across OSes (<a href="https://redirect.github.com/jestjs/jest/pull/15803">#15803</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jestjs/jest/blob/main/CHANGELOG.md">jest-environment-jsdom's changelog</a>.</em></p> <blockquote> <h2>30.2.0</h2> <h3>Chore & Maintenance</h3> <ul> <li><code>[*]</code> Update example repo for testing React Native projects (<a href="https://redirect.github.com/jestjs/jest/pull/15832">#15832</a>)</li> <li><code>[*]</code> Update <code>jest-watch-typeahead</code> to v3 (<a href="https://redirect.github.com/jestjs/jest/pull/15830">#15830</a>)</li> </ul> <h2>Features</h2> <ul> <li><code>[jest-environment-jsdom-abstract]</code> Add support for JSDOM v27 (<a href="https://redirect.github.com/jestjs/jest/pull/15834">#15834</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[babel-jest]</code> Export the <code>TransformerConfig</code> interface (<a href="https://redirect.github.com/jestjs/jest/pull/15820">#15820</a>)</li> <li><code>[jest-config]</code> Fix <code>jest.config.ts</code> with TS loader specified in docblock pragma (<a href="https://redirect.github.com/jestjs/jest/pull/15839">#15839</a>)</li> </ul> <h2>30.1.3</h2> <h3>Fixes</h3> <ul> <li>Fix <code>unstable_mockModule</code> with <code>node:</code> prefixed core modules.</li> </ul> <h2>30.1.2</h2> <h3>Fixes</h3> <ul> <li><code>[jest-snapshot-utils]</code> Correct snapshot header regexp to work with newline across OSes (<a href="https://redirect.github.com/jestjs/jest/pull/15803">#15803</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
dc726c4e8f |
Bump jest from 30.1.0 to 30.2.0 in /frontend (#1350)
Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) from 30.1.0 to 30.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jestjs/jest/releases">jest's releases</a>.</em></p> <blockquote> <h2>30.2.0</h2> <h3>Chore & Maintenance</h3> <ul> <li><code>[*]</code> Update example repo for testing React Native projects (<a href="https://redirect.github.com/jestjs/jest/pull/15832">#15832</a>)</li> <li><code>[*]</code> Update <code>jest-watch-typeahead</code> to v3 (<a href="https://redirect.github.com/jestjs/jest/pull/15830">#15830</a>)</li> </ul> <h2>Features</h2> <ul> <li><code>[jest-environment-jsdom-abstract]</code> Add support for JSDOM v27 (<a href="https://redirect.github.com/jestjs/jest/pull/15834">#15834</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[babel-jest]</code> Export the <code>TransformerConfig</code> interface (<a href="https://redirect.github.com/jestjs/jest/pull/15820">#15820</a>)</li> <li><code>[jest-config]</code> Fix <code>jest.config.ts</code> with TS loader specified in docblock pragma (<a href="https://redirect.github.com/jestjs/jest/pull/15839">#15839</a>)</li> </ul> <h2>30.1.3</h2> <h3>Fixes</h3> <ul> <li>Fix <code>unstable_mockModule</code> with <code>node:</code> prefixed core modules.</li> </ul> <h2>30.1.2</h2> <h3>Fixes</h3> <ul> <li><code>[jest-snapshot-utils]</code> Correct snapshot header regexp to work with newline across OSes (<a href="https://redirect.github.com/jestjs/jest/pull/15803">#15803</a>)</li> </ul> <h2>30.1.1</h2> <h3>Fixes</h3> <ul> <li><code>[jest-snapshot-utils]</code> Fix deprecated goo.gl snapshot warning not handling Windows end-of-line sequences (<a href="https://redirect.github.com/jestjs/jest/pull/15800">#15800</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jestjs/jest/blob/main/CHANGELOG.md">jest's changelog</a>.</em></p> <blockquote> <h2>30.2.0</h2> <h3>Chore & Maintenance</h3> <ul> <li><code>[*]</code> Update example repo for testing React Native projects (<a href="https://redirect.github.com/jestjs/jest/pull/15832">#15832</a>)</li> <li><code>[*]</code> Update <code>jest-watch-typeahead</code> to v3 (<a href="https://redirect.github.com/jestjs/jest/pull/15830">#15830</a>)</li> </ul> <h2>Features</h2> <ul> <li><code>[jest-environment-jsdom-abstract]</code> Add support for JSDOM v27 (<a href="https://redirect.github.com/jestjs/jest/pull/15834">#15834</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[babel-jest]</code> Export the <code>TransformerConfig</code> interface (<a href="https://redirect.github.com/jestjs/jest/pull/15820">#15820</a>)</li> <li><code>[jest-config]</code> Fix <code>jest.config.ts</code> with TS loader specified in docblock pragma (<a href="https://redirect.github.com/jestjs/jest/pull/15839">#15839</a>)</li> </ul> <h2>30.1.3</h2> <h3>Fixes</h3> <ul> <li>Fix <code>unstable_mockModule</code> with <code>node:</code> prefixed core modules.</li> </ul> <h2>30.1.2</h2> <h3>Fixes</h3> <ul> <li><code>[jest-snapshot-utils]</code> Correct snapshot header regexp to work with newline across OSes (<a href="https://redirect.github.com/jestjs/jest/pull/15803">#15803</a>)</li> </ul> <h2>30.1.1</h2> <h3>Fixes</h3> <ul> <li><code>[jest-snapshot-utils]</code> Fix deprecated goo.gl snapshot warning not handling Windows end-of-line sequences (<a href="https://redirect.github.com/jestjs/jest/pull/15800">#15800</a>)</li> <li><code>[jest-snapshot-utils]</code> Improve messaging about goo.gl snapshot link change (<a href="https://redirect.github.com/jestjs/jest/pull/15821">#15821</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
b1d71cc926 |
Bump eslint-plugin-testing-library from 7.9.1 to 7.10.0 in /frontend (#1349)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 7.9.1 to 7.10.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.10.0</h2> <h1><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.9.2...v7.10.0">7.10.0</a> (2025-09-25)</h1> <h3>Features</h3> <ul> <li><strong>no-wait-for-multiple-assertions:</strong> add partial fix support (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/1090">#1090</a>) (<a href=" |
||
|
|
e0824ad571 |
Bump eslint-plugin-testing-library from 7.8.0 to 7.9.1 in /frontend (#1348)
Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 7.8.0 to 7.9.1. <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.9.1</h2> <h2><a href="https://github.com/testing-library/eslint-plugin-testing-library/compare/v7.9.0...v7.9.1">7.9.1</a> (2025-09-23)</h2> <h3>Bug Fixes</h3> <ul> <li>declare <code>.finally(...)</code> usages as handled in async rules (<a href="https://redirect.github.com/testing-library/eslint-plugin-testing-library/issues/1074">#1074</a>) (<a href=" |