[PR #69] [CLOSED] deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.12.0 #71

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • 36f1d4c deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.12.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.12.0.

Changelog

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

2.12.0

Minor Changes

  • af0084e: Add route-level locale strategy overrides via routeStrategies.

    You can now define per-route strategy behavior (first match wins), including:

    • strategy overrides for paths like /dashboard/* and /rpc/*
    • exclude: true to skip i18n middleware behavior for paths like /api/*

2.11.0

Minor Changes

  • d1c86fb: Improve emitted message-module output by gating middleware locale-splitting hooks behind experimentalMiddlewareLocaleSplitting.

    When the option is disabled (default), generated message functions no longer emit:

    • if (experimentalMiddlewareLocaleSplitting && isServer === false) { ...__paraglide_ssr... }
    • trackMessageCall(...)
    • related runtime imports (experimentalMiddlewareLocaleSplitting, isServer, trackMessageCall)

    When experimentalMiddlewareLocaleSplitting is enabled, the existing SSR/middleware injection flow is preserved.

  • 90a1580: Add compiler support for markup messages with a new message.parts() API.

    Messages that contain markup now compile to framework-neutral parts (text, markup-start, markup-end, and markup-standalone) while message() continues to return plain strings.

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:

... (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/69 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/16/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/inlang/paraglide-js-2.12.0` --- ### 📝 Commits (1) - [`36f1d4c`](https://github.com/asalimonov/authelia-admin/commit/36f1d4c06a2a6234dd3df3d8fda1f51ce99cbe3a) deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.12.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.12.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.12.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>af0084e: Add route-level locale strategy overrides via <code>routeStrategies</code>.</p> <p>You can now define per-route strategy behavior (first match wins), including:</p> <ul> <li><code>strategy</code> overrides for paths like <code>/dashboard/*</code> and <code>/rpc/*</code></li> <li><code>exclude: true</code> to skip i18n middleware behavior for paths like <code>/api/*</code></li> </ul> </li> </ul> <h2>2.11.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>d1c86fb: Improve emitted message-module output by gating middleware locale-splitting hooks behind <code>experimentalMiddlewareLocaleSplitting</code>.</p> <p>When the option is disabled (default), generated message functions no longer emit:</p> <ul> <li><code>if (experimentalMiddlewareLocaleSplitting &amp;&amp; isServer === false) { ...__paraglide_ssr... }</code></li> <li><code>trackMessageCall(...)</code></li> <li>related runtime imports (<code>experimentalMiddlewareLocaleSplitting</code>, <code>isServer</code>, <code>trackMessageCall</code>)</li> </ul> <p>When <code>experimentalMiddlewareLocaleSplitting</code> is enabled, the existing SSR/middleware injection flow is preserved.</p> </li> <li> <p>90a1580: Add compiler support for markup messages with a new <code>message.parts()</code> API.</p> <p>Messages that contain markup now compile to framework-neutral parts (<code>text</code>, <code>markup-start</code>, <code>markup-end</code>, and <code>markup-standalone</code>) while <code>message()</code> continues to return plain strings.</p> </li> </ul> <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></code></pre> </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.12.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 changed title from [PR #69] deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.12.0 to [PR #69] [CLOSED] deps(deps): Bump @inlang/paraglide-js from 2.7.0 to 2.12.0 2026-03-15 02:28:37 +03:00
kerem closed this issue 2026-03-15 02:28:47 +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#71
No description provided.