Skip to content

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

Merged
BlackTiger007 merged 1 commit intomainfrom
renovate/non-breaking-updates
Feb 3, 2026
Merged

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 3, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@eslint/compat (source) ^2.0.0^2.0.1 age confidence devDependencies patch 2.0.2
@inlang/cli ^3.0.0^3.1.3 age confidence devDependencies patch 3.1.4
@sentry/sveltekit (source) ^10.32.1^10.35.0 age confidence dependencies minor 10.38.0 (+2)
@sveltejs/kit (source) ^2.49.2^2.50.0 age confidence devDependencies minor 2.50.2 (+1)
@sveltejs/vite-plugin-svelte (source) ^6.2.1^6.2.4 age confidence devDependencies patch
@tauri-apps/plugin-dialog ^2.4.2^2.6.0 age confidence dependencies minor
@tauri-apps/plugin-fs ^2.4.4^2.4.5 age confidence dependencies patch
@tauri-apps/plugin-opener ^2.5.2^2.5.3 age confidence dependencies patch
@types/node (source) ^24.10.4^24.10.9 age confidence devDependencies patch 24.10.10
better-sqlite3 ^12.5.0^12.6.2 age confidence dependencies minor
eslint-plugin-svelte (source) ^3.13.1^3.14.0 age confidence devDependencies minor
plyr (source) ^3.8.3^3.8.4 age confidence dependencies patch
prettier (source) ^3.7.4^3.8.0 age confidence devDependencies minor 3.8.1
sentry (source) 0.46.00.46.1 age confidence dependencies patch
sentry-log (source) 0.46.00.46.1 age confidence dependencies patch
serde_json 1.0.1451.0.149 age confidence dependencies patch
svelte (source) ^5.46.0^5.47.1 age confidence devDependencies minor 5.49.1 (+7)
tauri-plugin-dialog 2.4.22.6.0 age confidence dependencies minor
tauri-plugin-fs 2.4.42.4.5 age confidence dependencies patch
tauri-plugin-opener 2.5.22.5.3 age confidence dependencies patch
typescript-eslint (source) ^8.50.0^8.53.1 age confidence devDependencies minor 8.54.0
vite (source) ^7.3.0^7.3.1 age confidence devDependencies patch

Release Notes

eslint/rewrite (@​eslint/compat)

v2.0.1

Compare Source

Dependencies
  • The following workspace dependencies were updated
getsentry/sentry-javascript (@​sentry/sveltekit)

v10.35.0

Compare Source

Important Changes
  • feat(tanstackstart-react): Add sentryTanstackStart vite plugin to manage automatic source map uploads (#​18712)

    You can now configure source maps upload for TanStack Start using the sentryTanstackStart Vite plugin:

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@​sentry/tanstackstart-react';
    import { tanstackStart } from '@​tanstack/react-start/plugin/vite';
    
    export default defineConfig({
      plugins: [
        sentryTanstackStart({
          authToken: process.env.SENTRY_AUTH_TOKEN,
          org: 'your-org',
          project: 'your-project',
        }),
        tanstackStart(),
      ],
    });
Other Changes
  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#​18785)
  • feat(browser): Add shim package for logs (#​18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#​18855)
  • feat(core): Add ignored client report event drop reason (#​18815)
  • feat(logs): Add Log exports to browser and node packages (#​18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#​18852)
  • fix(core): Find the correct IP address regardless their case (#​18880)
  • fix(core): Check for AI operation id to detect a vercelai span (#​18823)
  • fix(ember): Use ES5 syntax in inline vendor scripts (#​18858)
  • fix(fetch): Shallow-clone fetch options to prevent mutation (#​18867)
Internal Changes
  • chore(ci): Use javascript-sdk-gitflow app instead of personal token (#​18829)
  • chore(deps): Bump @sveltejs/kit devDependency to 2.49.5 (#​18848)
  • chore(deps): Bump bundler plugins to ^4.6.2 (#​18822)
  • chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono (#​18806)
  • chore(test): Bump svelte dependencies (#​18850)
  • chore(core): Comment out Error tests in langchain (#​18837)
  • meta(changelog): Fix entry for tanstack start vite plugin (#​18883)
  • test(e2e): Add testing app for User Feedback (#​18877)
  • test(fastify): Verify if upstream error is fixed and won't regress (#​18838)

Work in this release was contributed by @​rreckonerr. Thank you for your contribution!

v10.34.0

Compare Source

v10.33.0

Compare Source

Important Changes
  • feat(core): Apply scope attributes to metrics (#​18738)

    You can now set attributes on the SDK's scopes which will be applied to all metrics as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    
    Sentry.withScope(scope => {
      scope.setAttribute('step', 'authentication');
    
      // scope attributes `is_admin`, `auth_provider` and `step` are added
      Sentry.metrics.count('clicks', 1, { attributes: { activeSince: 100 } });
      Sentry.metrics.gauge('timeSinceRefresh', 4, { unit: 'hour' });
    });
    
    // scope attributes `is_admin` and `auth_provider` are added
    Sentry.metrics.count('response_time', 283.33, { unit: 'millisecond' });
  • feat(tracing): Add Vercel AI SDK v6 support (#​18741)

    The Sentry SDK now supports the Vercel AI SDK v6. Tracing and error monitoring will work automatically with the new version.

  • feat(wasm): Add applicationKey option for third-party error filtering (#​18762)

    Adds support for applying an application key to WASM stack frames that can be then used in the thirdPartyErrorFilterIntegration for detection of first-party code.

    Usage:

    Sentry.init({
      integrations: [
        // Integration order matters: wasmIntegration needs to be before thirdPartyErrorFilterIntegration
        wasmIntegration({ applicationKey: 'your-custom-application-key' }), ←───┐
        thirdPartyErrorFilterIntegration({                                      
          behaviour: 'drop-error-if-exclusively-contains-third-party-frames',   ├─ matching keys
          filterKeys: ['your-custom-application-key'] ←─────────────────────────┘
        }),
      ],
    });
Other Changes
  • feat(cloudflare): Support propagateTraceparent (#​18569)
  • feat(core): Add ignoreSentryInternalFrames option to thirdPartyErrorFilterIntegration (#​18632)
  • feat(core): Add gen_ai.conversation.id attribute to OpenAI and LangGr… (#​18703)
  • feat(core): Add recordInputs/recordOutputs options to MCP server wrapper (#​18600)
  • feat(core): Support IPv6 hosts in the DSN (#​2996) (#​17708)
  • feat(deps): Bump bundler plugins to ^4.6.1 (#​17980)
  • feat(nextjs): Emit warning for conflicting treeshaking / debug settings (#​18638)
  • feat(nextjs): Print Turbopack note for deprecated webpack options (#​18769)
  • feat(node-core): Add isolateTrace option to node-cron instrumentation (#​18416)
  • feat(node): Use process.on('SIGTERM') for flushing in Vercel functions (#​17583)
  • feat(nuxt): Detect development environment and add dev E2E test (#​18671)
  • fix(browser): Forward worker metadata for third-party error filtering (#​18756)
  • fix(browser): Reduce number of visibilitystate and pagehide listeners (#​18581)
  • fix(browser): Respect tunnel in diagnoseSdkConnectivity (#​18616)
  • fix(cloudflare): Consume body of fetch in the Cloudflare transport (#​18545)
  • fix(core): Set op on ended Vercel AI spans (#​18601)
  • fix(core): Subtract performance.now() from browserPerformanceTimeOrigin fallback (#​18715)
  • fix(core): Update client options to allow explicit undefined (#​18024)
  • fix(feedback): Fix cases where the outline of inputs were wrong (#​18647)
  • fix(next): Ensure inline sourcemaps are generated for wrapped modules in Dev (#​18640)
  • fix(next): Wrap all Random APIs with a safe runner (#​18700)
  • fix(nextjs): Avoid Edge build warning from OpenTelemetry process.argv0 (#​18759)
  • fix(nextjs): Remove polynomial regular expression (#​18725)
  • fix(node-core): Ignore worker threads in OnUncaughtException (#​18689)
  • fix(node): relax Fastify's setupFastifyErrorHandler argument type (#​18620)
  • fix(nuxt): Allow overwriting server-side defaultIntegrations (#​18717)
  • fix(pino): Allow custom namespaces for msg and err (#​18597)
  • fix(react,solid,vue): Fix parametrization behavior for non-matched routes (#​18735)
  • fix(replay): Ensure replays contain canvas rendering when resumed after inactivity (#​18714)
  • fix(tracing): add gen_ai.request.messages.original_length attributes (#​18608)
  • ref(nextjs): Drop resolve dependency (#​18618)
  • ref(react-router): Use snake_case for span op names (#​18617)
Internal Changes
  • chore(bun): Fix install-bun.js version check and improve upgrade feedback (#​18492)
  • chore(changelog): Fix typo (#​18648)
  • chore(craft): Use version templating for aws layer (#​18675)
  • chore(deps): Bump IITM to ^2.0.1 (#​18599)
  • chore(e2e-tests): Upgrade @trpc/server and @trpc/client (#​18722)
  • chore(e2e): Unpin react-router-7-framework-spa to ^7.11.0 (#​18551)
  • chore(nextjs): Bump next version in dev deps (#​18661)
  • chore(node-tests): Upgrade @langchain/core (#​18720)
  • chore(react): Inline hoist-non-react-statics package (#​18102)
  • chore(size-limit): Add size checks for metrics and logs (#​18573)
  • chore(tests): Add unordered mode to cloudflare test runner (#​18596)
  • ci(deps): bump actions/cache from 4 to 5 (#​18654)
  • ci(deps): Bump actions/create-github-app-token from 2.2.0 to 2.2.1 (#​18656)
  • ci(deps): bump actions/upload-artifact from 5 to 6 (#​18655)
  • ci(deps): bump peter-evans/create-pull-request from 7.0.9 to 8.0.0 (#​18657)
  • doc: E2E testing documentation updates (#​18649)
  • ref(core): Extract and reuse getCombinedScopeData helper (#​18585)
  • ref(core): Remove dependence between performance.timeOrigin and performance.timing.navigationStart (#​18710)
  • ref(core): Streamline and test browserPerformanceTimeOrigin (#​18708)
  • ref(core): Strengthen browserPerformanceTimeOrigin reliability check (#​18719)
  • ref(core): Use serializeAttributes for metric attribute serialization (#​18582)
  • ref(node): Remove duplicate function isCjs (#​18662)
  • test(core): Improve unit test performance for offline transport tests (#​18628)
  • test(core): Use fake timers in promisebuffer tests to ensure deterministic behavior (#​18659)
  • test(e2e): Add e2e metrics tests in Next.js 16 (#​18643)
  • test(e2e): Pin agents package in cloudflare-mcp test (#​18609)
  • test(e2e): Pin solid/vue tanstack router to 1.41.8 (#​18610)
  • test(nestjs): Add canary test for latest (#​18685)
  • test(node-native): Increase worker block timeout (#​18683)
  • test(nuxt): Fix nuxt-4 dev E2E test (#​18737)
  • test(tanstackstart-react): Add canary test for latest (#​18686)
  • test(vue): Added canary and latest test variants to Vue tests (#​18681)

Work in this release was contributed by @​G-Rath, @​gianpaj, @​maximepvrt, @​Mohataseem89, @​sebws, and @​xgedev. Thank you for your contributions!

sveltejs/kit (@​sveltejs/kit)

v2.50.0

Compare Source

Minor Changes
  • breaking: remove buttonProps from experimental remote form functions; use e.g. <button {...myForm.fields.action.as('submit', 'register')}>Register</button> button instead (#​15144)
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v6.2.4

Compare Source

Patch Changes
  • fix(hmr): ensure that svelte files are recompiled and updated css modules returned correctly when reported out of order (#​1258)

v6.2.3

Compare Source

Patch Changes
  • fix(filter): ignore zero-tagged ids per rollup convention (#​1255)

v6.2.2

Compare Source

Patch Changes
  • Update experimental support for rolldown-vite to vite 8 beta (#​1246)

  • perf: switch from debug to obug (smaller, esm-only) (#​1241)

tauri-apps/plugins-workspace (@​tauri-apps/plugin-dialog)

v2.6.0

Compare Source

v2.5.0

Compare Source

WiseLibs/better-sqlite3 (better-sqlite3)

v12.6.2

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.6.1...v12.6.2

v12.6.0

Compare Source

What's Changed
  • Update SQLite to version 3.51.2 in #​1436

Full Changelog: WiseLibs/better-sqlite3@v12.5.0...v12.6.0

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

v3.14.0

Compare Source

Minor Changes
sampotts/plyr (plyr)

v3.8.4

Compare Source

  • Fix import path for ESM import in package.json (fixes #​2882)
  • Hide default vimeo captions (fixes #​877)
prettier/prettier (prettier)

v3.8.0

Compare Source

diff

🔗 Release note

getsentry/sentry-rust (sentry)

v0.46.1

Compare Source

Improvements
  • Make it possible to == Transaction/Span/TransactionOrSpan (#​942)
Dependencies
  • Update reqwest from 0.12.15 to 0.12.25 (#​951)
serde-rs/json (serde_json)

v1.0.149

Compare Source

  • Align arbitrary_precision number strings with zmij's formatting (#​1306, thanks @​b41sh)

v1.0.148

Compare Source

  • Update zmij dependency to 1.0

v1.0.147

Compare Source

  • Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance (#​1304)

v1.0.146

Compare Source

sveltejs/svelte (svelte)

v5.47.1

Compare Source

Patch Changes
  • fix: trigger selectedcontent reactivity (#​17486)

v5.47.0

Compare Source

Minor Changes
  • feat: customizable <select> elements (#​17429)
Patch Changes
  • fix: mark subtree of svelte boundary as dynamic (#​17468)

  • fix: don't reset static elements with debug/snippets (#​17477)

typescript-eslint/typescript-eslint (typescript-eslint)

v8.53.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.53.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.52.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/vite (vite)

v7.3.1

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 Feb 3, 2026
@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud bot commented Feb 3, 2026

@BlackTiger007 BlackTiger007 merged commit fa79488 into main Feb 3, 2026
6 of 7 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

🎉 This PR is included in version 0.41.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