Skip to content

Bump the minor group with 20 updates#11704

Merged
auto-merge-helper[bot] merged 1 commit intomasterfrom
dependabot/npm_and_yarn/minor-d732375da8
Feb 16, 2026
Merged

Bump the minor group with 20 updates#11704
auto-merge-helper[bot] merged 1 commit intomasterfrom
dependabot/npm_and_yarn/minor-d732375da8

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the minor group with 20 updates:

Package From To
@sentry/browser 10.38.0 10.39.0
@sentry/react 10.38.0 10.39.0
@sentry/types 10.38.0 10.39.0
caniuse-lite 1.0.30001769 1.0.30001770
downshift 9.3.0 9.3.1
i18next 25.8.4 25.8.10
immer 11.1.3 11.1.4
@bundle-stats/plugin-webpack-filter 4.21.9 4.21.10
@eslint-react/eslint-plugin 2.12.2 2.13.0
@rspack/cli 1.7.5 1.7.6
@rspack/core 1.7.5 1.7.6
@rspack/plugin-react-refresh 1.6.0 1.6.1
@types/react 19.2.13 19.2.14
@typescript-eslint/eslint-plugin 8.55.0 8.56.0
@typescript-eslint/parser 8.55.0 8.56.0
css-loader 7.1.3 7.1.4
marked 17.0.1 17.0.2
sonda 0.10.2 0.11.0
stylelint 17.1.1 17.3.0
typescript-eslint 8.55.0 8.56.0

Updates @sentry/browser from 10.38.0 to 10.39.0

Release notes

Sourced from @​sentry/browser's releases.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

... (truncated)

