Skip to content

chore: bump the npm-non-major group across 1 directory with 27 updates#704

Closed
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/npm_and_yarn/npm-non-major-765ee4257a
Closed

chore: bump the npm-non-major group across 1 directory with 27 updates#704
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/npm_and_yarn/npm-non-major-765ee4257a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 20, 2026

Bumps the npm-non-major group with 27 updates in the / directory:

Package From To
@atlaskit/pragmatic-drag-and-drop 1.7.9 1.7.10
@sentry/react 10.43.0 10.48.0
@tanstack/react-query 5.90.21 5.99.0
@tanstack/react-query-devtools 5.91.3 5.99.0
@tanstack/react-virtual 3.13.21 3.13.23
@vanilla-extract/css 1.18.0 1.20.1
@vanilla-extract/vite-plugin 5.1.4 5.2.2
dayjs 1.11.19 1.11.20
framer-motion 12.34.3 12.38.0
jotai 2.18.1 2.19.1
pdfjs-dist 5.5.207 5.6.205
slate 0.123.0 0.124.1
slate-dom 0.123.0 0.124.1
slate-react 0.123.0 0.124.0
virtua 0.48.8 0.49.1
@cloudflare/vite-plugin 1.27.0 1.31.2
@eslint/compat 2.0.2 2.0.5
@sentry/vite-plugin 5.1.1 5.2.0
@vitest/coverage-v8 4.1.0 4.1.4
@vitest/ui 4.1.0 4.1.4
eslint-config-airbnb-extended 3.0.1 3.1.0
globals 17.3.0 17.5.0
jsdom 29.0.0 29.0.2
prettier 3.8.1 3.8.2
vite-plugin-compression2 2.5.0 2.5.3
vitest 4.1.0 4.1.4
wrangler 4.72.0 4.81.1

Updates @atlaskit/pragmatic-drag-and-drop from 1.7.9 to 1.7.10

Commits

Updates @sentry/react from 10.43.0 to 10.48.0

Release notes

Sourced from @​sentry/react's releases.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    Removed attribute Replacement

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    | Removed attribute | Replacement |

... (truncated)

