Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Bumps the minor group with 27 updates in the / directory:

Package From To
@babel/runtime 7.28.4 7.28.6
@sentry/browser 10.32.1 10.35.0
@sentry/react 10.32.1 10.35.0
@sentry/types 10.32.1 10.35.0
@tanstack/react-virtual 3.13.17 3.13.18
caniuse-lite 1.0.30001762 1.0.30001765
es-toolkit 1.43.0 1.44.0
i18next 25.7.3 25.7.4
motion 12.24.10 12.27.1
@aaroon/workbox-rspack-plugin 0.3.2 0.3.3
@babel/core 7.28.5 7.28.6
@babel/plugin-transform-typescript 7.28.5 7.28.6
@babel/preset-env 7.28.5 7.28.6
@babel/register 7.28.3 7.28.6
@eslint-react/eslint-plugin 2.5.1 2.7.2
@eslint/compat 2.0.0 2.0.1
@rspack/cli 1.7.1 1.7.2
@rspack/core 1.7.1 1.7.2
@testing-library/react 16.3.1 16.3.2
@types/react 19.2.7 19.2.8
@typescript-eslint/eslint-plugin 8.52.0 8.53.1
@typescript-eslint/parser 8.52.0 8.53.1
html-webpack-plugin 5.6.5 5.6.6
json-sort-cli 4.1.0 4.1.3
prettier 3.7.4 3.8.0
ts-checker-rspack-plugin 1.2.3 1.2.4
typescript-eslint 8.52.0 8.53.1

Updates @babel/runtime from 7.28.4 to 7.28.6

Release notes

Sourced from @​babel/runtime's releases.

v7.28.6 (2026-01-12)

Thanks @​kadhirash and @​kolvian for your first PRs!

🐛 Bug Fix

  • babel-cli, babel-code-frame, babel-core, babel-helper-check-duplicate-nodes, babel-helper-fixtures, babel-helper-plugin-utils, babel-node, babel-plugin-transform-flow-comments, babel-plugin-transform-modules-commonjs, babel-plugin-transform-property-mutators, babel-preset-env, babel-traverse, babel-types
  • babel-plugin-transform-regenerator
  • babel-plugin-transform-react-jsx

💅 Polish

  • babel-core, babel-standalone

🏠 Internal

  • babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-plugin-proposal-decorators, babel-plugin-proposal-import-attributes-to-assertions, babel-plugin-proposal-import-wasm-source, babel-plugin-syntax-async-do-expressions, babel-plugin-syntax-decorators, babel-plugin-syntax-destructuring-private, babel-plugin-syntax-do-expressions, babel-plugin-syntax-explicit-resource-management, babel-plugin-syntax-export-default-from, babel-plugin-syntax-flow, babel-plugin-syntax-function-bind, babel-plugin-syntax-function-sent, babel-plugin-syntax-import-assertions, babel-plugin-syntax-import-attributes, babel-plugin-syntax-import-defer, babel-plugin-syntax-import-source, babel-plugin-syntax-jsx, babel-plugin-syntax-module-blocks, babel-plugin-syntax-optional-chaining-assign, babel-plugin-syntax-partial-application, babel-plugin-syntax-pipeline-operator, babel-plugin-syntax-throw-expressions, babel-plugin-syntax-typescript, babel-plugin-transform-async-generator-functions, babel-plugin-transform-async-to-generator, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-dotall-regex, babel-plugin-transform-duplicate-named-capturing-groups-regex, babel-plugin-transform-explicit-resource-management, babel-plugin-transform-exponentiation-operator, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-methods, babel-plugin-transform-private-property-in-object, babel-plugin-transform-regexp-modifiers, babel-plugin-transform-unicode-property-regex, babel-plugin-transform-unicode-sets-regex

🏃‍♀️ Performance

  • babel-plugin-transform-react-jsx

Committers: 7

v7.28.5 (2025-10-23)

Thank you @​CO0Ki3, @​Olexandr88, and @​youthfulhps for your first PRs!

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring

... (truncated)

Changelog

Sourced from @​babel/runtime's changelog.

Changelog

Tags:

  • 💥 [Breaking Change]
  • 👓 [Spec Compliance]
  • 🚀 [New Feature]
  • 🐛 [Bug Fix]
  • 📝 [Documentation]
  • 🏠 [Internal]
  • 💅 [Polish]

Note: Gaps between patch versions are faulty, broken or test releases.

This file contains the changelog starting from v7.15.0.

v7.28.5 (2025-10-23)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

... (truncated)

Commits
Maintainer changes

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


Updates @sentry/browser from 10.32.1 to 10.35.0

