Skip to content

fix(deps): update non-breaking updates#613

Merged
BlackTiger007 merged 1 commit intomainfrom
renovate/non-breaking-updates
Apr 6, 2026
Merged

fix(deps): update non-breaking updates#613
BlackTiger007 merged 1 commit intomainfrom
renovate/non-breaking-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 3, 2026

This PR contains the following updates:

Package Change Age Confidence
@inlang/cli ^3.1.7^3.1.9 age confidence
@inlang/paraglide-js (source) ^2.15.0^2.15.1 age confidence
@trpc/client (source) ^11.13.4^11.14.1 age confidence
eslint-plugin-svelte (source) ^3.15.2^3.16.0 age confidence
marked (source) ^17.0.4^17.0.5 age confidence
svelte (source) ^5.54.0^5.54.1 age confidence

Release Notes

opral/paraglide-js (@​inlang/paraglide-js)

v2.15.1

Patch Changes
  • 2e8b5a1: Add markup documentation and message format plugin references to compiled README
  • 8964e8b: Update @inlang/sdk to 2.9.1.

v2.15.0

Minor Changes
  • 862433c: Add toLocale() for case-insensitive locale normalization, make isLocale()
    strictly match canonical project locales, and return canonical locale values
    across runtime locale helpers.

    // configured locales: ["fr", "en-US"]
    
    isLocale("FR"); // false
    toLocale("FR"); // "fr"
    
    isLocale("en-us"); // false
    toLocale("en-us"); // "en-US"

    Runtime helpers that resolve locales from external input now return canonical
    project locale values as well.

v2.14.1

Patch Changes
  • 7d29058: Remove dead JSDoc @import stripping from the runtime generator.
  • 46ac447: Upgrade @inlang/sdk to v2.8.0.

v2.14.0

Minor Changes
  • 067509d: Improve generated runtime typing by centralizing shared type definitions, avoiding strict checkJs locale type errors, and moving middleware locale-splitting state under globalThis.__paraglide.ssr.
Patch Changes
  • a17af28: Remove stale telemetry internals that were no longer used by the CLI or compiler.

v2.13.2

Patch Changes
  • 2e18cc0: Fix compiler code generation for formatter option literals so Intl numeric and boolean options are emitted with the correct literal types.

    This resolves strict checkJs/svelte-check errors where generated number() options like minimumFractionDigits were emitted as strings and caused Type 'string' is not assignable to type 'number'.

v2.13.1

Patch Changes
  • 9d79aff: Fix single-locale message generation to avoid emitting an unused locale variable in strict TypeScript checkJs setups. This removes TS6133 ('locale' is declared but its value is never read) warnings for generated message files when only one locale is configured.

    Add a regression type test that asserts single-locale generated messages do not produce this warning.

v2.13.0

Minor Changes
  • 7185902: Add a new runtime utility: getTextDirection(locale?).

    • Returns "ltr" or "rtl" for a given locale.
    • Defaults to the current locale from getLocale() when no locale is provided.
    • Uses Intl.Locale text info when available, with a safe RTL fallback for runtimes without that API.

    Also updates SvelteKit example/docs to show setting both %lang% and %dir% in app.html using runtime APIs.