Commits
  • a67df4d release: 10.48.0
  • e0732ff Merge pull request #20172 from getsentry/prepare-release/10.48.0
  • d1ee40f meta(changelog): Update changelog for 10.48.0
  • 2897297 feat(nuxt): Exclude tracing meta tags on cached pages in Nuxt 5 (#20168)
  • 1cc3dd0 chore(deps-dev): Bump effect from 3.20.0 to 3.21.0 (#19999)
  • c273167 fix(core): Fix withStreamedSpan typing error add missing exports (#20124)
  • b6f7b86 feat(core): Apply ignoreSpans to streamed spans (#19934)
  • 7bd8449 test(node,node-core): Add span streaming integration tests (#19806)
  • 51fc6d1 feat(node-core): Add POtel server-side span streaming implementation (#19741)
  • 77357c7 fix(core): Replace global interval with trace-specific interval based flushin...
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.90.21 to 5.99.0

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-devtools@​5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.99.0
    • @​tanstack/react-query@​5.99.0

@​tanstack/react-query-next-experimental@​5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.99.0

@​tanstack/react-query-persist-client@​5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.99.0
    • @​tanstack/react-query@​5.99.0

@​tanstack/react-query@​5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.99.0

@​tanstack/react-query-devtools@​5.98.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.98.0
    • @​tanstack/react-query@​5.98.0

@​tanstack/react-query-next-experimental@​5.98.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.98.0

@​tanstack/react-query-persist-client@​5.98.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.98.0
    • @​tanstack/react-query@​5.98.0

@​tanstack/react-query@​5.98.0

Patch Changes

  • Updated dependencies []:

... (truncated)

Changelog

Sourced from @​tanstack/react-query's changelog.

5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.99.0

5.98.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.98.0

5.97.0

Patch Changes

  • Updated dependencies [2bfb12c]:
    • @​tanstack/query-core@​5.97.0

5.96.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.2

5.96.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.1

5.96.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.0

5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

5.95.1

... (truncated)

Commits

Updates @tanstack/react-query-devtools from 5.91.3 to 5.99.0

Release notes

Sourced from @​tanstack/react-query-devtools's releases.

@​tanstack/react-query-devtools@​5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.99.0
    • @​tanstack/react-query@​5.99.0

@​tanstack/react-query-devtools@​5.98.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.98.0
    • @​tanstack/react-query@​5.98.0
Changelog

Sourced from @​tanstack/react-query-devtools's changelog.

5.99.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.99.0
    • @​tanstack/react-query@​5.99.0

5.98.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.98.0
    • @​tanstack/react-query@​5.98.0

5.97.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.97.0
    • @​tanstack/react-query@​5.97.0

5.96.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.96.2
    • @​tanstack/react-query@​5.96.2

5.96.1

Patch Changes

  • fix(build): exclude config files from production DTS rollup to prevent @types/node type pollution (#10358)

  • Updated dependencies []:

    • @​tanstack/query-devtools@​5.96.1
    • @​tanstack/react-query@​5.96.1

5.96.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.96.0
    • @​tanstack/react-query@​5.96.0

... (truncated)

Commits

Updates @tanstack/react-virtual from 3.13.21 to 3.13.23

Release notes

Sourced from @​tanstack/react-virtual's releases.

@​tanstack/react-virtual@​3.13.23

Patch Changes

  • Updated dependencies [7ece2d5]:
    • @​tanstack/virtual-core@​3.13.23

@​tanstack/react-virtual@​3.13.22

Patch Changes

Changelog

Sourced from @​tanstack/react-virtual's changelog.

3.13.23

Patch Changes

  • Updated dependencies [7ece2d5]:
    • @​tanstack/virtual-core@​3.13.23

3.13.22

Patch Changes

Commits

Updates @vanilla-extract/css from 1.18.0 to 1.20.1

Release notes

Sourced from @​vanilla-extract/css's releases.

@​vanilla-extract/css@​1.20.1

Patch Changes

@​vanilla-extract/css@​1.20.0

Minor Changes

  • #1702 48a9caf Thanks @​bschlenk! - Allow :where and :is in selectors if all selectors target &

    EXAMPLE USAGE:

    const example = style({
      color: 'red',
      selectors: {
        // Valid: all selectors in the list target `example`
        ':is(h1 > &, h2 > &)': { color: 'blue' }
        // Invalid: the second selector in the list does not target `example`
        ':is(h1 > &, h2)': { color: 'blue' }
      }
    });

@​vanilla-extract/css@​1.19.1

Patch Changes

  • #1558 9b1bfd0 Thanks @​andjsrk! - style: Fixed a bug where nested arrays of classnames could cause missing or malformed CSS during style composition in certain situations.

    For example, the following style composition would not generate CSS for the backgroundColor: 'orange' style, and would also generate malformed CSS:

    const styleWithNestedComposition = style([
      [style1, style2],
      { backgroundColor: 'orange' },
      [style3]
    ]);

@​vanilla-extract/css@​1.19.0

Minor Changes

Changelog

Sourced from @​vanilla-extract/css's changelog.

1.20.1

Patch Changes

1.20.0

Minor Changes

  • #1702 48a9caf Thanks @​bschlenk! - Allow :where and :is in selectors if all selectors target &

    EXAMPLE USAGE:

    const example = style({
      color: 'red',
      selectors: {
        // Valid: all selectors in the list target `example`
        ':is(h1 > &, h2 > &)': { color: 'blue' }
        // Invalid: the second selector in the list does not target `example`
        ':is(h1 > &, h2)': { color: 'blue' }
      }
    });

1.19.1

Patch Changes

  • #1558 9b1bfd0 Thanks @​andjsrk! - style: Fixed a bug where nested arrays of classnames could cause missing or malformed CSS during style composition in certain situations.

    For example, the following style composition would not generate CSS for the backgroundColor: 'orange' style, and would also generate malformed CSS:

    const styleWithNestedComposition = style([
      [style1, style2],
      { backgroundColor: 'orange' },
      [style3]
    ]);

1.19.0

Minor Changes

Commits

Updates @vanilla-extract/vite-plugin from 5.1.4 to 5.2.2

Release notes

Sourced from @​vanilla-extract/vite-plugin's releases.

@​vanilla-extract/vite-plugin@​5.2.2

Patch Changes

  • Updated dependencies [1677593]:
    • @​vanilla-extract/compiler@​0.7.0

@​vanilla-extract/vite-plugin@​5.2.1

Patch Changes

  • #1701 b066d1c Thanks @​askoufis! - Reduce unnecessary HMR invalidations and fix broken HMR in Astro, Nuxt and Qwik

  • Updated dependencies [b066d1c]:

    • @​vanilla-extract/compiler@​0.6.0

@​vanilla-extract/vite-plugin@​5.2.0

Minor Changes

Patch Changes

  • Updated dependencies [e29f242]:
    • @​vanilla-extract/compiler@​0.5.0

@​vanilla-extract/vite-plugin@​5.1.5

Patch Changes

Changelog

Sourced from @​vanilla-extract/vite-plugin's changelog.

5.2.2

Patch Changes

  • Updated dependencies [1677593]:
    • @​vanilla-extract/compiler@​0.7.0

5.2.1

Patch Changes

  • #1701 b066d1c Thanks @​askoufis! - Reduce unnecessary HMR invalidations and fix broken HMR in Astro, Nuxt and Qwik

  • Updated dependencies [b066d1c]:

    • @​vanilla-extract/compiler@​0.6.0

5.2.0

Minor Changes

Patch Changes

  • Updated dependencies [e29f242]:
    • @​vanilla-extract/compiler@​0.5.0

5.1.5

Patch Changes

Commits

Updates dayjs from 1.11.19 to 1.11.20

Release notes

Sourced from dayjs's releases.

v1.11.20

1.11.20 (2026-03-12)

Bug Fixes

  • Update locale km.js to support meridiem (#3017) (9d2b6a1)
  • update updateLocale plugin to merge nested object properties instead of replacing (#3012) (99691c5), closes #1118
Changelog

Sourced from dayjs's changelog.

1.11.20 (2026-03-12)

Bug Fixes

  • Update locale km.js to support meridiem (#3017) (9d2b6a1)
  • update updateLocale plugin to merge nested object properties instead of replacing (#3012) (99691c5), closes #1118
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for dayjs since your current version.


Updates framer-motion from 12.34.3 to 12.38.0

Changelog

Sourced from framer-motion's changelog.

[12.38.0] 2026-03-16

Added

  • Added layoutAnchor prop to configure custom anchor point for resolving relative projection boxes.

Fixed

  • Reorder: Fix axis switching after window resize.
  • Reorder: Fix with virtualised lists.
  • AnimatePresence: Ensure children are removed when exit animation matches current values.

[12.37.0] 2026-03-16

Added

  • Support for hardware accelerating "start" and "end" offsets in scroll and useScroll.
  • Support for oklch, oklab, lab, lch, color, color-mix, light-dark color types.

Fixed

  • Fix whileInView with client-side navigation.
  • Fix draggable elements when layout updates due to surrounding element re-renders.
  • Improved memory pressure of layout animations.
  • Ensure motion value returned from useSpring reports correct isAnimating().

[12.36.0] 2026-03-09

Added

  • Allow dragSnapToOrigin to accept "x" or "y" for per-axis snapping.
  • Added axis-locked layout animations with layout="x" and layout="y".
  • Added skipInitialAnimation to useSpring.

Fixed

  • Fixed height and width: auto animations with box-sizing: border-box.
  • Reset component values when exit animation finishes.
  • Ensure anticipate easing returns 1 at p === 1.
  • Fix @emotion/is-prop-valid resolve error in Storybook.
  • Remove data-pop-layout-id from exiting elements when animation interrupted.
  • Ensure we skip WAAPI for non-animatable keyframes.
  • Ensure we skip WAAPI for SVG transforms.
  • Ensure MotionValue props are not passed to SVG.
  • AnimatePresence: Prevent mode="wait" elements from getting stuck when switched rapidly.

[12.35.2] 2026-03-09

Fixed

... (truncated)

Commits
  • 0bfc9fe v12.38.0
  • 343cb0c Updating layoutAnchor
  • ee99ad2 Updating changelog
  • 062660b Updating changgelog
  • 303da7d Updating readme
  • b075adc Merge pull request #3647 from motiondivision/feat/layout-anchor
  • f0991d6 Add missing layoutAnchor !== false guard in attemptToResolveRelativeTarget
  • b5798e9 Merge pull request #3642 from motiondivision/worktree-fix-issue-3078
  • 7686c19 Merge pull request #3636 from motiondivision/worktree-fix-issue-3061
  • a95c487 Fix auto-scroll in reorder-virtualized test page
  • Additional commits viewable in compare view

Updates jotai from 2.18.1 to 2.19.1

Release notes

Sourced from jotai's releases.

v2.19.1

This release includes several small refactors to improve performance.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.19.0...v2.19.1

v2.19.0

We improved the core to enable atom caching for performance for some cases.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.18.1...v2.19.0

Commits
  • 1fae772 2.19.1
  • 7924a8b chore(deps): update dev dependencies (#3306)
  • aa61ef5 test: add spec for #3296 (#3305)
  • 91ffe6d refactor(types): prefer no-any (#3304)
  • e0afc70 fix(internals): check if atom has onMount property before queueing processOnM...
  • b2aafbc fix(internals): check if atom has dependencies before doing mountDependencies...
  • 9b72d0e refactor: flushPending improve performance (#3285)
  • a6392f1 refactor(internals): reduce recomputeInvalidatedAtoms overhead (performance) ...
  • 280f3a0 refactor(internals): replace nextDeps with prevDeps (#3278)
  • 7e07e1b fix(vanilla/utils/atomWithObservable): use symbol index signature to avoid 'S...
  • Additional commits viewable in compare view

Updates pdfjs-dist from 5.5.207 to 5.6.205

Release notes

Sourced from pdfjs-dist's releases.

v5.6.205

This release contains improvements for accessibility, annotation rendering, font conversion, performance, shading pattern rendering, text selection and the viewer.

Changes since v5.5.207

@dependabot dependabot Bot added the internal label Apr 20, 2026
@dependabot dependabot Bot requested review from 7w1 and hazre as code owners April 20, 2026 01:41
Bumps the npm-non-major group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@atlaskit/pragmatic-drag-and-drop](https://github.com/atlassian/pragmatic-drag-and-drop) | `1.7.9` | `1.7.10` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.43.0` | `10.48.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.99.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.91.3` | `5.99.0` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.21` | `3.13.23` |
| [@vanilla-extract/css](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/css) | `1.18.0` | `1.20.1` |
| [@vanilla-extract/vite-plugin](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/vite-plugin) | `5.1.4` | `5.2.2` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.19` | `1.11.20` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.34.3` | `12.38.0` |
| [jotai](https://github.com/pmndrs/jotai) | `2.18.1` | `2.19.1` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `5.5.207` | `5.6.205` |
| [slate](https://github.com/ianstormtaylor/slate) | `0.123.0` | `0.124.1` |
| [slate-dom](https://github.com/ianstormtaylor/slate) | `0.123.0` | `0.124.1` |
| [slate-react](https://github.com/ianstormtaylor/slate) | `0.123.0` | `0.124.0` |
| [virtua](https://github.com/inokawa/virtua) | `0.48.8` | `0.49.1` |
| [@cloudflare/vite-plugin](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare) | `1.27.0` | `1.31.2` |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `2.0.2` | `2.0.5` |
| [@sentry/vite-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `5.1.1` | `5.2.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.0` | `4.1.4` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.1.0` | `4.1.4` |
| [eslint-config-airbnb-extended](https://github.com/eslint-config/airbnb-extended/tree/HEAD/packages/eslint-config-airbnb-extended) | `3.0.1` | `3.1.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.3.0` | `17.5.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `29.0.0` | `29.0.2` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [vite-plugin-compression2](https://github.com/nonzzz/vite-plugin-compression) | `2.5.0` | `2.5.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0` | `4.1.4` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.72.0` | `4.81.1` |



Updates `@atlaskit/pragmatic-drag-and-drop` from 1.7.9 to 1.7.10
- [Commits](https://github.com/atlassian/pragmatic-drag-and-drop/commits)

Updates `@sentry/react` from 10.43.0 to 10.48.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.43.0...10.48.0)

Updates `@tanstack/react-query` from 5.90.21 to 5.99.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.99.0/packages/react-query)

Updates `@tanstack/react-query-devtools` from 5.91.3 to 5.99.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query-devtools@5.99.0/packages/react-query-devtools)

Updates `@tanstack/react-virtual` from 3.13.21 to 3.13.23
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Changelog](https://github.com/TanStack/virtual/blob/main/packages/react-virtual/CHANGELOG.md)
- [Commits](https://github.com/TanStack/virtual/commits/@tanstack/react-virtual@3.13.23/packages/react-virtual)

Updates `@vanilla-extract/css` from 1.18.0 to 1.20.1
- [Release notes](https://github.com/vanilla-extract-css/vanilla-extract/releases)
- [Changelog](https://github.com/vanilla-extract-css/vanilla-extract/blob/master/packages/css/CHANGELOG.md)
- [Commits](https://github.com/vanilla-extract-css/vanilla-extract/commits/@vanilla-extract/css@1.20.1/packages/css)

Updates `@vanilla-extract/vite-plugin` from 5.1.4 to 5.2.2
- [Release notes](https://github.com/vanilla-extract-css/vanilla-extract/releases)
- [Changelog](https://github.com/vanilla-extract-css/vanilla-extract/blob/master/packages/vite-plugin/CHANGELOG.md)
- [Commits](https://github.com/vanilla-extract-css/vanilla-extract/commits/@vanilla-extract/vite-plugin@5.2.2/packages/vite-plugin)

Updates `dayjs` from 1.11.19 to 1.11.20
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.19...v1.11.20)

Updates `framer-motion` from 12.34.3 to 12.38.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.34.3...v12.38.0)

Updates `jotai` from 2.18.1 to 2.19.1
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.18.1...v2.19.1)

Updates `pdfjs-dist` from 5.5.207 to 5.6.205
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v5.5.207...v5.6.205)

Updates `slate` from 0.123.0 to 0.124.1
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/slate@0.123.0...slate@0.124.1)

Updates `slate-dom` from 0.123.0 to 0.124.1
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/slate-dom@0.123.0...slate-dom@0.124.1)

Updates `slate-react` from 0.123.0 to 0.124.0
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/slate-react@0.123.0...slate-react@0.124.0)

Updates `virtua` from 0.48.8 to 0.49.1
- [Release notes](https://github.com/inokawa/virtua/releases)
- [Commits](inokawa/virtua@0.48.8...0.49.1)

Updates `@cloudflare/vite-plugin` from 1.27.0 to 1.31.2
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vite-plugin-cloudflare/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vite-plugin@1.31.2/packages/vite-plugin-cloudflare)

Updates `@eslint/compat` from 2.0.2 to 2.0.5
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/compat-v2.0.5/packages/compat)

Updates `@sentry/vite-plugin` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@5.1.1...5.2.0)

Updates `@vitest/coverage-v8` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/coverage-v8)

Updates `@vitest/ui` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/ui)

Updates `eslint-config-airbnb-extended` from 3.0.1 to 3.1.0
- [Release notes](https://github.com/eslint-config/airbnb-extended/releases)
- [Changelog](https://github.com/eslint-config/airbnb-extended/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint-config/airbnb-extended/commits/V3.1.0/packages/eslint-config-airbnb-extended)

Updates `globals` from 17.3.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.3.0...v17.5.0)

Updates `jsdom` from 29.0.0 to 29.0.2
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v29.0.0...v29.0.2)

Updates `prettier` from 3.8.1 to 3.8.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.1...3.8.2)

Updates `vite-plugin-compression2` from 2.5.0 to 2.5.3
- [Release notes](https://github.com/nonzzz/vite-plugin-compression/releases)
- [Changelog](https://github.com/nonzzz/vite-plugin-compression/blob/master/CHANGELOG.md)
- [Commits](nonzzz/vite-plugin-compression@v2.5.0...v2.5.3)

Updates `vitest` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/vitest)

Updates `wrangler` from 4.72.0 to 4.81.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.81.1/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@atlaskit/pragmatic-drag-and-drop"
  dependency-version: 1.7.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@sentry/react"
  dependency-version: 10.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.13.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@vanilla-extract/css"
  dependency-version: 1.20.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@vanilla-extract/vite-plugin"
  dependency-version: 5.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: dayjs
  dependency-version: 1.11.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: framer-motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: jotai
  dependency-version: 2.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: pdfjs-dist
  dependency-version: 5.6.205
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: slate
  dependency-version: 0.124.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: slate-dom
  dependency-version: 0.124.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: slate-react
  dependency-version: 0.124.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: virtua
  dependency-version: 0.49.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@cloudflare/vite-plugin"
  dependency-version: 1.31.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@eslint/compat"
  dependency-version: 2.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@sentry/vite-plugin"
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: eslint-config-airbnb-extended
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: jsdom
  dependency-version: 29.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: vite-plugin-compression2
  dependency-version: 2.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: wrangler
  dependency-version: 4.81.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-non-major-765ee4257a branch from 5293271 to b1d1487 Compare April 21, 2026 01:38
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 22, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 22, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-non-major-765ee4257a branch April 22, 2026 01:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants