fix(deps): update non-breaking updates#82
Merged
BlackTiger007 merged 1 commit intomainfrom Jan 14, 2026
Merged
Conversation
Contributor
Author
|
ae5d834 to
e04eefe
Compare
e04eefe to
e995cda
Compare
|
🎉 This PR is included in version 2.2.2 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^9.38.0→^9.39.2^2.4.0→^2.7.12.8.0^6.0.0→^6.0.1^10.22.0→^10.32.110.33.0^2.48.3→^2.49.32.49.4^6.2.1→^6.2.26.2.4(+1)^4.1.16→^4.1.18^2.9.0→^2.9.1^2.9.2→^2.9.6^12.4.1→^12.5.012.6.0^5.3.10→^5.5.14^0.31.6→^0.31.8^0.44.7→^0.45.1^9.38.0→^9.39.2^3.12.5→^3.13.13.14.00.4.28→0.4.29^5.4.296→^5.4.530^3.6.2→^3.7.4^3.4.0→^3.4.1^0.7.1→^0.7.20.45.0→0.46.00.46.10.45.0→0.46.00.46.11.0.145→1.0.149^5.43.0→^5.46.15.46.3^4.3.3→^4.3.5^4.1.16→^4.1.182.9.2→2.9.52.5.1→2.5.3^8.46.2→^8.52.08.53.0^7.1.12→^7.3.1^4.1.12→^4.3.5Release Notes
eslint/eslint (@eslint/js)
v9.39.2Compare Source
opral/paraglide-js (@inlang/paraglide-js)
v2.7.1Patch Changes
@inlang/sdkto2.4.10which contains a fix for dynamically loading plugins in bun opral/monorepo#3787.v2.7.0Minor Changes
Add an opt-in
emitTsDeclarationscompiler flag to generate.d.tsfiles for the compiled output.This is useful when
allowJs: truecannot be set in yourtsconfig.json(e.g., due to project constraints or conflicting compiler options).Usage:
Or via CLI:
Note: Enabling this option reduces compiler speed because TypeScript needs to generate declaration files for all output modules.
Closes opral/inlang-paraglide-js#566
Closes opral/inlang-paraglide-js#238
Closes opral/inlang-paraglide-js#160
Example output (locale-modules):
src/paraglide/ messages/ _index.js + _index.d.ts de.js + de.d.ts en.js + en.d.ts messages.js + messages.d.tsv2.6.0Minor Changes
3d6259c: AddLocalizedStringbranded type for compile-time i18n safety.Message functions now return
LocalizedStringinstead ofstring, enabling TypeScript users to distinguish between translated and untranslated strings at compile time. This is fully backward compatible since branded types are assignable to their base type.4bde3eb: Add optional chaining to compiled message inputs so missing inputs no longer throw at runtime; include tests covering single- and multi-variant messages.Closes opral/inlang-paraglide-js#568
Example:
v2.5.072d1c53: Ensure the CLI honours allowJs flags defined in extended or referenced tsconfig files instead of prompting unnecessarily.Refs opral/inlang-paraglide-js#560.
c59da26: fix: make locale matching case-insensitiveCloses opral/inlang-paraglide-js#549
This fixes an issue that locales containing uppercase characters like
pt-BRfailed to load when usingextractLocaleFromNavigatororextractLocaleFromHeader.The issue occurred because these functions converted locales to lowercase, while the comparison logic inside
assertIsLocaleandisLocalewasn't case-sensitive.List of changes:
assertIsLocale()andisLocale()are fully case-insensitive.assertIsLocale()return the canonical-cased locale fromlocalesinstead of the raw input.assertIsLocale()andisLocale().9735b82: Fix fallback assignment generation so locale chains emit dependencies first and avoid "Block-scoped variable used before its declaration" errors. See opral/inlang-paraglide-js#507 for details.poppa/sveltekit-svg (@poppanator/sveltekit-svg)
v6.0.1Compare Source
Fixed
There was a bug when mutiple files of different types than SVG was imported
in a module. The other file types was let through to the SVG parser, which
failed miserably at this point.
For a background, see issue #74
getsentry/sentry-javascript (@sentry/sveltekit)
v10.32.1Compare Source
implementationfield optional (hashroutes) (#18564)Internal Changes
cloudflare-astroe2e test (#18567)v10.32.0Compare Source
Important Changes
feat(core): Apply scope attributes to logs (#18184)
You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only
string,numberandbooleanattribute values are supported.feat(replay): Add Request body with
attachRawBodyFromRequestoption (#18501)To attach the raw request body (from
Requestobjects passed as the firstfetchargument) to replay events, you can now use theattachRawBodyFromRequestoption in the Replay integration:feat(tanstackstart-react): Trace server functions (#18500)
To enable tracing for server-side requests, you can now explicitly define a server entry point in your application and wrap your request handler with
wrapFetchWithSentry.feat(vue): Add TanStack Router integration (#18547)
The
@sentry/vuepackage now includes support for TanStack Router. UsetanstackRouterBrowserTracingIntegrationto automatically instrument pageload and navigation transactions with parameterized routes:Other Changes
Internal Changes
http.response_content_length_uncompressed(#18536)v10.31.0Compare Source
Important Changes
The
graphqlClientIntegrationnow supports GraphQL persisted operations (queries). When a persisted query is detected, the integration will capture the operation hash and version as span attributes:graphql.persisted_query.hash.sha256- The SHA-256 hash of the persisted querygraphql.persisted_query.version- The version of the persisted query protocolAdditionally, the
graphql.documentattribute format has changed to align with OpenTelemetry semantic conventions. It now contains only the GraphQL query string instead of the full JSON request payload.Before:
After:
Other Changes
propagateTraceparentoption (#18476)captureExceptionandcaptureMessageparameter types (#18521)captureExceptionandcaptureMessageparameter types (#18509)@sentry/vite-pluginand@sentry/rollup-pluginto 4.6.1 (#18349)fromLocationexistence before reporting pageload (#18463)Internal Changes
Work in this release was contributed by @sebws and @TBeeren. Thank you for your contributions!
Bundle size 📦
v10.30.0Compare Source
Internal Changes
@sentry/types(#18429)Bundle size 📦
v10.29.0Compare Source
Important Changes
We expanded the supported version range for
@solidjs/routerto include0.14.xand0.15.xversions.Other Changes
msgin pino integration (#18389)Internal Changes
Bundle size 📦
v10.28.0Compare Source
Important Changes
matcherparameter optional inmakeMultiplexedTransport(#10798)The
matcherparameter inmakeMultiplexedTransportis now optional with a sensible default. This makes it much easier to use the multiplexed transport for sending events to multiple DSNs based on runtime configuration.Before:
After:
The default matcher looks for routing information in
event.extra[MULTIPLEXED_TRANSPORT_EXTRA_KEY]. You can still provide a custom matcher function for advanced use cases.This release adds support for
cacheComponentson turbopack builds. We are working on adding support for this feature in webpack builds as well.Other Changes
isolateTraceoption toSentry.withMonitor()(#18079)waitUntildetection (#18336)continueTracedoesn't propagate given trace ID if active span exists (#18328)Internal Changes
BUGBOT.mdrules to flag invalid op and origin values during review (#18352)Bundle size 📦
Configuration
📅 Schedule: Branch creation - "before 5am" in timezone Europe/Berlin, 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.
This PR was generated by Mend Renovate. View the repository job log.