[PR #65] [CLOSED] deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.10.0 #66

Closed
opened 2026-02-26 12:17:06 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/asalimonov/authelia-admin/pull/65
Author: @dependabot[bot]
Created: 2/9/2026
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/inlang/paraglide-js-2.10.0


📝 Commits (1)

  • a3796c4 deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.10.0

📊 Changes

2 files changed (+37 additions, -41 deletions)

View changed files

📝 package-lock.json (+36 -40)
📝 package.json (+1 -1)

📄 Description

Bumps @inlang/paraglide-js from 2.7.0 to 2.10.0.

Changelog

Sourced from @​inlang/paraglide-js's changelog.

2.10.0

Minor Changes

  • fc66ee1: Add type-safe literal unions for match variants in generated message typings opral/paraglide-js#538.

    For example, the following minimal message definition:

    {
    	"auth_password_error": [
    		{
    			"match": {
    				"type=empty": "You must provide a password"
    			}
    		}
    	]
    }
    

    Before:

    m.auth_password_error({ type: "typo" }); // ✅ OK (typed as NonNullable<unknown>)
    

    After:

    m.auth_password_error({ type: "typo" }); // 💥 Type error
    

2.9.1

Patch Changes

  • c43effb: Update @inlang/sdk to v2.6.2, which removes a file queue settlement that could prevent the compiler from exiting in some environments. See opral/paraglide-js#598.

2.9.0

Minor Changes

  • badca6a: Add the experimental experimentalStaticLocale compiler option for per-locale tree-shaking (see opral/paraglide-js#88).
  • a0c5665: Prune async_hooks import from generated server output when async local storage is disabled (fixes opral/paraglide-js#539).

Patch Changes

  • 9ae2381: Add @see documentation links to runtime and server APIs, making it easier for developers to find relevant documentation directly from their IDE.
  • 867ea44: Avoid cyclic fallback maps when a language-only locale exists alongside a regional base locale.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​inlang/paraglide-js since your current version.


Dependabot compatibility score

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 commands and options

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/asalimonov/authelia-admin/pull/65 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/9/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/inlang/paraglide-js-2.10.0` --- ### 📝 Commits (1) - [`a3796c4`](https://github.com/asalimonov/authelia-admin/commit/a3796c43f97cd90862bdf32ce5519c92e16ed403) deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.10.0 ### 📊 Changes **2 files changed** (+37 additions, -41 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+36 -40) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [@inlang/paraglide-js](https://github.com/opral/paraglide-js) from 2.7.0 to 2.10.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/opral/paraglide-js/blob/main/CHANGELOG.md"><code>@​inlang/paraglide-js</code>'s changelog</a>.</em></p> <blockquote> <h2>2.10.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>fc66ee1: Add type-safe literal unions for match variants in generated message typings <a href="https://redirect.github.com/opral/paraglide-js/issues/538">opral/paraglide-js#538</a>.</p> <p>For example, the following minimal message definition:</p> <pre lang="json"><code>{ &quot;auth_password_error&quot;: [ { &quot;match&quot;: { &quot;type=empty&quot;: &quot;You must provide a password&quot; } } ] } </code></pre> <p>Before:</p> <pre lang="ts"><code>m.auth_password_error({ type: &quot;typo&quot; }); // ✅ OK (typed as NonNullable&lt;unknown&gt;) </code></pre> <p>After:</p> <pre lang="ts"><code>m.auth_password_error({ type: &quot;typo&quot; }); // 💥 Type error </code></pre> </li> </ul> <h2>2.9.1</h2> <h3>Patch Changes</h3> <ul> <li>c43effb: Update <code>@inlang/sdk</code> to v2.6.2, which removes a file queue settlement that could prevent the compiler from exiting in some environments. See <a href="https://redirect.github.com/opral/paraglide-js/issues/598">opral/paraglide-js#598</a>.</li> </ul> <h2>2.9.0</h2> <h3>Minor Changes</h3> <ul> <li>badca6a: Add the experimental <code>experimentalStaticLocale</code> compiler option for per-locale tree-shaking (see <a href="https://redirect.github.com/opral/paraglide-js/issues/88#issuecomment-3634754638">opral/paraglide-js#88</a>).</li> <li>a0c5665: Prune async_hooks import from generated server output when async local storage is disabled (fixes <a href="https://redirect.github.com/opral/paraglide-js/issues/539">opral/paraglide-js#539</a>).</li> </ul> <h3>Patch Changes</h3> <ul> <li>9ae2381: Add <code>@see</code> documentation links to runtime and server APIs, making it easier for developers to find relevant documentation directly from their IDE.</li> <li>867ea44: Avoid cyclic fallback maps when a language-only locale exists alongside a regional base locale.</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/opral/paraglide-js/commits">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@​inlang/paraglide-js</code> since your current version.</p> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@inlang/paraglide-js&package-manager=npm_and_yarn&previous-version=2.7.0&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 12:17:06 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/authelia-admin#66
No description provided.