fix(deps): update non-breaking updates#618
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
|
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 0 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
8deadc2 to
cab0430
Compare
35db3b0 to
e5ca903
Compare
b2458ee to
41599d6
Compare
41599d6 to
8acdff7
Compare
|
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:
^2.0.5→^2.1.0^3.1.10→^3.1.11^2.16.1→^2.18.02.18.1^10.50.0→^10.53.110.54.0^7.0.0→^7.1.2^4.2.4→^4.3.0^2.10.1→^2.11.0^2.10.1→^2.11.12.11.2^2.7.0→^2.7.1^2.5.0→^2.5.1^2.5.3→^2.5.4^11.16.0→^11.17.0^24.12.2→^24.12.4^12.9.0→^12.10.0^10.2.1→^10.3.010.4.0^17.5.0→^17.6.0^3.5.1→^3.5.20.47.0→0.48.20.47.0→0.48.2^4.4.6→^4.4.8^4.2.4→^4.3.02.5.6→2.6.12.6.22.7.0→2.7.12.5.0→2.5.12.5.3→2.5.4^8.59.1→^8.59.38.60.0(+1)^8.0.10→^8.0.128.0.14(+1)^4.3.6→^4.4.3Release Notes
eslint/rewrite (@eslint/compat)
v2.1.0Compare Source
Features
includeIgnoreFile()to config-helpers (#430) (9b51352)v2.0.5Compare Source
Dependencies
opral/paraglide-js (@inlang/paraglide-js)
v2.18.0Minor Changes
62d37f0: Add arelativetimedeclaration formatter backed byIntl.RelativeTimeFormat.Patch Changes
a5f31bc: Update@inlang/sdkto 2.9.3.d2bf729: Marktypescriptas an optional peer dependency and show a clear error whenemitTsDeclarationsis enabled without TypeScript installed.ea8343f: Fix race condition whereparaglideVitePlugin(and the rollup/rolldown/rspack/esbuild plugins) wiped the output directory on every fresh process, racing concurrent reads from SSR/prerender modules and sibling Vite instances. The plugin now seedspreviousCompilationfrom existing on-disk hashes on the first compile, so warm restarts are a no-op (zero writes when inputs haven't changed) and the recursive wipe is gone. The webpack plugin's wipe behavior is unchanged but now also deletes orphaned files on its first compile. Closes #659.v2.17.0Minor Changes
109e588: Add--output-structureoption to the compile command.v2.16.1Patch Changes
3bb446a: Update@inlang/sdkto2.9.2.v2.16.0Minor Changes
8401dae: Add newparaglide-js compileCLI flags for compiler options that werepreviously only available through the programmatic API or bundler plugins.
You can now:
.gitignore,.prettierignore, andREADME.md.d.tsfilesisServerexpression for runtime tree-shakingThese options are forwarded through regular and
--watchcompiles so the CLImatches the existing compiler behavior more closely.
v2.15.3Patch Changes
b10186d: Fix numeric input match inference so generated message typings accept both numeric and string literal forms for values likeinput=1, matching runtime behavior without relying on broad loose coercion.getsentry/sentry-javascript (@sentry/sveltekit)
v10.53.1Compare Source
Internal Changes
Bundle size 📦
v10.53.0Compare Source
Important Changes
feat(core): Add
streamGenAiSpansoptions to stream gen_ai spans (#20785)Adds a new
streamGenAiSpansoption that controls howgen_aispans aresent to Sentry. When set, the SDK extracts all
gen_aispans out of atransaction and sends them as v2 envelope items.
Enable this option if gen_ai spans are being dropped because the transaction payload exceeds size limits.
Other Changes
addConsoleInstrumentationFilterutility (#20790)applicationKeytoBuildTimeOptionsBase(#20789)applicationKeyoption (#20794)@sentry-internal/node-cpu-profilerto 2.4.0 (#20720)Internal Changes
Work in this release was contributed by @dmmulroy and @SAY-5. Thank you for your contributions!
Bundle size 📦
v10.52.0Compare Source
Important Changes
Beta release of the official Hono Sentry SDK
This release marks the beta release of the
@sentry/honoSentry SDK. For details on how to use it, check out theSentry Hono SDK docs. Please reach out on
GitHub if you have any feedback or concerns.
feat(browser): Add
ingest_settingsto v2 log envelope payload (#20453)Inference of user data (e.g. IP address, browser name/version) on log events is now gated behind the
sendDefaultPiioption. Previously, this data was always inferred by default.Other Changes
ingest_settingsto v2 metrics envelope payload (#20454)ignoreSpans(#20595)processSegmentSpanto Deno context integration (#20613)processSegmentSpanto node context integration (#20678)Internal Changes
bundle-analyzer-scenariosdev packages (#20680)npmrcpointing to Verdaccio (#20611)Work in this release was contributed by @sbs44. Thank you for your contribution!
Bundle size 📦
v10.51.0Compare Source
Important Changes
feat(cloudflare): Add trace propagation for RPC method calls (#20343)
Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects.
This feature is opt-in and requires setting
enableRpcTracePropagation: truein your SDK configuration:feat(hono)!: Change setup for
@sentry/hono/node(initin external file) (#20497)To improve Node.js instrumentation, the
sentry()middleware exported from@sentry/hono/nodeno longer accepts configuration options.Instead, you must configure the SDK by calling
Sentry.init()in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:feat(nitro): Add
@sentry/nitroSDK (#19224)A new
@sentry/nitropackage provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading viawithSentryConfig.Read more in the Nitro SDK docs and the Nitro SDK readme.
Other Changes
brace-expansionpeer-dep (#20198)binscripts (#20570)ignoreSpans(#20513)SENTRY_DSN(#20528)ingest_settingsto span v2 envelope payload (#20411)httpContextIntegration(#20464)ignoreSpans(#20512)*http.route attribute on segment spans (#20471)ignoreSpans(#20514)svelteKitSpansEnhancementintegration (#20496)isSentryRequesthandles subdomains properly (#20530)Configuration
📅 Schedule: (in timezone Europe/Berlin)
🚦 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.