Skip to content

chore(deps)(deps): bump the minor-patch-updates group across 1 directory with 17 updates - #1322

Merged
timothyfroehlich merged 1 commit into
mainfrom
dependabot/npm_and_yarn/main/minor-patch-updates-80a49d2f8b
May 15, 2026
Merged

chore(deps)(deps): bump the minor-patch-updates group across 1 directory with 17 updates#1322
timothyfroehlich merged 1 commit into
mainfrom
dependabot/npm_and_yarn/main/minor-patch-updates-80a49d2f8b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-patch-updates group with 17 updates in the / directory:

Package From To
@sentry/nextjs 10.50.0 10.51.0
@supabase/supabase-js 2.104.1 2.105.1
@tiptap/extension-link 3.22.4 3.22.5
@tiptap/extension-mention 3.22.4 3.22.5
@tiptap/extension-placeholder 3.22.4 3.22.5
@tiptap/html 3.22.4 3.22.5
@tiptap/pm 3.22.4 3.22.5
@tiptap/react 3.22.4 3.22.5
@tiptap/starter-kit 3.22.4 3.22.5
@tiptap/suggestion 3.22.4 3.22.5
lucide-react 1.11.0 1.14.0
nodemailer 8.0.6 8.0.7
zod 4.3.6 4.4.1
@electric-sql/pglite 0.4.4 0.4.5
baseline-browser-mapping 2.10.23 2.10.25
eslint-plugin-promise 7.2.1 7.3.0
jsdom 29.1.0 29.1.1

Updates @sentry/nextjs from 10.50.0 to 10.51.0

Release notes

Sourced from @​sentry/nextjs's releases.

10.51.0

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: true in your SDK configuration:

    // Worker
    export default Sentry.withSentry(
      env => ({
        dsn: env.SENTRY_DSN,
        enableRpcTracePropagation: true,
      }),
      handler,
    );
    // Durable Object
    export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
    env => ({
    dsn: env.SENTRY_DSN,
    enableRpcTracePropagation: true,
    }),
    MyDurableObjectBase,
    );

  • feat(hono)!: Change setup for @sentry/hono/node (init in external file) (#20497)

    To improve Node.js instrumentation, the sentry() middleware exported from @sentry/hono/node no 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:

    // instrument.mjs (or instrument.ts)
    import * as Sentry from '@sentry/hono/node';
    Sentry.init({
    dsn: 'DSN',
    tracesSampleRate: 1.0,
    });

  • feat(nitro): Add @sentry/nitro SDK (#19224)

    A new @sentry/nitro package provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading via withSentryConfig. Read more in the Nitro SDK docs and the Nitro SDK readme.

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.51.0

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: true in your SDK configuration:

    // Worker
    export default Sentry.withSentry(
      env => ({
        dsn: env.SENTRY_DSN,
        enableRpcTracePropagation: true,
      }),
      handler,
    );
    // Durable Object
    export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
    env => ({
    dsn: env.SENTRY_DSN,
    enableRpcTracePropagation: true,
    }),
    MyDurableObjectBase,
    );

  • feat(hono)!: Change setup for @sentry/hono/node (init in external file) (#20497)

    To improve Node.js instrumentation, the sentry() middleware exported from @sentry/hono/node no 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:

    // instrument.mjs (or instrument.ts)
    import * as Sentry from '@sentry/hono/node';
    Sentry.init({
    dsn: 'DSN',
    tracesSampleRate: 1.0,
    });

  • feat(nitro): Add @sentry/nitro SDK (#19224)

    A new @sentry/nitro package provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading via withSentryConfig. Read more in the Nitro SDK docs and the Nitro SDK readme.

Other Changes

... (truncated)

Commits
  • dc0b839 release: 10.51.0
  • b3cabee Merge pull request #20599 from getsentry/prepare-release/10.51.0
  • 3be99a9 meta(changelog): Update changelog for 10.51.0
  • bea1aad test(browser): Unflake some more tests (#20591)
  • 50aa085 test(node): Unflake postgres tests (#20593)
  • 1166839 fix(hono): Distinguish .use() middleware in sub-apps from .all() handlers...
  • 217ad4a test(node): Fix flaky ANR test (#20592)
  • 91ffb3f test(node): Fix flaky worker thread integration test (#20588)
  • c4e3902 chore(ci): Do not report flaky test issues if we cannot find a test name (#20...
  • c0005cd test(node): Update timeout for cron integration tests (#20586)
  • Additional commits viewable in compare view

Updates @supabase/supabase-js from 2.104.1 to 2.105.1

Release notes

Sourced from @​supabase/supabase-js's releases.

v2.105.1

2.105.1 (2026-04-28)

🩹 Fixes

  • postgrest: query reassignment regression (#2292)
  • realtime: surface real Error on transport-level CHANNEL_ERROR (#2299)

❤️ Thank You

v2.105.1-canary.2

2.105.1-canary.2 (2026-04-28)

🩹 Fixes

  • realtime: surface real Error on transport-level CHANNEL_ERROR (#2299)

v2.105.1-canary.1

2.105.1-canary.1 (2026-04-28)

This was a version bump only, there were no code changes.

v2.105.1-canary.0

2.105.1-canary.0 (2026-04-28)

🩹 Fixes

  • postgrest: query reassignment regression (#2292)

❤️ Thank You

v2.105.0

2.105.0 (2026-04-27)

🚀 Features

  • auth: add passkey support with WebAuthn registration, authentication, and management (#2283)
  • realtime: Realtime deferred disconnect (#2282)

🩹 Fixes

  • postgrest: narrow column types after not(column, is, null) (#2264)
  • realtime: annotate Timer/Vsn getters to avoid deep phoenix imports (#2284)
  • storage: apply metadata, headers, and cacheControl dedupe to uploadToSignedUrl (#2275)
  • storage: forward duplex option for stream uploads via uploadToSignedUrl (#2289)

... (truncated)

Changelog

Sourced from @​supabase/supabase-js's changelog.

2.105.1 (2026-04-28)

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

2.105.0 (2026-04-27)

🚀 Features

  • auth: add passkey support with WebAuthn registration, authentication, and management (#2283)
  • realtime: Realtime deferred disconnect (#2282)
Commits
  • ca8c418 chore(release): version 2.105.0 changelogs (#2290)
  • d19e6d3 [patchback] docs(misc): rename anon key → publishable key and service role ke...
  • c420456 [patchback] feat(auth): add passkey support with WebAuthn registration, authe...
  • bfb18bc [patchback] feat(realtime): Realtime deferred disconnect (#2282)
  • ed49eed chore(release): version 2.104.1 changelogs (#2273)
  • See full diff in compare view

Updates @tiptap/extension-link from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/extension-link's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/extension-link's changelog.

3.22.5

Patch Changes

  • Updated dependencies [a375002]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5
Commits

Updates @tiptap/extension-mention from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/extension-mention's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/extension-mention's changelog.

3.22.5

Patch Changes

  • Updated dependencies [a375002]
    • @​tiptap/core@​3.22.5
    • @​tiptap/suggestion@​3.22.5
    • @​tiptap/pm@​3.22.5
Commits

Updates @tiptap/extension-placeholder from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/extension-placeholder's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/extension-placeholder's changelog.

3.22.5

Patch Changes

  • @​tiptap/extensions@​3.22.5
Commits

Updates @tiptap/html from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/html's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/html's changelog.

3.22.5

Patch Changes

  • Updated dependencies [a375002]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5
Commits

Updates @tiptap/pm from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/pm's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/pm's changelog.

3.22.5

Commits

Updates @tiptap/react from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/react's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/react's changelog.

3.22.5

Patch Changes

  • a375002: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [a375002]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5
Commits
  • 898a8ed chore(release): publish a new stable version (#7756)
  • 45d4592 Merge branch 'main' into fix/node-view-selected-prop
  • eb288d6 feat(core): add selectedOnTextSelection option to node views
  • See full diff in compare view

Updates @tiptap/starter-kit from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/starter-kit's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/starter-kit's changelog.

3.22.5

Patch Changes

  • Updated dependencies [a375002]
    • @​tiptap/core@​3.22.5
    • @​tiptap/extension-blockquote@​3.22.5
    • @​tiptap/extension-bold@​3.22.5
    • @​tiptap/extension-code@​3.22.5
    • @​tiptap/extension-code-block@​3.22.5
    • @​tiptap/extension-document@​3.22.5
    • @​tiptap/extension-hard-break@​3.22.5
    • @​tiptap/extension-heading@​3.22.5
    • @​tiptap/extension-horizontal-rule@​3.22.5
    • @​tiptap/extension-italic@​3.22.5
    • @​tiptap/extension-link@​3.22.5
    • @​tiptap/extension-list@​3.22.5
    • @​tiptap/extension-paragraph@​3.22.5
    • @​tiptap/extension-strike@​3.22.5
    • @​tiptap/extension-text@​3.22.5
    • @​tiptap/extension-underline@​3.22.5
    • @​tiptap/extensions@​3.22.5
    • @​tiptap/extension-list-item@​3.22.5
    • @​tiptap/extension-list-keymap@​3.22.5
    • @​tiptap/extension-bullet-list@​3.22.5
    • @​tiptap/extension-ordered-list@​3.22.5
    • @​tiptap/extension-dropcursor@​3.22.5
    • @​tiptap/extension-gapcursor@​3.22.5
    • @​tiptap/pm@​3.22.5
Commits

Updates @tiptap/suggestion from 3.22.4 to 3.22.5

Release notes

Sourced from @​tiptap/suggestion's releases.

v3.22.5

@​tiptap/react

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-2

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/vue-3

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/core

Patch Changes

  • 13b5894: Add selectedOnTextSelection option to node view renderers. When enabled, the selected prop also becomes true when a TextSelection is fully inside the node's range, not only on NodeSelection.
  • @​tiptap/pm@​3.22.5

@​tiptap/extension-table-of-contents

Patch Changes

  • 13b5894: Fix duplicate onUpdate invocation per document change in the TableOfContents extension.
  • Updated dependencies [13b5894]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5

@​tiptap/static-renderer

Patch Changes

  • 13b5894: Escape HTML string renderer text content and attribute values to prevent injected markup from untrusted content.
  • Updated dependencies [13b5894]

... (truncated)

Changelog

Sourced from @​tiptap/suggestion's changelog.

3.22.5

Patch Changes

  • Updated dependencies [a375002]
    • @​tiptap/core@​3.22.5
    • @​tiptap/pm@​3.22.5
Commits

Updates lucide-react from 1.11.0 to 1.14.0

Release notes

Sourced from lucide-react's releases.

Version 1.14.0

What's Changed

Full Changelog: lucide-icons/lucide@1.13.0...1.14.0

Version 1.13.0

What's Changed

Full Changelog: lucide-icons/lucide@1.12.0...1.13.0

Version 1.12.0

What's Changed

Full Changelog: lucide-icons/lucide@1.10.0...1.12.0

Commits

Updates nodemailer from 8.0.6 to 8.0.7

Release notes

Sourced from nodemailer's releases.

v8.0.7

8.0.7 (2026-04-27)

Bug Fixes

  • keep domain as UTF-8 when local part is non-ASCII (#1814) (66d4ecb)
Changelog

Sourced from nodemailer's changelog.

8.0.7 (2026-04-27)

Bug Fixes

  • keep domain as UTF-8 when local part is non-ASCII (#1814) (66d4ecb)
Commits

Updates zod from 4.3.6 to 4.4.1

Release notes

Sourced from zod's releases.

v4.4.1

Commits:

  • 481f7be4238c83ed58183f921b2646f340a91c6a ci: gate release publishing on full test workflow
  • 95ccab423aec720b2523c3a64cdc7e3204537cc7 test(v3): restore optional undefined expectations
  • cede2c63739a5823d6aa5093d291e9a111da943d fix(v4): reject tuple holes before required defaults (#5900)
  • edd0bf0f5ada4a8dc581c259407d7bbad0a71ea7 release: 4.4.1
  • 180d83d1dbe6a59260710cc8637a3dea2281ee56 docs: remove Jazz featured sponsor

v4.4.0

4.4.0

This is a minor release with a wide set of correctness and soundness fixes. Some fixes intentionally make Zod stricter, so code that depended on previously accepted invalid or ambiguous inputs may need small updates.

Potentially breaking bug fixes

Tuple defaults now materialize output values correctly

Fixed in #5661. Tuple parsing now more accurately reflects defaults, optional tails, explicit undefined, and under-filled inputs. The headline behavior is that defaults in tuple positions now properly appear in parsed output.

const schema = z.tuple([
  z.string(),
  z.string().default("fallback"),
]);
schema.parse(["a"]);
// ["a", "fallback"]

Trailing optional elements that are absent still stay absent; they are not filled with undefined.

const schema = z.tuple([
  z.string(),
  z.string().optional(),
]);
schema.parse(["a"]);
// ["a"]

But explicit undefined values supplied by the caller are preserved.

schema.parse(["a", undefined]);
// ["a", undefined]

When optional elements appear before later defaults, the parsed tuple is now dense so array operations behave predictably.

... (truncated)

Commits
  • 180d83d docs: remove Jazz featured sponsor
  • edd0bf0 release: 4.4.1
  • cede2c6 fix(v4): reject tuple holes before required defaults (#5900)
  • 95ccab4 test(v3): restore optional undefined expectations
  • 481f7be ci: gate release publishing on full test workflow
  • d05f026 release: 4.4.0
  • f778e02 build: bump zshy for JSR wildcard exports
  • 6db607b fix(release): keep JSR manifest publishable
  • ad0b827 ci: update release workflow for trusted publishing
  • b6066b3 fix(v4): align object and tuple optionality handling (#5661)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for zod since your current version.


Updates @electric-sql/pglite from 0.4.4 to 0.4.5

Release notes

Sourced from @​electric-sql/pglite's releases.

@​electric-sql/pglite@​0.4.5

Patch Changes

  • c6bddde: Fix caching of artifacts such that they are not downloaded multiple times
Changelog

Sourced from @​electric-sql/pglite's changelog.

0.4.5

Patch Changes

  • c6bddde: Fix caching of artifacts such that they are not downloaded multiple times
Commits

Updates baseline-browser-mapping from 2.10.23 to 2.10.25

Release notes

Sourced from baseline-browser-mapping's releases.

v2.9.3 - remove process.loadEnvFile()

What's Changed

Full Changelog: web-platform-dx/baseline-browser-mapping@v2.9.2...v2.9.3

Commits
  • bec791f Patch to 2.10.25 because browser or feature data changed
  • 526e426 Browser or feature data changed
  • 85a2a0d Patch to 2.10.24 because browser or feature data changed
  • 7c50e2c Browser or feature data changed
  • 2775eef Updating static site
  • See full diff in compare view

Updates eslint-plugin-promise from 7.2.1 to 7.3.0

Release notes

Sourced from eslint-plugin-promise's releases.

v7.3.0

7.3.0 (2026-04-27)

🌟 Features

  • no-promise-in-callback: add exemptDeclarations option (#513) (550524f)
  • add support for ESLint v10 (#617) (6096821)

🩹 Fixes

  • no-native: fix to report Promise usage in eslint v9 or later (#619) (1230ced)

🧹 Chores

@dependabot @github

dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: pnpm. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 15, 2026
@vercel

vercel Bot commented May 15, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
pin-point Ready Ready Preview, Comment May 15, 2026 4:28pm

@timothyfroehlich

Copy link
Copy Markdown
Owner

@dependabot rebase

…ory with 17 updates

Bumps the minor-patch-updates group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.50.0` | `10.51.0` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) | `2.104.1` | `2.105.1` |
| [@tiptap/extension-link](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link) | `3.22.4` | `3.22.5` |
| [@tiptap/extension-mention](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-mention) | `3.22.4` | `3.22.5` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.22.4` | `3.22.5` |
| [@tiptap/html](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/html) | `3.22.4` | `3.22.5` |
| [@tiptap/pm](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/pm) | `3.22.4` | `3.22.5` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.22.4` | `3.22.5` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.22.4` | `3.22.5` |
| [@tiptap/suggestion](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/suggestion) | `3.22.4` | `3.22.5` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.11.0` | `1.14.0` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `8.0.6` | `8.0.7` |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.1` |
| [@electric-sql/pglite](https://github.com/electric-sql/pglite/tree/HEAD/packages/pglite) | `0.4.4` | `0.4.5` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.10.23` | `2.10.25` |
| [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) | `7.2.1` | `7.3.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `29.1.0` | `29.1.1` |



Updates `@sentry/nextjs` from 10.50.0 to 10.51.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.50.0...10.51.0)

Updates `@supabase/supabase-js` from 2.104.1 to 2.105.1
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/packages/core/supabase-js/CHANGELOG.md)
- [Commits](https://github.com/supabase/supabase-js/commits/v2.105.1/packages/core/supabase-js)

Updates `@tiptap/extension-link` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-link/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/extension-link)

Updates `@tiptap/extension-mention` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-mention/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/extension-mention)

Updates `@tiptap/extension-placeholder` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages-deprecated/extension-placeholder/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages-deprecated/extension-placeholder)

Updates `@tiptap/html` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/html/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/html)

Updates `@tiptap/pm` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/pm/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/pm)

Updates `@tiptap/react` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/react)

Updates `@tiptap/starter-kit` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/starter-kit/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/starter-kit)

Updates `@tiptap/suggestion` from 3.22.4 to 3.22.5
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/suggestion/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.5/packages/suggestion)

Updates `lucide-react` from 1.11.0 to 1.14.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.14.0/packages/lucide-react)

Updates `nodemailer` from 8.0.6 to 8.0.7
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v8.0.6...v8.0.7)

Updates `zod` from 4.3.6 to 4.4.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.6...v4.4.1)

Updates `@electric-sql/pglite` from 0.4.4 to 0.4.5
- [Release notes](https://github.com/electric-sql/pglite/releases)
- [Changelog](https://github.com/electric-sql/pglite/blob/main/packages/pglite/CHANGELOG.md)
- [Commits](https://github.com/electric-sql/pglite/commits/@electric-sql/pglite@0.4.5/packages/pglite)

Updates `baseline-browser-mapping` from 2.10.23 to 2.10.25
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.10.23...v2.10.25)

Updates `eslint-plugin-promise` from 7.2.1 to 7.3.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-promise/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-promise/blob/main/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-promise@v7.2.1...v7.3.0)

Updates `jsdom` from 29.1.0 to 29.1.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v29.1.0...v29.1.1)

---
updated-dependencies:
- dependency-name: "@electric-sql/pglite"
  dependency-version: 0.4.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-updates
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.105.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/extension-link"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/extension-mention"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/html"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/pm"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/react"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: "@tiptap/suggestion"
  dependency-version: 3.22.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: eslint-plugin-promise
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-updates
- dependency-name: jsdom
  dependency-version: 29.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: lucide-react
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-updates
- dependency-name: nodemailer
  dependency-version: 8.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-updates
- dependency-name: zod
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/main/minor-patch-updates-80a49d2f8b branch from 8c6e87e to 4bd3c7a Compare May 15, 2026 15:33
@timothyfroehlich
timothyfroehlich merged commit 59fbd65 into main May 15, 2026
22 checks passed
@timothyfroehlich
timothyfroehlich deleted the dependabot/npm_and_yarn/main/minor-patch-updates-80a49d2f8b branch May 15, 2026 17:20
timothyfroehlich added a commit that referenced this pull request May 15, 2026
Resolved by Claude-21c subagent against main HEAD f36c509 (post #1320,
#1322, #1327, #1328). Conflict surface was AddCommentForm.test.tsx —
PP-21c's vi.mock hoisting fix preserved alongside PP-8mq's editor
imperative-ref test surface.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant