Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 17, 2025

Bumps the safe group with 15 updates in the / directory:

Package From To
@tabler/icons-react 3.35.0 3.36.0
@reduxjs/toolkit 2.11.0 2.11.2
@sentry/react 10.27.0 10.31.0
react-apexcharts 1.8.0 1.9.0
react-focus-lock 2.13.6 2.13.7
react-remove-scroll 2.7.1 2.7.2
@inquirer/prompts 8.0.1 8.1.0
@pmmmwh/react-refresh-webpack-plugin 0.6.1 0.6.2
@storybook/cli 10.0.8 10.1.9
cypress 15.7.0 15.8.0
eslint-plugin-jsdoc 61.4.1 61.5.0
mjml 4.17.1 4.18.0
prettier 3.6.2 3.7.4
stylelint 16.26.0 16.26.1
webpack 5.103.0 5.104.0

Updates @tabler/icons-react from 3.35.0 to 3.36.0

Release notes

Sourced from @​tabler/icons-react's releases.

Release 3.36.0

18 new icons:

  • outline/alphabet-polish
  • outline/alphabet-runes
  • outline/blind
  • outline/brand-tabnine
  • outline/circle-asterisk
  • outline/deaf
  • outline/hexagon-asterisk
  • outline/ripple-down
  • outline/ripple-up
  • outline/rosette-asterisk
  • outline/settings-ai
  • outline/sparkles-2
  • outline/square-rotated-asterisk
  • outline/subtitles-ai
  • outline/subtitles-edit
  • outline/subtitles-off
  • outline/subtitles
  • outline/whisk

Fixed icons

Fixed over 2000 icons with improved category formatting, consistent newline usage, and enhanced accessibility tags.

New features

  • Svelte 5 (Runes) support: Added new @tabler/icons-svelte-runes package for Svelte 5 with Runes syntax
  • GitHub Actions workflow: Added automated workflow to sync icons to CDN
  • Enhanced accessibility: All outline icons now have proper categories and tags for improved accessibility

Performance improvements

  • Optimized build process: Refactored build-outline.mjs with:
    • Increased concurrency from 32 to 64 for faster processing
    • Parallel file processing and copying
    • Improved cache handling and error management
    • Better progress tracking and logging
  • Removed Python dependency: Replaced fix-outline.py with JavaScript implementation (fix-outline.mjs)

Other changes

  • Fixed ref types in icons-react package
  • Improved TypeScript configuration for better type checking
Commits

Updates @reduxjs/toolkit from 2.11.0 to 2.11.2

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.11.2

This bugfix release updates the AbortSignal handling to fall back if DOMException isn't available (such as RN environments), and updates the TypedUseInfiniteQueryHookResult type to correctly include fetchNextPage/fetchPreviousPage fields.

Changelog

Bugfixes

The AbortSignal changes in 2.11.1 used DOMException in a couple places to match the expected behavior of AbortSignal, but turns out that's not available in environments like React Native. We've updated the logic to fall back to a plain Error if DOMException isn't available.

The TypedUseInfiniteQueryHookResult type wasn't correctly including the fetchNextPage/fetchPreviousPage fields, and now it does.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.11.1...v2.11.2

v2.11.1

This bugfix release fixes an issue with our internal AbortSignal handling that was reported as causing an error in a rare reset situation. We've also restructured our publishing process to use NPM Trusted Publishing, and updated our TS support matrix to only support TS 5.4+.

Changelog

Publishing Changes

We've previously done most of our releases semi-manually locally, with various release process CLI tools. With the changes to NPM publishing security and the recent wave of NPM attacks, we've updated our publishing process to solely use NPM Trusted Publishing via workflows. We've also done a hardening pass on our own CI setup.

We had done a couple releases via CI workflows previously, and later semi-manual releases caused PNPM to warn that RTK was no longer trusted. This release should be trusted and will resolve that issue.

Thanks to the e18e folks and their excellent guide at https://e18e.dev/docs/publishing for making this process easier!

TS Support Matrix Updates

We've previously mentioned rolling changes to our TS support matrix in release notes, but didn't officially document our support policy. We've added a description of the support policy (last 2 years of TS releases, matching DefinitelyTyped) and the current oldest TS version we support in the docs:

As of today, we've updated the support matrix to be TS 5.4+ . As always, it's possible RTK will work if you're using an earlier version of TS, but we don't test against earlier versions and don't support any issues with those versions.

We have run an initial test with the upcoming TS 7.0 native tsgo release. We found a couple minor issues with our own TS build and test setup, but no obvious issues with using RTK with TS 7.0.