Release notes

Sourced from @​sentry/browser's releases.

10.35.0

Important Changes

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

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

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

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

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.35.0

Important Changes

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

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

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#18785)
  • feat(browser): Add shim package for logs (#18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#18855)
  • feat(core): Add ignored client report event drop reason (#18815)
  • feat(logs): Add Log exports to browser and node packages (#18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#18852)
  • fix(core): Find the correct IP address regardless their case (#18880)
  • fix(core): Check for AI operation id to detect a vercelai span (#18823)
  • fix(ember): Use ES5 syntax in inline vendor scripts (#18858)
  • fix(fetch): Shallow-clone fetch options to prevent mutation (#18867)
  • chore(ci): Use javascript-sdk-gitflow app instead of personal token (#18829)
  • chore(deps): Bump @sveltejs/kit devDependency to 2.49.5 (#18848)
  • chore(deps): Bump bundler plugins to ^4.6.2 (#18822)
  • chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono (#18806)
  • chore(test): Bump svelte dependencies (#18850)
  • chore(core): Comment out Error tests in langchain (#18837)
  • meta(changelog): Fix entry for tanstack start vite plugin (#18883)
  • test(e2e): Add testing app for User Feedback (#18877)

... (truncated)

Commits
  • 265df1f release: 10.35.0
  • 024f819 Merge pull request #18886 from getsentry/prepare-release/10.35.0
  • 8160ada meta(changelog): Update changelog for 10.35.0
  • d503a8d meta(changelog): Fix entry for tanstack start vite plugin (#18883)
  • d2df7f6 fix(core): Find the correct IP address regardless their case (#18880)
  • 75b183d feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA i...
  • df0bff8 test(fastify): Verify if upstream error is fixed and won't regress (#18838)
  • cef02b8 test(e2e): Add testing app for User Feedback (#18877)
  • d353444 chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-...
  • 32d8fda fix(fetch): Shallow-clone fetch options to prevent mutation (#18867)
  • Additional commits viewable in compare view

Updates @sentry/react from 10.32.1 to 10.35.0

Release notes

Sourced from @​sentry/react's releases.

10.35.0

Important Changes

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

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

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

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

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.35.0

Important Changes

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

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

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#18785)
  • feat(browser): Add shim package for logs (#18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#18855)
  • feat(core): Add ignored client report event drop reason (#18815)
  • feat(logs): Add Log exports to browser and node packages (#18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#18852)
  • fix(core): Find the correct IP address regardless their case (#18880)
  • fix(core): Check for AI operation id to detect a vercelai span (#18823)
  • fix(ember): Use ES5 syntax in inline vendor scripts (#18858)
  • fix(fetch): Shallow-clone fetch options to prevent mutation (#18867)
  • chore(ci): Use javascript-sdk-gitflow app instead of personal token (#18829)
  • chore(deps): Bump @sveltejs/kit devDependency to 2.49.5 (#18848)
  • chore(deps): Bump bundler plugins to ^4.6.2 (#18822)
  • chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono (#18806)
  • chore(test): Bump svelte dependencies (#18850)
  • chore(core): Comment out Error tests in langchain (#18837)
  • meta(changelog): Fix entry for tanstack start vite plugin (#18883)
  • test(e2e): Add testing app for User Feedback (#18877)

... (truncated)

Commits
  • 265df1f release: 10.35.0
  • 024f819 Merge pull request #18886 from getsentry/prepare-release/10.35.0
  • 8160ada meta(changelog): Update changelog for 10.35.0
  • d503a8d meta(changelog): Fix entry for tanstack start vite plugin (#18883)
  • d2df7f6 fix(core): Find the correct IP address regardless their case (#18880)
  • 75b183d feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA i...
  • df0bff8 test(fastify): Verify if upstream error is fixed and won't regress (#18838)
  • cef02b8 test(e2e): Add testing app for User Feedback (#18877)
  • d353444 chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-...
  • 32d8fda fix(fetch): Shallow-clone fetch options to prevent mutation (#18867)
  • Additional commits viewable in compare view

Updates @sentry/types from 10.32.1 to 10.35.0

Release notes

Sourced from @​sentry/types's releases.

10.35.0

Important Changes

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

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

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

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

... (truncated)

Changelog

Sourced from @​sentry/types's changelog.

10.35.0

Important Changes

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

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

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#18785)
  • feat(browser): Add shim package for logs (#18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#18855)
  • feat(core): Add ignored client report event drop reason (#18815)
  • feat(logs): Add Log exports to browser and node packages (#18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#18852)
  • fix(core): Find the correct IP address regardless their case (#18880)
  • fix(core): Check for AI operation id to detect a vercelai span (#18823)
  • fix(ember): Use ES5 syntax in inline vendor scripts (#18858)
  • fix(fetch): Shallow-clone fetch options to prevent mutation (#18867)
  • chore(ci): Use javascript-sdk-gitflow app instead of personal token (#18829)
  • chore(deps): Bump @sveltejs/kit devDependency to 2.49.5 (#18848)
  • chore(deps): Bump bundler plugins to ^4.6.2 (#18822)
  • chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-applications/cloudflare-hono (#18806)
  • chore(test): Bump svelte dependencies (#18850)
  • chore(core): Comment out Error tests in langchain (#18837)
  • meta(changelog): Fix entry for tanstack start vite plugin (#18883)
  • test(e2e): Add testing app for User Feedback (#18877)

... (truncated)

Commits
  • 265df1f release: 10.35.0
  • 024f819 Merge pull request #18886 from getsentry/prepare-release/10.35.0
  • 8160ada meta(changelog): Update changelog for 10.35.0
  • d503a8d meta(changelog): Fix entry for tanstack start vite plugin (#18883)
  • d2df7f6 fix(core): Find the correct IP address regardless their case (#18880)
  • 75b183d feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA i...
  • df0bff8 test(fastify): Verify if upstream error is fixed and won't regress (#18838)
  • cef02b8 test(e2e): Add testing app for User Feedback (#18877)
  • d353444 chore(deps): bump hono from 4.10.3 to 4.11.4 in /dev-packages/e2e-tests/test-...
  • 32d8fda fix(fetch): Shallow-clone fetch options to prevent mutation (#18867)
  • Additional commits viewable in compare view

Updates @tanstack/react-virtual from 3.13.17 to 3.13.18

Release notes

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

@​tanstack/react-virtual@​3.13.18

Patch Changes

  • Updated dependencies [9067574]:
    • @​tanstack/virtual-core@​3.13.18
Changelog

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

3.13.18

Patch Changes

  • Updated dependencies [9067574]:
    • @​tanstack/virtual-core@​3.13.18
Commits

Updates caniuse-lite from 1.0.30001762 to 1.0.30001765

Commits

Updates es-toolkit from 1.43.0 to 1.44.0

Release notes

Sourced from es-toolkit's releases.

v1.44.0

Released on January 16th, 2026.

We sincerely thank @​raon0211, @​dayongkr, @​eunwoo-levi, @​matt-oakes, @​T3sT3ro, and @​D-Sketon for their contributions. We appreciate your great efforts!

Changelog

Sourced from es-toolkit's changelog.

Version v1.44.0

Released on January 16th, 2026.

  • Added shouldRetry option to retry function. (#1585)
  • Added isEmptyObject predicate function. (#1584)
  • Added isNumber predicate function.
  • Enhanced error cloning to support AggregateError. (#1563)
  • Implemented collection methods for Maps and Sets.
  • Added bundle size analysis and visualization components to docs. (#1564)
  • Fixed flattenObject to retain empty objects and arrays.
  • Enhanced type safety for clone function.
  • Fixed clone error when cloning object with null prototype. (#1570)
  • Fixed array function callbacks to include index and array parameters. (#1561)
  • Fixed compat/cloneDeep and cloneDeepWith to clone null-prototype objects as regular objects. (#1562)
  • Fixed compat/clamp to ensure consistency with lodash. (#1555)
  • Simplified intersection filter callback for consistency. (#1582)
  • Fixed incorrect function names and output in cloneDeep JSDoc examples. (#1583)

We sincerely thank @​raon0211, @​dayongkr, @​eunwoo-levi, @​matt-oakes, @​T3sT3ro, and @​D-Sketon for their contributions. We appreciate your great efforts!

Commits
  • bb5068e v1.44.0
  • bc2b3b7 feat(retry): add shouldRetry option (#1585)
  • 5fa7974 fix(flattenObject): flattenObject should retain empty objects and arrays
  • 50339c3 feat(predicate): add isEmptyObject function (#1584)
  • af81d8c chore[intersection]: simplify filter callback for consistency (#1582)
  • 5e23d82 docs[cloneDeep]: Fix incorrect function names and output in JSDoc examples (#...
  • 9a9b24e chore: fix lint error
  • 9686e51 chore: fix lint error
  • ca86015 feat(predicate): add isNumber function
  • 20796ec fix(clone): Enhance type safety for clone
  • Additional commits viewable in compare view

Updates i18next from 25.7.3 to 25.7.4

Release notes

Sourced from i18next's releases.

v25.7.4

  • fix: Interpolation breaks when cloning an instance 2376
Changelog

Sourced from i18next's changelog.

25.7.4

  • fix: Interpolation breaks when cloning an instance 2376
Commits

Updates motion from 12.24.10 to 12.27.1

Changelog

Sourced from motion's changelog.

[12.27.1] 2026-01-19

Fixed

  • Improving projection node cleanup.

[12.27.0] 2026-01-18

Added

  • Adding new exports for internal use.

[12.26.2] 2026-01-13

Fixed

  • Internal refactor of projection system into motion-dom.

[12.26.1] 2026-01-12

Fixed

  • Improve overload selection for useTransform.

[12.26.0] 2026-01-12

Added

  • Support for multiple output value maps with useTransform.

[12.25.0] 2026-01-09

Added

  • Support for auto-scrolling when a Reorder.Item reaches the edges of its parent scrollable container.

[12.24.12] 2026-01-08

Fixed

  • Draggable elements now track pointer during page and element scroll.

[12.24.11] 2026-01-08

Fixed

  • Fixed time sampling of GPU animations under heavy CPU load.
Commits

Updates @aaroon/workbox-rspack-plugin from 0.3.2 to 0.3.3

Changelog

Sourced from @​aaroon/workbox-rspack-plugin's changelog.

0.3.3 (2026-01-19)

Chores

  • update GitHub Actions and pnpm configuration (fb0014ec)
  • update workbox version (9d9d9c05)
Commits
  • f01ed59 chore(release): 0.3.3
  • fb0014e chore: update GitHub Actions and pnpm configuration
  • 9d9d9c0 chore: update workbox version
  • See full diff in compare viewDescription has been truncated

Bumps the minor group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.28.4` | `7.28.6` |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `10.32.1` | `10.35.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.32.1` | `10.35.0` |
| [@sentry/types](https://github.com/getsentry/sentry-javascript) | `10.32.1` | `10.35.0` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.17` | `3.13.18` |
| [caniuse-lite](https://github.com/browserslist/caniuse-lite) | `1.0.30001762` | `1.0.30001765` |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.43.0` | `1.44.0` |
| [i18next](https://github.com/i18next/i18next) | `25.7.3` | `25.7.4` |
| [motion](https://github.com/motiondivision/motion) | `12.24.10` | `12.27.1` |
| [@aaroon/workbox-rspack-plugin](https://github.com/Clarkkkk/workbox-rspack-plugin) | `0.3.2` | `0.3.3` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.5` | `7.28.6` |
| [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.28.5` | `7.28.6` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.28.5` | `7.28.6` |
| [@babel/register](https://github.com/babel/babel/tree/HEAD/packages/babel-register) | `7.28.3` | `7.28.6` |
| [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin) | `2.5.1` | `2.7.2` |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `2.0.0` | `2.0.1` |
| [@rspack/cli](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli) | `1.7.1` | `1.7.2` |
| [@rspack/core](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.1` | `1.7.2` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.1` | `16.3.2` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.7` | `19.2.8` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.52.0` | `8.53.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.52.0` | `8.53.1` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.6.5` | `5.6.6` |
| [json-sort-cli](https://github.com/codsen/codsen/tree/HEAD/packages/json-sort-cli) | `4.1.0` | `4.1.3` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.0` |
| [ts-checker-rspack-plugin](https://github.com/rstackjs/ts-checker-rspack-plugin) | `1.2.3` | `1.2.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.52.0` | `8.53.1` |



Updates `@babel/runtime` from 7.28.4 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-runtime)

Updates `@sentry/browser` from 10.32.1 to 10.35.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.32.1...10.35.0)

Updates `@sentry/react` from 10.32.1 to 10.35.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.32.1...10.35.0)

Updates `@sentry/types` from 10.32.1 to 10.35.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.32.1...10.35.0)

Updates `@tanstack/react-virtual` from 3.13.17 to 3.13.18
- [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/[email protected]/packages/react-virtual)

Updates `caniuse-lite` from 1.0.30001762 to 1.0.30001765
- [Commits](browserslist/caniuse-lite@1.0.30001762...1.0.30001765)

Updates `es-toolkit` from 1.43.0 to 1.44.0
- [Release notes](https://github.com/toss/es-toolkit/releases)
- [Changelog](https://github.com/toss/es-toolkit/blob/main/CHANGELOG.md)
- [Commits](toss/es-toolkit@v1.43.0...v1.44.0)

Updates `i18next` from 25.7.3 to 25.7.4
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.7.3...v25.7.4)

Updates `motion` from 12.24.10 to 12.27.1
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.24.10...v12.27.1)

Updates `@aaroon/workbox-rspack-plugin` from 0.3.2 to 0.3.3
- [Changelog](https://github.com/Clarkkkk/workbox-rspack-plugin/blob/main/CHANGELOG.md)
- [Commits](Clarkkkk/workbox-rspack-plugin@v0.3.2...v0.3.3)

Updates `@babel/core` from 7.28.5 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-core)

Updates `@babel/plugin-transform-typescript` from 7.28.5 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-plugin-transform-typescript)

Updates `@babel/preset-env` from 7.28.5 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-preset-env)

Updates `@babel/register` from 7.28.3 to 7.28.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.6/packages/babel-register)

Updates `@eslint-react/eslint-plugin` from 2.5.1 to 2.7.2
- [Release notes](https://github.com/Rel1cx/eslint-react/releases)
- [Changelog](https://github.com/Rel1cx/eslint-react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Rel1cx/eslint-react/commits/v2.7.2/packages/plugins/eslint-plugin)

Updates `@eslint/compat` from 2.0.0 to 2.0.1
- [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.1/packages/compat)

Updates `@rspack/cli` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.2/packages/rspack-cli)

Updates `@rspack/core` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.2/packages/rspack)

Updates `@testing-library/react` from 16.3.1 to 16.3.2
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.1...v16.3.2)

Updates `@types/react` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@typescript-eslint/eslint-plugin` from 8.52.0 to 8.53.1
- [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.53.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.52.0 to 8.53.1
- [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.53.1/packages/parser)

Updates `html-webpack-plugin` from 5.6.5 to 5.6.6
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.6.5...v5.6.6)

Updates `json-sort-cli` from 4.1.0 to 4.1.3
- [Changelog](https://github.com/codsen/codsen/blob/[email protected]/packages/json-sort-cli/CHANGELOG.md)
- [Commits](https://github.com/codsen/codsen/commits/[email protected]/packages/json-sort-cli)

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

Updates `ts-checker-rspack-plugin` from 1.2.3 to 1.2.4
- [Release notes](https://github.com/rstackjs/ts-checker-rspack-plugin/releases)
- [Commits](rstackjs/ts-checker-rspack-plugin@v1.2.3...v1.2.4)

Updates `typescript-eslint` from 8.52.0 to 8.53.1
- [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.53.1/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@babel/runtime"
  dependency-version: 7.28.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@sentry/browser"
  dependency-version: 10.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@sentry/react"
  dependency-version: 10.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@sentry/types"
  dependency-version: 10.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.13.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001765
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: es-toolkit
  dependency-version: 1.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: i18next
  dependency-version: 25.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: motion
  dependency-version: 12.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@aaroon/workbox-rspack-plugin"
  dependency-version: 0.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@babel/core"
  dependency-version: 7.28.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@babel/plugin-transform-typescript"
  dependency-version: 7.28.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@babel/preset-env"
  dependency-version: 7.28.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@babel/register"
  dependency-version: 7.28.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@eslint-react/eslint-plugin"
  dependency-version: 2.7.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@eslint/compat"
  dependency-version: 2.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@rspack/cli"
  dependency-version: 1.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@rspack/core"
  dependency-version: 1.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/react"
  dependency-version: 19.2.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.53.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.53.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: html-webpack-plugin
  dependency-version: 5.6.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: json-sort-cli
  dependency-version: 4.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: ts-checker-rspack-plugin
  dependency-version: 1.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.53.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 Jan 19, 2026
@auto-merge-helper auto-merge-helper bot enabled auto-merge January 19, 2026 19:49
@bhollis
Copy link
Contributor

bhollis commented Jan 24, 2026

@copilot please fix all the build errors introduced by package upgrades in this PR. One problem seems to relate to how we're using the workbox rspack plugin to build our service worker, and the other seems to be a problem with our babel config excluding a corejs polyfill that may no longer exist. You will know you are done when pnpm lint and pnpm build:pr both work.

Copy link
Contributor

Copilot AI commented Jan 24, 2026

@bhollis I've opened a new pull request, #11680, to work on those changes. Once the pull request is ready, I'll request review from you.

@auto-merge-helper auto-merge-helper bot merged commit f7f5840 into master Jan 24, 2026
4 checks passed
@auto-merge-helper auto-merge-helper bot deleted the dependabot/npm_and_yarn/minor-282734b224 branch January 24, 2026 23:14
bhollis added a commit that referenced this pull request Jan 25, 2026
…npm_and_yarn/minor-282734b224"

This reverts commit f7f5840, reversing
changes made to 6c7f20f.
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.

2 participants