v2.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/*

v2.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.

trpc/trpc (@​trpc/client)

v11.14.1

Compare Source

What's Changed

Full Changelog: trpc/trpc@v11.14.0...v11.14.1

v11.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: trpc/trpc@v11.13.4...v11.14.0

v11.13.4

Compare Source

v11.13.3

Compare Source

v11.13.2

Compare Source

What's Changed
New Contributors

Full Changelog: trpc/trpc@v11.12.0...v11.13.2

v11.13.1

Compare Source

v11.13.0

Compare Source

v11.12.1

Compare Source

v11.12.0

Compare Source

sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.16.0

Compare Source

Minor Changes

v3.15.2

Compare Source

Patch Changes

v3.15.1

Compare Source

Patch Changes
  • #​1477 8c5f51e Thanks @​ota-meshi! - fix(no-top-level-browser-globals): false positive when browser globals appear inside TypeScript generic type parameters (e.g. $state<HTMLElement>(...)).

  • #​1467 d81b556 Thanks @​marekdedic! - fix(no-navigation-without-resolve): fixed nullish link shorthands not being allowed

v3.15.0

Compare Source

Minor Changes
markedjs/marked (marked)

v17.0.5

Compare Source

Bug Fixes
  • Fix catastrophic backtracking (ReDoS) in link/reflink label regex (#​3918) (4625980)
  • prevent quadratic complexity in emStrongLDelim regex (#​3906) (c732dd2)
  • prevent single-tilde strikethrough false positives (#​3910) (5e03369)
  • re-assign tokenizer.lexer and renderer.parser at start of each parse call (#​3907) (f3a3ec0)
  • trim trailing whitespace from lheading text (#​3920) (3ea7e88)

v17.0.4

Compare Source

Bug Fixes

v17.0.3

Compare Source

Bug Fixes

v17.0.2

Compare Source

sveltejs/svelte (svelte)

v5.54.1

Compare Source

Patch Changes
  • fix: hydration comments during hmr (#​17975)

  • fix: null out effect.b in destroy_effect (#​17980)

  • fix: group sync statements (#​17977)

  • fix: defer batch resolution until earlier intersecting batches have committed (#​17162)

  • fix: properly invoke iterator.return() during reactivity loss check (#​17966)

  • fix: remove trailing semicolon from {@​const} tag printer (#​17962)

v5.54.0

Compare Source

Minor Changes
  • feat: allow css, runes, customElement compiler options to be functions (#​17951)
Patch Changes
  • fix: reinstate reactivity loss tracking (#​17801)

v5.53.13

Compare Source

Patch Changes
  • fix: ensure $inspect after top level await doesn't break builds (#​17943)

  • fix: resume inert effects when they come from offscreen (#​17942)

  • fix: don't eagerly access not-yet-initialized functions in template (#​17938)

  • fix: discard batches made obsolete by commit (#​17934)

  • fix: ensure "is standalone child" is correctly reset (#​17944)

  • fix: remove nodes in boundary when work is pending and HMR is active (#​17932)


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Apr 3, 2026
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Apr 3, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Progress: resolved 1, reused 0, downloaded 0, added 0
 ERR_PNPM_FETCH_401  GET https://npm.pkg.github.com/@seenivers%2Fapi: Unauthorized - 401

This error happened while installing a direct dependency of /tmp/renovate/repos/github/Seenivers/App

No authorization header was set for the request.

These authorization settings were found:
@jsr:registry=https://npm.jsr.io/
@seenivers:registry=https://npm.pkg.github.com

@codacy-production
Copy link
Copy Markdown

codacy-production bot commented Apr 3, 2026

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Metrics 0 complexity

Metric Results
Complexity 0

View in Codacy

TIP This summary will be updated as you push new changes. Give us feedback

@renovate renovate bot force-pushed the renovate/non-breaking-updates branch 2 times, most recently from dbce73d to 31efd78 Compare April 3, 2026 21:35
@renovate renovate bot changed the title chore(deps): update dependency marked to ^17.0.5 fix(deps): update non-breaking updates Apr 3, 2026
@renovate renovate bot force-pushed the renovate/non-breaking-updates branch 3 times, most recently from def6868 to 9f6b01d Compare April 4, 2026 12:46
@renovate renovate bot force-pushed the renovate/non-breaking-updates branch from 9f6b01d to 62c6b3e Compare April 4, 2026 16:53
@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud bot commented Apr 4, 2026

@BlackTiger007 BlackTiger007 merged commit 95822dd into main Apr 6, 2026
6 of 9 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 7, 2026

🎉 This PR is included in version 0.42.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant