Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the minor group with 10 updates:

Package From To
@sentry/sveltekit 10.25.0 10.26.0
@iconify-json/material-symbols 1.2.46 1.2.48
@iconify-json/simple-icons 1.2.59 1.2.60
@sveltejs/adapter-vercel 6.1.1 6.1.2
@sveltejs/kit 2.48.5 2.49.0
@typescript-eslint/eslint-plugin 8.46.4 8.47.0
@typescript-eslint/parser 8.46.4 8.47.0
svelte 5.43.8 5.43.14
typescript-eslint 8.46.4 8.47.0
vite 7.2.2 7.2.4

Updates @sentry/sveltekit from 10.25.0 to 10.26.0

Release notes

Sourced from @​sentry/sveltekit's releases.

10.26.0

Important Changes

  • feat(core): Instrument LangGraph Agent (#18114)

Adds support for instrumenting LangGraph StateGraph operations in Node. The LangGraph integration can be configured as follows:

Sentry.init({
  dsn: '__DSN__',
  sendDefaultPii: false, // Even with PII disabled globally
  integrations: [
    Sentry.langGraphIntegration({
      recordInputs: true, // Force recording input messages
      recordOutputs: true, // Force recording response text
    }),
  ],
});
  • feat(cloudflare/vercel-edge): Add manual instrumentation for LangGraph (#18112)

Instrumentation for LangGraph in Cloudflare Workers and Vercel Edge environments is supported by manually calling instrumentLangGraph:

import * as Sentry from '@sentry/cloudflare'; // or '@sentry/vercel-edge'
import { StateGraph, START, END, MessagesAnnotation } from '@langchain/langgraph';
// Create and instrument the graph
const graph = new StateGraph(MessagesAnnotation)
.addNode('agent', agentFn)
.addEdge(START, 'agent')
.addEdge('agent', END);
Sentry.instrumentLangGraph(graph, {
recordInputs: true,
recordOutputs: true,
});
const compiled = graph.compile({ name: 'weather_assistant' });
await compiled.invoke({
messages: [{ role: 'user', content: 'What is the weather in SF?' }],
});

  • feat(node): Add OpenAI SDK v6 support (#18244)

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/sveltekit's changelog.

10.26.0

Important Changes

  • feat(core): Instrument LangGraph Agent (#18114)

Adds support for instrumenting LangGraph StateGraph operations in Node. The LangGraph integration can be configured as follows:

Sentry.init({
  dsn: '__DSN__',
  sendDefaultPii: false, // Even with PII disabled globally
  integrations: [
    Sentry.langGraphIntegration({
      recordInputs: true, // Force recording input messages
      recordOutputs: true, // Force recording response text
    }),
  ],
});
  • feat(cloudflare/vercel-edge): Add manual instrumentation for LangGraph (#18112)

Instrumentation for LangGraph in Cloudflare Workers and Vercel Edge environments is supported by manually calling instrumentLangGraph:

import * as Sentry from '@sentry/cloudflare'; // or '@sentry/vercel-edge'
import { StateGraph, START, END, MessagesAnnotation } from '@langchain/langgraph';
// Create and instrument the graph
const graph = new StateGraph(MessagesAnnotation)
.addNode('agent', agentFn)
.addEdge(START, 'agent')
.addEdge('agent', END);
Sentry.instrumentLangGraph(graph, {
recordInputs: true,
recordOutputs: true,
});
const compiled = graph.compile({ name: 'weather_assistant' });
await compiled.invoke({
messages: [{ role: 'user', content: 'What is the weather in SF?' }],
});

  • feat(node): Add OpenAI SDK v6 support (#18244)

Other Changes

... (truncated)

Commits
  • 8ab6227 release: 10.26.0
  • d33c795 Merge pull request #18249 from getsentry/prepare-release/10.26.0
  • be12569 meta(changelog): Update changelog for 10.26.0
  • be29c56 chore(e2e): Bump zod in e2e tests (#18251)
  • b3bf56d feat(node): Add OpenAI SDK v6 support and integration tests (#18244)
  • 584d4bc feat(cloudflare/vercel-edge): Add manual instrumentation for LangGraph (#18112)
  • d12ba2e feat(metrics): Add default server.address attribute on server runtimes (#18...
  • 935ef55 feat(core): Support OpenAI embeddings API (#18224)
  • 610ae69 feat(browser-utils): bump web-vitals to 5.1.0 (#18091)
  • 9482a02 fix(nextjs): Respect PORT variable for dev error symbolication (#18227)
  • Additional commits viewable in compare view

Updates @iconify-json/material-symbols from 1.2.46 to 1.2.48

Commits

Updates @iconify-json/simple-icons from 1.2.59 to 1.2.60

Commits

Updates @sveltejs/adapter-vercel from 6.1.1 to 6.1.2

Release notes

Sourced from @​sveltejs/adapter-vercel's releases.

@​sveltejs/adapter-vercel@​6.1.2

Patch Changes

  • chore(deps): upgrade to @vercel/nft version 1.0.0 to reduce dependencies (#14950)

  • Updated dependencies [0889a2a, 2ff3951, 5b30755]:

    • @​sveltejs/kit@​2.48.7
Changelog

Sourced from @​sveltejs/adapter-vercel's changelog.

6.1.2

Patch Changes

  • chore(deps): upgrade to @vercel/nft version 1.0.0 to reduce dependencies (#14950)

  • Updated dependencies [0889a2a, 2ff3951, 5b30755]:

    • @​sveltejs/kit@​2.48.7
Commits

Updates @sveltejs/kit from 2.48.5 to 2.49.0

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.49.0

Minor Changes

  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#14775)

@​sveltejs/kit@​2.48.8

Patch Changes

  • breaking: invalid now must be imported from @sveltejs/kit (#14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#14762)

@​sveltejs/kit@​2.48.7

Patch Changes

  • fix: allow multiple server-timing headers (#14700)

  • fix: allow access to root-level issues in schema-less forms (#14893)

  • fix: allow hosting hash-based apps from non-index.html files (#14825)

@​sveltejs/kit@​2.48.6

Patch Changes

  • fix: clear issues upon passing validation (#14683)

  • fix: don't use fork of unrelated route (#14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#14949)

  • fix: preserve this when invoking standard validator (#14943)

  • fix: treat client/universal hooks as entrypoints for illegal server import detection (#14876)

  • fix: correct query .set and .refresh behavior in commands (#14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#14908)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.49.0

Minor Changes

  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#14775)

2.48.8

Patch Changes

  • breaking: invalid now must be imported from @sveltejs/kit (#14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#14762)

2.48.7

Patch Changes

  • fix: allow multiple server-timing headers (#14700)

  • fix: allow access to root-level issues in schema-less forms (#14893)

  • fix: allow hosting hash-based apps from non-index.html files (#14825)

2.48.6

Patch Changes

  • fix: clear issues upon passing validation (#14683)

  • fix: don't use fork of unrelated route (#14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#14949)

  • fix: preserve this when invoking standard validator (#14943)

  • fix: treat client/universal hooks as entrypoints for illegal server import detection (#14876)

  • fix: correct query .set and .refresh behavior in commands (#14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#14908)

Commits

Updates @typescript-eslint/eslint-plugin from 8.46.4 to 8.47.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Commits
  • 28cf803 chore(release): publish 8.47.0
  • 6c6db24 feat(eslint-plugin): [no-unused-private-class-members] new extension rule (#1...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.46.4 to 8.47.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.47.0 (2025-11-17)

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

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

Commits

Updates svelte from 5.43.8 to 5.43.14

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: correctly migrate named self closing slots (#17199)

  • fix: error at compile time instead of at runtime on await expressions inside bindings/transitions/animations/attachments (#17198)

  • fix: take async blockers into account for bindings/transitions/animations/attachments (#17198)

[email protected]

Patch Changes

  • fix: don't set derived values during time traveling (#17200)

[email protected]

Patch Changes

  • fix: maintain correct linked list of effects when updating each blocks (#17191)

[email protected]

Patch Changes

  • perf: don't use tracing overeager during dev (#17183)

  • fix: don't cancel transition of already outroing elements (#17186)

[email protected]

Patch Changes

  • fix: avoid other batches running with queued root effects of main batch (#17145)

[email protected]

Patch Changes

  • fix: correctly handle functions when determining async blockers (#17137)

  • fix: keep deriveds reactive after their original parent effect was destroyed (#17171)

  • fix: ensure eager effects don't break reactions chain (#17138)

  • fix: ensure async @const in boundary hydrates correctly (#17165)

  • fix: take blockers into account when creating #await blocks (#17137)

  • fix: parallelize async @consts in the template (#17165)

Changelog

Sourced from svelte's changelog.

5.43.14

Patch Changes

  • fix: correctly migrate named self closing slots (#17199)

  • fix: error at compile time instead of at runtime on await expressions inside bindings/transitions/animations/attachments (#17198)

  • fix: take async blockers into account for bindings/transitions/animations/attachments (#17198)

5.43.13

Patch Changes

  • fix: don't set derived values during time traveling (#17200)

5.43.12

Patch Changes

  • fix: maintain correct linked list of effects when updating each blocks (#17191)

5.43.11

Patch Changes

  • perf: don't use tracing overeager during dev (#17183)

  • fix: don't cancel transition of already outroing elements (#17186)

5.43.10

Patch Changes

  • fix: avoid other batches running with queued root effects of main batch (#17145)

5.43.9

Patch Changes

  • fix: correctly handle functions when determining async blockers (#17137)

  • fix: keep deriveds reactive after their original parent effect was destroyed (#17171)

  • fix: ensure eager effects don't break reactions chain (#17138)

  • fix: ensure async @const in boundary hydrates correctly (#17165)

  • fix: take blockers into account when creating #await blocks (#17137)

... (truncated)

Commits

Updates typescript-eslint from 8.46.4 to 8.47.0

Release notes

Sourced from typescript-eslint's releases.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Changelog

Sourced from typescript-eslint's changelog.

8.47.0 (2025-11-17)

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.

Commits

Updates vite from 7.2.2 to 7.2.4

Release notes

Sourced from vite's releases.

v7.2.4

Please refer to CHANGELOG.md for details.

v7.2.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.2.4 (2025-11-20)

Bug Fixes

  • revert "perf(deps): replace debug with obug (#21107)" (2d66b7b)

7.2.3 (2025-11-20)

Bug Fixes

  • allow multiple bindCLIShortcuts calls with shortcut merging (#21103) (5909efd)
  • deps: update all non-major dependencies (#21096) (6a34ac3)
  • deps: update all non-major dependencies (#21128) (4f8171e)

Performance Improvements

Miscellaneous Chores

  • deps: update dependency @​rollup/plugin-commonjs to v29 (#21099) (02ceaec)
  • deps: update rolldown-related dependencies (#21095) (39a0a15)
  • deps: update rolldown-related dependencies (#21127) (5029720)
Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@sentry/sveltekit](https://github.com/getsentry/sentry-javascript) | `10.25.0` | `10.26.0` |
| [@iconify-json/material-symbols](https://github.com/iconify/icon-sets) | `1.2.46` | `1.2.48` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.59` | `1.2.60` |
| [@sveltejs/adapter-vercel](https://github.com/sveltejs/kit/tree/HEAD/packages/adapter-vercel) | `6.1.1` | `6.1.2` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.48.5` | `2.49.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.46.4` | `8.47.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.46.4` | `8.47.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.43.8` | `5.43.14` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.4` | `8.47.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.2` | `7.2.4` |


Updates `@sentry/sveltekit` from 10.25.0 to 10.26.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.25.0...10.26.0)

Updates `@iconify-json/material-symbols` from 1.2.46 to 1.2.48
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@iconify-json/simple-icons` from 1.2.59 to 1.2.60
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@sveltejs/adapter-vercel` from 6.1.1 to 6.1.2
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/adapter-vercel/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/adapter-vercel)

Updates `@sveltejs/kit` from 2.48.5 to 2.49.0
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `@typescript-eslint/eslint-plugin` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/parser)

Updates `svelte` from 5.43.8 to 5.43.14
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte)

Updates `typescript-eslint` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-eslint)

Updates `vite` from 7.2.2 to 7.2.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.4/packages/vite)

---
updated-dependencies:
- dependency-name: "@sentry/sveltekit"
  dependency-version: 10.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@iconify-json/material-symbols"
  dependency-version: 1.2.48
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@iconify-json/simple-icons"
  dependency-version: 1.2.60
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@sveltejs/adapter-vercel"
  dependency-version: 6.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.47.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.47.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: svelte
  dependency-version: 5.43.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.47.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vite
  dependency-version: 7.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 24, 2025
@vercel
Copy link

vercel bot commented Nov 24, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
explorer Ready Ready Preview Comment Nov 24, 2025 7:15am

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 javascript Pull requests that update Javascript code

Projects

Status: Backlog

Development

Successfully merging this pull request may close these issues.

1 participant