Commits
  • ab54c5c Make @sentry/opentelemetry not a peer dep in node-core
  • f822e69 chore: Lint lerna.json
  • c4708d2 release: 10.39.0
  • b5e3094 chore: Revert to lerna v8 (#19294)
  • 9dea581 Merge pull request #19281 from getsentry/prepare-release/10.39.0
  • 12e467f meta(changelog): Update changelog for 10.39.0
  • d7df7d4 ref(sveltekit): Use untrack to read route id without invalidation (#19272)
  • 24b2ef2 fix(sveltekit): Detect used adapter via svelte.config.js (#19270)
  • e051be4 feat(node-core): Add outgoing fetch trace propagation to light mode (#19262)
  • eaf297f ref(core): Move shouldPropagateTraceForUrl from opentelemetry to core (#19258)
  • Additional commits viewable in compare view

Updates @sentry/react from 10.38.0 to 10.39.0

Release notes

Sourced from @​sentry/react's releases.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

... (truncated)

Commits
  • ab54c5c Make @sentry/opentelemetry not a peer dep in node-core
  • f822e69 chore: Lint lerna.json
  • c4708d2 release: 10.39.0
  • b5e3094 chore: Revert to lerna v8 (#19294)
  • 9dea581 Merge pull request #19281 from getsentry/prepare-release/10.39.0
  • 12e467f meta(changelog): Update changelog for 10.39.0
  • d7df7d4 ref(sveltekit): Use untrack to read route id without invalidation (#19272)
  • 24b2ef2 fix(sveltekit): Detect used adapter via svelte.config.js (#19270)
  • e051be4 feat(node-core): Add outgoing fetch trace propagation to light mode (#19262)
  • eaf297f ref(core): Move shouldPropagateTraceForUrl from opentelemetry to core (#19258)
  • Additional commits viewable in compare view

Updates @sentry/types from 10.38.0 to 10.39.0

Release notes

Sourced from @​sentry/types's releases.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/types's changelog.

10.39.0

Important Changes

  • feat(tanstackstart-react): Auto-instrument server function middleware (#19001)

    The sentryTanstackStart Vite plugin now automatically instruments middleware in createServerFn().middleware([...]) calls. This captures performance data without requiring manual wrapping with wrapMiddlewaresWithSentry().

  • feat(nextjs): New experimental automatic vercel cron monitoring (#19192)

    Setting _experimental.vercelCronMonitoring to true in your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.

    Please note that this is an experimental unstable feature and subject to change.

    // next.config.ts
    export default withSentryConfig(nextConfig, {
      _experimental: {
        vercelCronMonitoring: true,
      },
    });
  • feat(node-core): Add node-core/light (#18502)

    This release adds a new light-weight @sentry/node-core/light export to @sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.

    Use this SDK when:

    • You only need error tracking, logs or metrics without tracing data (no spans)
    • You want to minimize bundle size and runtime overhead
    • You don't need spans emitted by OpenTelemetry instrumentation

    It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our Sentry.startSpan* APIs.

    Install the SDK by running

    npm install @sentry/node-core

    and add Sentry at the top of your application's entry file:

    import * as Sentry from '@sentry/node-core/light';
    Sentry.init({
    dsn: 'DSN',
    });

... (truncated)

Commits
  • ab54c5c Make @sentry/opentelemetry not a peer dep in node-core
  • f822e69 chore: Lint lerna.json
  • c4708d2 release: 10.39.0
  • b5e3094 chore: Revert to lerna v8 (#19294)
  • 9dea581 Merge pull request #19281 from getsentry/prepare-release/10.39.0
  • 12e467f meta(changelog): Update changelog for 10.39.0
  • d7df7d4 ref(sveltekit): Use untrack to read route id without invalidation (#19272)
  • 24b2ef2 fix(sveltekit): Detect used adapter via svelte.config.js (#19270)
  • e051be4 feat(node-core): Add outgoing fetch trace propagation to light mode (#19262)
  • eaf297f ref(core): Move shouldPropagateTraceForUrl from opentelemetry to core (#19258)
  • Additional commits viewable in compare view

Updates caniuse-lite from 1.0.30001769 to 1.0.30001770

Commits

Updates downshift from 9.3.0 to 9.3.1

Release notes

Sourced from downshift's releases.

v9.3.1

9.3.1 (2026-02-13)

Bug Fixes

  • useElementIds: prevent Webpack static analysis issue with useId (#1676) (9e79c4e)
Commits

Updates i18next from 25.8.4 to 25.8.10

Release notes

Sourced from i18next's releases.

v25.8.10

  • fix(interpolator): guard null matchedDoubleQuotes in nesting option parsing 2395

v25.8.9

  • fix(interpolator): escape nestingOptionsSeparator in nesting option parsing 223943

v25.8.8

  • types(i18n): add missing toJSON() declaration 2393

v25.8.7

  • avoid crash due to ReferenceError without Intl API 2391

v25.8.6

  • ts: address incomplete type definition for getFixedT() return value 2318

v25.8.5

  • fix: compatibility with moduleResolution bundler (issue 2380) 2381
Changelog

Sourced from i18next's changelog.

25.8.10

  • fix(interpolator): guard null matchedDoubleQuotes in nesting option parsing 2395

25.8.9

  • fix(interpolator): escape nestingOptionsSeparator in nesting option parsing 2394

25.8.8

  • types(i18n): add missing toJSON() declaration 2393

25.8.7

  • avoid crash due to ReferenceError without Intl API 2391

25.8.6

  • ts: address incomplete type definition for getFixedT() return value 2318

25.8.5

  • fix: compatibility with moduleResolution bundler (issue 2380) 2381
Commits

Updates immer from 11.1.3 to 11.1.4

Release notes

Sourced from immer's releases.

v11.1.4

11.1.4 (2026-02-10)

Bug Fixes

  • handle nested proxies after spreading and inserting into an array (90a7765)
Commits
  • cdccf1a Merge pull request #1210 from immerjs/bugfix/1209-array-plugin-nested-drafts
  • 90a7765 fix: handle nested proxies after spreading and inserting into an array
  • See full diff in compare view

Updates @bundle-stats/plugin-webpack-filter from 4.21.9 to 4.21.10

Release notes

Sourced from @​bundle-stats/plugin-webpack-filter's releases.

v4.21.10

What's Changed

Fixes

Update dependencies

Full Changelog: relative-ci/bundle-stats@v4.21.9...v4.21.10

Commits
  • aa50903 v4.21.10
  • 997337b Merge pull request #5560 from relative-ci/fix-rollup-plugin-types
  • b7b3739 fix(rollup-plugin): Export plugin type from vite/rollup
  • 72fe646 Merge pull request #5561 from relative-ci/update-info
  • 14529db doc(rollup-plugin): Update package description/tags
  • bad2f3b Merge pull request #5559 from relative-ci/dependabot/npm_and_yarn/master/webp...
  • 4c6dfa3 build(deps-dev): bump webpack from 5.105.0 to 5.105.1
  • 726de46 Merge pull request #5558 from relative-ci/dependabot/npm_and_yarn/master/roll...
  • 5c98eb8 build(deps): bump rollup-plugin-webpack-stats from 2.1.10 to 2.1.11
  • eab8443 Merge pull request #5555 from relative-ci/dependabot/npm_and_yarn/master/play...
  • Additional commits viewable in compare view

Updates @eslint-react/eslint-plugin from 2.12.2 to 2.13.0

Release notes

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

v2.13.0 (2026-02-15)

What's Changed

✨ New

🐞 Fixes

📝 Changes you should be aware of

  1. The naming-convention/filename rule has been deprecated and will be removed in the next major version.
  2. The naming-convention/filename-extension rule has been deprecated and will be removed in the next major version.

Modern React frameworks each come with their own naming conventions that can differ or even conflict. A single predefined, framework-agnostic filename or filename extension rule no longer matches real-world usage. Please follow the official naming conventions of the specific React framework you are using.

For example, here are some references for popular frameworks:

Full Changelog: Rel1cx/eslint-react@v2.12.4...v2.13.0

v2.12.4 (2026-02-11)

What's Changed

🐞 Fixes

🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.12.2...v2.12.4

Changelog

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

v2.13.0 (2026-02-15)

✨ New

🐞 Fixes

📝 Changes you should be aware of

  1. The naming-convention/filename rule has been deprecated and will be removed in the next major version.
  2. The naming-convention/filename-extension rule has been deprecated and will be removed in the next major version.

Modern React frameworks each come with their own naming conventions that can differ or even conflict. A single predefined, framework-agnostic filename or filename extension rule no longer matches real-world usage. Please follow the official naming conventions of the specific React framework you are using.

For example, here are some references for popular frameworks:

Full Changelog: Rel1cx/eslint-react@v2.12.4...v2.13.0

v2.12.4 (2026-02-11)

🐞 Fixes

🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.12.2...v2.12.4

Commits
  • 2195e1e release: 2.13.0
  • c392405 release: 2.13.0-beta.2
  • 3ec97f9 release: 2.13.0-next.2
  • 5812c9c Deprecate naming-convention/filename and `naming-convention/filename-extens...
  • a321641 release: 2.13.0-beta.1
  • 45f48b1 release: 2.13.0-next.1
  • bb9ca9f Update all preset to include more naming convention rules
  • 0aa3981 feat: add useId name rule (#1497)
  • 09556bb release: 2.13.0-beta.0
  • a522113 release: 2.13.0-next.0
  • Additional commits viewable in compare view

Updates @rspack/cli from 1.7.5 to 1.7.6

Release notes

Sourced from @​rspack/cli's releases.

v1.7.6

What's Changed

Bug Fixes 🐞

Document Updates 📖

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.5...v1.7.6

Commits

Updates @rspack/core from 1.7.5 to 1.7.6

Release notes

Sourced from @​rspack/core's releases.

v1.7.6

What's Changed

Bug Fixes 🐞

Document Updates 📖

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.5...v1.7.6

Commits

Updates @rspack/plugin-react-refresh from 1.6.0 to 1.6.1

Release notes

Sourced from @​rspack/plugin-react-refresh's releases.

v1.6.1

What's Changed

New Contributors

Full Changelog: rstackjs/rspack-plugin-react-refresh@v1.6.0...v1.6.1

Commits

Updates @types/react from 19.2.13 to 19.2.14

Commits

Updates @typescript-eslint/eslint-plugin from 8.55.0 to 8.56.0

Release notes

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

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

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

Commits

Updates @typescript-eslint/parser from 8.55.0 to 8.56.0

Release notes

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

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

8.56.0 (2026-02-16)

🚀 Features

❤️ Thank You

See GitHub Releases for more information.

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

Commits

Updates css-loader from 7.1.3 to 7.1.4

Release notes

Sourced from css-loader's releases.

v7.1.4

7.1.4 (2026-02-16)

Bug Fixes

  • update peer dependency for @​rspack/core v2 (#1652) (aeddefe)
Changelog

Sourced from css-loader's changelog.

7.1.4 (2026-02-16)

Bug Fixes

  • update peer dependency for @​rspack/core v2 (#1652) (aeddefe)
Commits

Updates marked from 17.0.1 to 17.0.2

Release notes

Sourced from marked's releases.

v17.0.2

17.0.2 (2026-02-11)

Bug Fixes

Commits
  • e824620 chore(release): 17.0.2 [skip ci]
  • e031175 fix: fix list item wrong indent (#3889)
  • <...

    Description has been truncated

Bumps the minor group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `10.38.0` | `10.39.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.38.0` | `10.39.0` |
| [@sentry/types](https://github.com/getsentry/sentry-javascript) | `10.38.0` | `10.39.0` |
| [caniuse-lite](https://github.com/browserslist/caniuse-lite) | `1.0.30001769` | `1.0.30001770` |
| [downshift](https://github.com/downshift-js/downshift) | `9.3.0` | `9.3.1` |
| [i18next](https://github.com/i18next/i18next) | `25.8.4` | `25.8.10` |
| [immer](https://github.com/immerjs/immer) | `11.1.3` | `11.1.4` |
| [@bundle-stats/plugin-webpack-filter](https://github.com/relative-ci/bundle-stats) | `4.21.9` | `4.21.10` |
| [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin) | `2.12.2` | `2.13.0` |
| [@rspack/cli](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli) | `1.7.5` | `1.7.6` |
| [@rspack/core](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.5` | `1.7.6` |
| [@rspack/plugin-react-refresh](https://github.com/rstackjs/rspack-plugin-react-refresh) | `1.6.0` | `1.6.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.13` | `19.2.14` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.55.0` | `8.56.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.55.0` | `8.56.0` |
| [css-loader](https://github.com/webpack/css-loader) | `7.1.3` | `7.1.4` |
| [marked](https://github.com/markedjs/marked) | `17.0.1` | `17.0.2` |
| [sonda](https://github.com/filipsobol/sonda/tree/HEAD/packages/sonda) | `0.10.2` | `0.11.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `17.1.1` | `17.3.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.55.0` | `8.56.0` |


Updates `@sentry/browser` from 10.38.0 to 10.39.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.38.0...10.39.0)

Updates `@sentry/react` from 10.38.0 to 10.39.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.38.0...10.39.0)

Updates `@sentry/types` from 10.38.0 to 10.39.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.38.0...10.39.0)

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

Updates `downshift` from 9.3.0 to 9.3.1
- [Release notes](https://github.com/downshift-js/downshift/releases)
- [Changelog](https://github.com/downshift-js/downshift/blob/master/CHANGELOG.md)
- [Commits](downshift-js/downshift@v9.3.0...v9.3.1)

Updates `i18next` from 25.8.4 to 25.8.10
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.8.4...v25.8.10)

Updates `immer` from 11.1.3 to 11.1.4
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v11.1.3...v11.1.4)

Updates `@bundle-stats/plugin-webpack-filter` from 4.21.9 to 4.21.10
- [Release notes](https://github.com/relative-ci/bundle-stats/releases)
- [Commits](relative-ci/bundle-stats@v4.21.9...v4.21.10)

Updates `@eslint-react/eslint-plugin` from 2.12.2 to 2.13.0
- [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.13.0/packages/plugins/eslint-plugin)

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

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

Updates `@rspack/plugin-react-refresh` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/rstackjs/rspack-plugin-react-refresh/releases)
- [Commits](rstackjs/rspack-plugin-react-refresh@v1.6.0...v1.6.1)

Updates `@types/react` from 19.2.13 to 19.2.14
- [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.55.0 to 8.56.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.56.0/packages/eslint-plugin)

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

Updates `css-loader` from 7.1.3 to 7.1.4
- [Release notes](https://github.com/webpack/css-loader/releases)
- [Changelog](https://github.com/webpack/css-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/css-loader@v7.1.3...v7.1.4)

Updates `marked` from 17.0.1 to 17.0.2
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v17.0.1...v17.0.2)

Updates `sonda` from 0.10.2 to 0.11.0
- [Release notes](https://github.com/filipsobol/sonda/releases)
- [Changelog](https://github.com/filipsobol/sonda/blob/main/packages/sonda/CHANGELOG.md)
- [Commits](https://github.com/filipsobol/sonda/commits/sonda@0.11.0/packages/sonda)

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

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

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-version: 10.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@sentry/react"
  dependency-version: 10.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@sentry/types"
  dependency-version: 10.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001770
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: downshift
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: i18next
  dependency-version: 25.8.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: immer
  dependency-version: 11.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@bundle-stats/plugin-webpack-filter"
  dependency-version: 4.21.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@eslint-react/eslint-plugin"
  dependency-version: 2.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@rspack/cli"
  dependency-version: 1.7.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@rspack/core"
  dependency-version: 1.7.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@rspack/plugin-react-refresh"
  dependency-version: 1.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.56.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.56.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: css-loader
  dependency-version: 7.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: marked
  dependency-version: 17.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: sonda
  dependency-version: 0.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: stylelint
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.56.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 16, 2026
@auto-merge-helper auto-merge-helper bot merged commit bef9ba5 into master Feb 16, 2026
4 checks passed
@auto-merge-helper auto-merge-helper bot deleted the dependabot/npm_and_yarn/minor-d732375da8 branch February 16, 2026 19:02
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.

0 participants

Comments