Bug Fixes

A user reported a rare edge case where the combination of resetApiState and retry() could lead to an error calling an AbortController. We've restructured our AbortController handling logic to avoid that (and simplified a bit of our internals in the process).

What's Changed

... (truncated)

Commits
Maintainer changes

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


Updates @sentry/react from 10.27.0 to 10.31.0

Release notes

Sourced from @​sentry/react's releases.

10.31.0

Important Changes

  • feat(browser): Add support for GraphQL persisted operations (#18505)

The graphqlClientIntegration now supports GraphQL persisted operations (queries). When a persisted query is detected, the integration will capture the operation hash and version as span attributes:

  • graphql.persisted_query.hash.sha256 - The SHA-256 hash of the persisted query
  • graphql.persisted_query.version - The version of the persisted query protocol

Additionally, the graphql.document attribute format has changed to align with OpenTelemetry semantic conventions. It now contains only the GraphQL query string instead of the full JSON request payload.

Before:

"graphql.document": "{\"query\":\"query Test { user { id } }\"}"

After:

"graphql.document": "query Test { user { id } }"

Other Changes

  • feat(node): Support propagateTraceparent option (#18476)
  • feat(bun): Expose spotlight option in TypeScript (#18436)
  • feat(core): Add additional exports for captureException and captureMessage parameter types (#18521)
  • feat(core): Export captureException and captureMessage parameter types (#18509)
  • feat(core): Parse individual cookies from cookie header (#18325)
  • feat(node): Add instrument OpenAI export to node (#18461)
  • feat(nuxt): Bump @sentry/vite-plugin and @sentry/rollup-plugin to 4.6.1 (#18349)
  • feat(profiling): Add support for Node v24 in the prune script (#18447)
  • feat(tracing): strip inline media from messages (#18413)
  • feat(node): Add ESM support for postgres.js instrumentation (#17961)
  • fix(browser): Stringify span context in linked traces log statement (#18376)
  • fix(google-cloud-serverless): Move @​types/express to optional peerDeps (#18452)
  • fix(node-core): passthrough node-cron context (#17835)
  • fix(tanstack-router): Check for fromLocation existence before reporting pageload (#18463)
  • fix(tracing): add system prompt, model to google genai (#18424)
  • fix(tracing): Set span operations for AI spans with model ID only (#18471)
  • ref(browser): Improve profiling debug statement (#18507)
  • chore: Add external contributor to CHANGELOG.md (#18473)
  • chore: upgrade Playwright to ~1.56.0 for WSL2 compatibility (#18468)
  • chore(bugbot): Add testing conventions code review rules (#18433)

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.31.0

Important Changes

  • feat(browser): Add support for GraphQL persisted operations (#18505)

The graphqlClientIntegration now supports GraphQL persisted operations (queries). When a persisted query is detected, the integration will capture the operation hash and version as span attributes:

  • graphql.persisted_query.hash.sha256 - The SHA-256 hash of the persisted query
  • graphql.persisted_query.version - The version of the persisted query protocol

Additionally, the graphql.document attribute format has changed to align with OpenTelemetry semantic conventions. It now contains only the GraphQL query string instead of the full JSON request payload.

Before:

"graphql.document": "{\"query\":\"query Test { user { id } }\"}"

After:

"graphql.document": "query Test { user { id } }"

Other Changes

  • feat(node): Support propagateTraceparent option (#18476)
  • feat(bun): Expose spotlight option in TypeScript (#18436)
  • feat(core): Add additional exports for captureException and captureMessage parameter types (#18521)
  • feat(core): Export captureException and captureMessage parameter types (#18509)
  • feat(core): Parse individual cookies from cookie header (#18325)
  • feat(node): Add instrument OpenAI export to node (#18461)
  • feat(nuxt): Bump @sentry/vite-plugin and @sentry/rollup-plugin to 4.6.1 (#18349)
  • feat(profiling): Add support for Node v24 in the prune script (#18447)
  • feat(tracing): strip inline media from messages (#18413)
  • feat(node): Add ESM support for postgres.js instrumentation (#17961)
  • fix(browser): Stringify span context in linked traces log statement (#18376)
  • fix(google-cloud-serverless): Move @​types/express to optional peerDeps (#18452)
  • fix(node-core): passthrough node-cron context (#17835)
  • fix(tanstack-router): Check for fromLocation existence before reporting pageload (#18463)
  • fix(tracing): add system prompt, model to google genai (#18424)
  • fix(tracing): Set span operations for AI spans with model ID only (#18471)
  • ref(browser): Improve profiling debug statement (#18507)
  • chore: Add external contributor to CHANGELOG.md (#18473)
  • chore: upgrade Playwright to ~1.56.0 for WSL2 compatibility (#18468)

... (truncated)

Commits
  • bb70f39 release: 10.31.0
  • f2574f9 meta(changelog): Update changelog for 10.31.0 (#18526)
  • 47e82e3 meta(changelog): Update changelog for 10.31.0
  • 8acba7f feat(node): Support propagateTraceparent
  • 87d04c4 Merge branch 'develop' into timfish/feat/node-propagateTraceparent
  • 6f0b8b4 feat(core): Add additional exports for captureException and `captureMessage...
  • a882862 chore(deps): bump next from 14.2.32 to 14.2.35 in /dev-packages/e2e-tests/tes...
  • 4068b57 test(cloudflare-mcp): Pin mcp sdk to 1.24.0 (#18524)
  • e42e912 feat(core): Export captureException and captureMessage parameter types (#...
  • ffe1614 chore(deps): bump next from 16.0.9 to 16.0.10 in /dev-packages/e2e-tests/test...
  • Additional commits viewable in compare view

Updates react-apexcharts from 1.8.0 to 1.9.0

Commits

Updates react-focus-lock from 2.13.6 to 2.13.7

Changelog

Sourced from react-focus-lock's changelog.

2.13.7 (2025-11-29)

Bug Fixes

  • correct Context instability leading to hydration failure (#388, #377) (0986de6)
Commits

Updates react-remove-scroll from 2.7.1 to 2.7.2

Commits

Updates @inquirer/prompts from 8.0.1 to 8.1.0

Release notes

Sourced from @​inquirer/prompts's releases.

@​inquirer/prompts@​8.1.0

  • Feat: rawlist now supports default option.
  • Fix: select now infer return type properly when passing a choices array of string literals.

@​inquirer/prompts@​8.0.2

  • Fix Typescript not discovering types when moduleResolution is set to commonjs (you probably want to fix that in your project if it's still in your tsconfig)
Commits
  • 7eedd8e chore: Publish new release
  • 23201ba feat(@​inquirer/rawlist) Add support for default
  • 8713b89 fix(@​inquirer/select) Review default typing to no infer valid value
  • d05ce35 fix(@​inquirer/testing): preserve Value type inference in render()
  • cfef911 fix(@​inquirer/select): infer Value type from string[] choices
  • 6dda7b6 feat(@​inquirer/core): Add shift to KeypressEvent
  • 24ec7ee Chore(deps): Bump type-fest from 5.3.0 to 5.3.1 in the types group
  • 3759e85 Chore(deps-dev): Bump turbo from 2.6.1 to 2.6.3 in the build group
  • 9c72429 chore: Publish new release
  • e874a21 fix: Refresh yarn setup. Fixes #1902
  • Additional commits viewable in compare view

Updates @pmmmwh/react-refresh-webpack-plugin from 0.6.1 to 0.6.2

Release notes

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

v0.6.2

0.6.2 (26 Nov 2025)

Fixes

  • Relaxed peer dependency requirement on type-fest to allow v5.x (#934)
Changelog

Sourced from @​pmmmwh/react-refresh-webpack-plugin's changelog.

0.6.2 (26 Nov 2025)

Fixes

  • Relaxed peer dependency requirement on type-fest to allow v5.x (#934)
Commits

Updates @storybook/cli from 10.0.8 to 10.1.9

Release notes

Sourced from @​storybook/cli's releases.

v10.1.9

10.1.9

v10.1.8

10.1.8

v10.1.7

10.1.7

v10.1.6

10.1.6

  • Manager: Do not display non-existing shortcuts in the settings page - #32711, thanks @​DKER2!
  • Preview: Enforce inert body if manager is focus-trapped - #33186, thanks @​Sidnioulz!
  • Telemetry: Await pending operations in getLastEvents to prevent race conditions - #33285, thanks @​valentinpalkovic!
  • UI: Fix keyboard navigation bug for "reset" option in `Select` - #33268, thanks @​Sidnioulz!

v10.1.5

10.1.5

v10.1.4

10.1.4

v10.1.3

10.1.3

v10.1.2

10.1.2

... (truncated)

Changelog

Sourced from @​storybook/cli's changelog.

10.1.9

10.1.8

10.1.7

10.1.6

  • Manager: Do not display non-existing shortcuts in the settings page - #32711, thanks @​DKER2!
  • Preview: Enforce inert body if manager is focus-trapped - #33186, thanks @​Sidnioulz!
  • Telemetry: Await pending operations in getLastEvents to prevent race conditions - #33285, thanks @​valentinpalkovic!
  • UI: Fix keyboard navigation bug for "reset" option in Select - #33268, thanks @​Sidnioulz!

10.1.5

10.1.4

10.1.3

10.1.2

  • Checklist: Fix how state changes are reported and drop some completion restrictions - #33217, thanks @​ghengeveld!

10.1.1

... (truncated)

Commits
  • 1de75c4 Bump version from "10.1.8" to "10.1.9" [skip ci]
  • 7cd0cbc Bump version from "10.1.7" to "10.1.8" [skip ci]
  • 33c8fdb Bump version from "10.1.6" to "10.1.7" [skip ci]
  • 0f078c4 Merge pull request #33333 from storybookjs/valentin/fix-missing-await-for-dep...
  • 62cbd74 Merge pull request #33316 from storybookjs/nextjs-vite-automigration-add-vite
  • fdfd67e Bump version from "10.1.5" to "10.1.6" [skip ci]
  • ab49abe Bump version from "10.1.4" to "10.1.5" [skip ci]
  • d4c96a3 Bump version from "10.1.3" to "10.1.4" [skip ci]
  • e8a8c45 Bump version from "10.1.2" to "10.1.3" [skip ci]
  • 907cdfc Merge pull request #33212 from storybookjs/valentin/angular-loglevel-logfile-...
  • Additional commits viewable in compare view

Updates cypress from 15.7.0 to 15.8.0

Release notes

Sourced from cypress's releases.

v15.8.0

Changelog: https://docs.cypress.io/app/references/changelog#15-8-0

v15.7.1

Changelog: https://docs.cypress.io/app/references/changelog#15-7-1

Commits

Updates eslint-plugin-jsdoc from 61.4.1 to 61.5.0

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v61.5.0

61.5.0 (2025-12-07)

Features

  • check-tag-names, require-template, check-template-names: make typeParam a non-preferred alias for template (3cd7cbd)

v61.4.2

61.4.2 (2025-12-06)

Bug Fixes

  • require-rejects: reflect proper tag name in error message (44b2631)
Commits
  • 3cd7cbd feat(check-tag-names, require-template, check-template-names): make `ty...
  • 44b2631 fix(require-rejects): reflect proper tag name in error message
  • See full diff in compare view

Updates mjml from 4.17.1 to 4.18.0

Release notes

Sourced from mjml's releases.

v4.18.0

What's Changed

Documentation

Full Changelog: mjmlio/mjml@v4.17.2...v4.18.0

v4.17.2

What's Changed

Fixes

Full Changelog: mjmlio/mjml@v4.17.1...v4.17.2

Commits

Updates prettier from 3.6.2 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

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


Updates stylelint from 16.26.0 to 16.26.1

Release notes

Sourced from stylelint's releases.

16.26.1

It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.

  • Fixed: *-no-unknown false positives for latest specs by integrating @csstools/css-syntax-patches-for-csstree (#8850) (@​romainmenke).
  • Fixed: at-rule-no-unknown false positives for @function (#8851) (@​jeddy3).
  • Fixed: declaration-property-value-no-unknown false positives for attr(), if() and custom functions (#8853) (@​jeddy3).
  • Fixed: function-url-quotes false positives when URLs require quoting (#8804) (@​taearls).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::scroll-button() (#8856) (@​Mouvedia).
Changelog

Sourced from stylelint's changelog.

16.26.1 - 2025-11-28

It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.

  • Fixed: *-no-unknown false positives for latest specs by integrating @csstools/css-syntax-patches-for-csstree (#8850) (@​romainmenke).
  • Fixed: at-rule-no-unknown false positives for @function (#8851) (@​jeddy3).
  • Fixed: declaration-property-value-no-unknown false positives for attr(), if() and custom functions (#8853) (@​jeddy3).
  • Fixed: function-url-quotes false positives when URLs require quoting (#8804) (@​taearls).
  • Fi...

    Description has been truncated

@dependabot dependabot bot requested a review from a team as a code owner December 17, 2025 11:05
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 17, 2025
@dependabot dependabot bot requested a review from ryaplots December 17, 2025 11:05
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 17, 2025
Bumps the safe group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.35.0` | `3.36.0` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.11.0` | `2.11.2` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.27.0` | `10.31.0` |
| [react-apexcharts](https://github.com/apexcharts/react-apexcharts) | `1.8.0` | `1.9.0` |
| [react-focus-lock](https://github.com/theKashey/react-focus-lock) | `2.13.6` | `2.13.7` |
| [react-remove-scroll](https://github.com/theKashey/react-remove-scroll) | `2.7.1` | `2.7.2` |
| [@inquirer/prompts](https://github.com/SBoudrias/Inquirer.js) | `8.0.1` | `8.1.0` |
| [@pmmmwh/react-refresh-webpack-plugin](https://github.com/pmmmwh/react-refresh-webpack-plugin) | `0.6.1` | `0.6.2` |
| [@storybook/cli](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli-storybook) | `10.0.8` | `10.1.9` |
| [cypress](https://github.com/cypress-io/cypress) | `15.7.0` | `15.8.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `61.4.1` | `61.5.0` |
| [mjml](https://github.com/mjmlio/mjml/tree/HEAD/packages/mjml) | `4.17.1` | `4.18.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.26.0` | `16.26.1` |
| [webpack](https://github.com/webpack/webpack) | `5.103.0` | `5.104.0` |



Updates `@tabler/icons-react` from 3.35.0 to 3.36.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.36.0/packages/icons-react)

Updates `@reduxjs/toolkit` from 2.11.0 to 2.11.2
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.11.0...v2.11.2)

Updates `@sentry/react` from 10.27.0 to 10.31.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.27.0...10.31.0)

Updates `react-apexcharts` from 1.8.0 to 1.9.0
- [Commits](https://github.com/apexcharts/react-apexcharts/commits)

Updates `react-focus-lock` from 2.13.6 to 2.13.7
- [Release notes](https://github.com/theKashey/react-focus-lock/releases)
- [Changelog](https://github.com/theKashey/react-focus-lock/blob/master/CHANGELOG.md)
- [Commits](theKashey/react-focus-lock@v2.13.6...v2.13.7)

Updates `react-remove-scroll` from 2.7.1 to 2.7.2
- [Release notes](https://github.com/theKashey/react-remove-scroll/releases)
- [Changelog](https://github.com/theKashey/react-remove-scroll/blob/master/CHANGELOG.md)
- [Commits](theKashey/react-remove-scroll@v2.7.1...v2.7.2)

Updates `@inquirer/prompts` from 8.0.1 to 8.1.0
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/@inquirer/[email protected]...@inquirer/[email protected])

Updates `@pmmmwh/react-refresh-webpack-plugin` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/pmmmwh/react-refresh-webpack-plugin/releases)
- [Changelog](https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](pmmmwh/react-refresh-webpack-plugin@v0.6.1...v0.6.2)

Updates `@storybook/cli` from 10.0.8 to 10.1.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.9/code/lib/cli-storybook)

Updates `cypress` from 15.7.0 to 15.8.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v15.7.0...v15.8.0)

Updates `eslint-plugin-jsdoc` from 61.4.1 to 61.5.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v61.4.1...v61.5.0)

Updates `mjml` from 4.17.1 to 4.18.0
- [Release notes](https://github.com/mjmlio/mjml/releases)
- [Commits](https://github.com/mjmlio/mjml/commits/v4.18.0/packages/mjml)

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

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

Updates `webpack` from 5.103.0 to 5.104.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.103.0...v5.104.0)

---
updated-dependencies:
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@sentry/react"
  dependency-version: 10.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: react-apexcharts
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: react-focus-lock
  dependency-version: 2.13.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: react-remove-scroll
  dependency-version: 2.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@inquirer/prompts"
  dependency-version: 8.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@pmmmwh/react-refresh-webpack-plugin"
  dependency-version: 0.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@storybook/cli"
  dependency-version: 10.1.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: cypress
  dependency-version: 15.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 61.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: mjml
  dependency-version: 4.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: stylelint
  dependency-version: 16.26.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: webpack
  dependency-version: 5.104.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
...

Signed-off-by: dependabot[bot] <[email protected]>
@PavelJankoski PavelJankoski force-pushed the dependabot/npm_and_yarn/safe-5e5bac2b32 branch from e33e68b to 7f78079 Compare December 18, 2025 15:15
@github-actions github-actions bot added the ui/web This is related to a web interface label Dec 18, 2025
@PavelJankoski PavelJankoski merged commit 6260611 into v3.35 Dec 18, 2025
13 checks passed
@PavelJankoski PavelJankoski deleted the dependabot/npm_and_yarn/safe-5e5bac2b32 branch December 18, 2025 16:36
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 ui/web This is related to a web interface

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants