Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the npm-all group with 5 updates:

Package From To
@sentry/vue 10.24.0 10.26.0
marked 17.0.0 17.0.1
vue 3.5.24 3.5.25
vitepress 2.0.0-alpha.12 2.0.0-alpha.15
vuetify 3.10.9 3.10.11

Updates @sentry/vue from 10.24.0 to 10.26.0

Release notes

Sourced from @​sentry/vue'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/vue'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 marked from 17.0.0 to 17.0.1

Release notes

Sourced from marked's releases.

v17.0.1

17.0.1 (2025-11-20)

Bug Fixes

Commits
  • 16209f5 chore(release): 17.0.1 [skip ci]
  • 921ee22 fix: fix block elements in task item (#3828)
  • 1e47df2 chore(deps-dev): Bump @​semantic-release/npm from 13.1.1 to 13.1.2 (#3841)
  • 8a355d1 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.13 to 1.0.14 (#3835)
  • c43a67e chore(deps-dev): Bump eslint from 9.39.0 to 9.39.1 (#3834)
  • de635d8 chore(deps-dev): Bump esbuild from 0.25.12 to 0.27.0 (#3833)
  • 554cd8d chore(deps-dev): Bump marked-highlight from 2.2.2 to 2.2.3 (#3832)
  • 1711dbb chore(deps-dev): Bump @​semantic-release/github from 12.0.1 to 12.0.2 (#3831)
  • 23b9d01 docs: Modernize Docs UI with Tailwind, Dark Mode, and Improved Layout (#3814)
  • See full diff in compare view

Updates vue from 3.5.24 to 3.5.25

Release notes

Sourced from vue's releases.

v3.5.25

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.25 (2025-11-24)

Bug Fixes

Commits
  • 25ebe3a release: v3.5.25
  • c0f63dd fix(suspense): defer clearing fallback vnode el in case it has dirs (#14080)
  • 301020b fix(reactivity): correctly wrap iterated array items to preserve their readon...
  • 0d2357e fix(reactivity): toRef edge cases for ref unwrapping (#12420)
  • 247b2c2 fix(provide): warn when using provide after mounting (#13954)
  • b50eb68 dx(runtime-core): check current and parent components in formatComponentName ...
  • 5af3dd9 refactor(runtime-core): check props rather than propsOptions[0] (#13514)
  • 2214f7a fix(compiler): share logic for comments and whitespace (#13550)
  • 8f82f23 fix(runtime-core): keep options API typing intact when expose is used (#14118)
  • 83f6ab6 chore(compiler-ssr): move defaultProps initialization into input tag bran...
  • Additional commits viewable in compare view

Updates vitepress from 2.0.0-alpha.12 to 2.0.0-alpha.15

Release notes

Sourced from vitepress's releases.

v2.0.0-alpha.15

Fixes a theme regression in v2-alpha.14.

Please refer to CHANGELOG.md for details.

v2.0.0-alpha.14

Please refer to CHANGELOG.md for details.

v2.0.0-alpha.13

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vitepress's changelog.

2.0.0-alpha.15 (2025-11-22)

Bug Fixes

  • theme: navbar overflowing on mobile devices (06f0e1a), closes #5039

2.0.0-alpha.14 (2025-11-21)

Bug Fixes

  • log dead links in dev mode too (179ee62), closes #4419
  • theme: sidebar alignment when scrollbar is there on page (0ee7158), closes #5027

Features

  • client: emit vitepress:codeGroupTabActivate custom event when a code group tab is activated (dfb02a4), closes #5023

2.0.0-alpha.13 (2025-11-13)

Bug Fixes

  • client,a11y: improve focus handling and scrolling behavior in router (#4943) (d46107f)
  • disable markdown-it-attrs for fenced code blocks (0899618)
  • git log parsing when there are empty commits in history (#4965) (612c458)
  • print full path in dead links check (2b77fb3), closes #4919
  • rename markdown.cjkFriendly to markdown.cjkFriendlyEmphasis (bce0b53), closes #4952
  • respect markdown.cache = false on build too (6d7422f)
  • simplify lang extraction logic; use markdown-it plugins in type-safe manner; bump deps (4e548f5)
  • theme: add lang and dir attributes to language picker (f0b29d7)
  • theme: adjust margin of code blocks inside containers (82fac5d), closes #4921
  • theme: avoid use of :where in selector list for now (c2eaccd), closes #4923
  • theme: disable whitespace wrapping for VPBadge (#4968) (113d230)
  • theme: use nav height css var for curtain top in sidebar (#4993) (be260fd)

Features

  • export cacheAllGitTimestamps and getGitTimestamp (31d87e2)
  • i18n,a11y: change last update logic (#4935) (187bf25)
  • markdown: support custom display-name for fenced code blocks (#4960) (3d61619)
  • prevent $ symbol selection in shell code (#5025) (bf2715e)
  • theme: allow passing functions for nav links (#4963) (34cfa91)

Performance Improvements

  • make a single git call for timestamps instead of calling it for each file (#4958) (6dfcdd3)

BREAKING CHANGES

  • markdown-it-attrs is disabled for fenced code blocks. For most users no change is required. If you want to add classes to code blocks, do it using shiki transformers instead.
  • Rename cjkFriendly to cjkFriendlyEmphasis in your vitepress config. Most people should be unaffected unless they want to disable the CJK emphasis behavior added v2.0.0-alpha.12.
Commits
  • d954dc8 release: v2.0.0-alpha.15
  • 06f0e1a fix(theme): navbar overflowing on mobile devices
  • bae5397 release: v2.0.0-alpha.14
  • 5e0d7da chore: replace debug with obug (#5030)
  • b8f3c46 chore: bump deps
  • d16d197 chore: update oxc-minify to 0.98 (#5033)
  • 9183680 docs: update github search links
  • 179ee62 fix: log dead links in dev mode too
  • dfb02a4 feat(client): emit vitepress:codeGroupTabActivate custom event when a code ...
  • cd01bc6 docs: mention that relative bases are not supported
  • Additional commits viewable in compare view

Updates vuetify from 3.10.9 to 3.10.11

Release notes

Sourced from vuetify's releases.

v3.10.11

🔧 Bug Fixes

  • VField: visibility of loading state in forced-colors mode (#22316) (993f443), closes #22315
  • VTab: correct styles for forced-colors mode (8b46022)
  • VWindow: correct transition between first and last (dd0d725), closes #20641

v3.10.10

🚀 Features

🔧 Bug Fixes

🧪 Labs

  • VDateInput: min/max with built-in adapter (#22295) (e67c411), closes #22291
  • VHotkey: remove duplicate and redundant code (be3a7e9)
Commits
  • 2f74008 chore(release): publish v3.10.11
  • 993f443 fix(VField): correct visibility of loading state in forced-colors mode (#22316)
  • 8b46022 fix(VTab): correct styles for forced-colors mode
  • dd0d725 fix(VWindow): correct transition between first and last
  • a548e28 docs(VField): keep details prop scoped to VField (#22268)
  • 3d373c2 chore(release): publish v3.10.10
  • be3a7e9 refactor(VHotkey): remove duplicate and redundant code
  • df5f40f chore(VMaskInput): test mask input clear action agains regression (#22176)
  • 698a4c3 docs: cleanup .sync + some obsolete entries and files
  • d608fe5 feat(typography): add font-weight semibold helper class (#20586)
  • Additional commits viewable in compare view

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 24, 2025
Bumps the npm-all group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@sentry/vue](https://github.com/getsentry/sentry-javascript) | `10.24.0` | `10.26.0` |
| [marked](https://github.com/markedjs/marked) | `17.0.0` | `17.0.1` |
| [vue](https://github.com/vuejs/core) | `3.5.24` | `3.5.25` |
| [vitepress](https://github.com/vuejs/vitepress) | `2.0.0-alpha.12` | `2.0.0-alpha.15` |
| [vuetify](https://github.com/vuetifyjs/vuetify/tree/HEAD/packages/vuetify) | `3.10.9` | `3.10.11` |


Updates `@sentry/vue` from 10.24.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.24.0...10.26.0)

Updates `marked` from 17.0.0 to 17.0.1
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v17.0.0...v17.0.1)

Updates `vue` from 3.5.24 to 3.5.25
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.24...v3.5.25)

Updates `vitepress` from 2.0.0-alpha.12 to 2.0.0-alpha.15
- [Release notes](https://github.com/vuejs/vitepress/releases)
- [Changelog](https://github.com/vuejs/vitepress/blob/main/CHANGELOG.md)
- [Commits](vuejs/vitepress@v2.0.0-alpha.12...v2.0.0-alpha.15)

Updates `vuetify` from 3.10.9 to 3.10.11
- [Release notes](https://github.com/vuetifyjs/vuetify/releases)
- [Commits](https://github.com/vuetifyjs/vuetify/commits/v3.10.11/packages/vuetify)

---
updated-dependencies:
- dependency-name: "@sentry/vue"
  dependency-version: 10.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-all
- dependency-name: marked
  dependency-version: 17.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: vue
  dependency-version: 3.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: vitepress
  dependency-version: 2.0.0-alpha.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: vuetify
  dependency-version: 3.10.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-all-3a73d35a41 branch from 90ab462 to b15f3f0 Compare December 2, 2025 04:54
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

None yet

Development

Successfully merging this pull request may close these issues.

1 participant