Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the safe group with 13 updates:

Package From To
@reduxjs/toolkit 2.11.0 2.11.1
@sentry/react 10.27.0 10.29.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.0.2
@pmmmwh/react-refresh-webpack-plugin 0.6.1 0.6.2
@storybook/cli 10.0.8 10.1.4
cypress 15.7.0 15.7.1
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

Updates @reduxjs/toolkit from 2.11.0 to 2.11.1

Release notes

Sourced from @​reduxjs/toolkit's releases.

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

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

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.29.0

Release notes

Sourced from @​sentry/react's releases.

10.29.0

Important Changes

  • feat(solid|solidstart): Bump accepted @​solidjs/router range (#18395)

We expanded the supported version range for @solidjs/router to include 0.14.x and 0.15.x versions.

Other Changes

  • fix(logs): Add support for msg in pino integration (#18389)
  • fix(node): Include system message in anthropic-ai messages span (#18332)
  • fix(tracing): Add missing attributes in vercel-ai spans (#18333)
  • chore(tanstackstart-react): clean up re-exported types (#18393)
  • ref(core): Avoid looking up openai integration options (#17695)
  • test(nuxt): Relax captured unhandled error assertion (#18397)
  • test(tanstackstart-react): Set up E2E test application (#18358)

Bundle size 📦

Path Size
@​sentry/browser 24.22 KB
@​sentry/browser - with treeshaking flags 22.76 KB
@​sentry/browser (incl. Tracing) 40.57 KB
@​sentry/browser (incl. Tracing, Profiling) 45.05 KB
@​sentry/browser (incl. Tracing, Replay) 78.08 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.05 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 82.65 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 94.61 KB
@​sentry/browser (incl. Feedback) 40.51 KB
@​sentry/browser (incl. sendFeedback) 28.8 KB
@​sentry/browser (incl. FeedbackAsync) 33.66 KB
@​sentry/react 25.9 KB
@​sentry/react (incl. Tracing) 42.72 KB
@​sentry/vue 28.56 KB
@​sentry/vue (incl. Tracing) 42.32 KB
@​sentry/svelte 24.24 KB
CDN Bundle 26.57 KB
CDN Bundle (incl. Tracing) 41.22 KB
CDN Bundle (incl. Tracing, Replay) 76.9 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 82.23 KB
CDN Bundle - uncompressed 78.09 KB
CDN Bundle (incl. Tracing) - uncompressed 122.4 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 235.71 KB

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.29.0

Important Changes

  • feat(solid|solidstart): Bump accepted @​solidjs/router range (#18395)

We expanded the supported version range for @solidjs/router to include 0.14.x and 0.15.x versions.

Other Changes

  • fix(logs): Add support for msg in pino integration (#18389)
  • fix(node): Include system message in anthropic-ai messages span (#18332)
  • fix(tracing): Add missing attributes in vercel-ai spans (#18333)
  • chore(tanstackstart-react): clean up re-exported types (#18393)
  • ref(core): Avoid looking up openai integration options (#17695)
  • test(nuxt): Relax captured unhandled error assertion (#18397)
  • test(tanstackstart-react): Set up E2E test application (#18358)

10.28.0

Important Changes

  • feat(core): Make matcher parameter optional in makeMultiplexedTransport (#10798)

The matcher parameter in makeMultiplexedTransport is now optional with a sensible default. This makes it much easier to use the multiplexed transport for sending events to multiple DSNs based on runtime configuration.

Before:

import { makeFetchTransport, makeMultiplexedTransport } from '@sentry/browser';
const EXTRA_KEY = 'ROUTE_TO';
const transport = makeMultiplexedTransport(makeFetchTransport, args => {
const event = args.getEvent();
if (event?.extra?.[EXTRA_KEY] && Array.isArray(event.extra[EXTRA_KEY])) {
return event.extra[EXTRA_KEY];
}
return [];
});
Sentry.init({
transport,
// ... other options
</tr></table>

... (truncated)

Commits
  • 3529d46 release: 10.29.0
  • 7b3b613 Merge pull request #18407 from getsentry/prepare-release/10.29.0
  • 477f6ad meta(changelog): Update changelog for 10.29.0
  • cf5c4ba Merge pull request #18406 from getsentry/manual-master-sync-dev
  • 3c5d47f Merge branch 'develop' into manual-master-sync-dev
  • 862f415 test(nuxt): Relax captured unhandled error assertion (#18397)
  • b6eb205 fix(node): Include system message in anthropic-ai messages span (#18332)
  • 65f5006 fix(tracing): Add missing attributes in vercel-ai spans (#18333)
  • df4c541 feat(solid|solidstart): Bump accepted @​solidjs/router range (#18395)
  • f961771 ref(core): Avoid looking up openai integration options (#17695)
  • 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.0.2

Release notes

Sourced from @​inquirer/prompts's releases.

@​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
  • 9c72429 chore: Publish new release
  • e874a21 fix: Refresh yarn setup. Fixes #1902
  • 360184c fix: Fix Typescript commonjs module type declarations. Fixes #1902
  • c4972c7 Chore(deps-dev): Bump the testing group with 3 updates
  • 2abc5ea Chore(deps): Bump type-fest from 5.2.0 to 5.3.0 in the types group
  • bffa7bc Chore(deps-dev): Bump oxfmt in the formatting group
  • 9dd88e2 Chore(deps-dev): Bump the linting group with 3 updates
  • 65ec9ea chore: Review dependabot groupings
  • 2b864a8 reduce ignore pattern
  • a850a6e Chore(deps-dev): Bump @​lerna-lite/publish from 4.9.3 to 4.9.4
  • 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.4

Release notes

Sourced from @​storybook/cli's releases.

v10.1.4

10.1.4

v10.1.3

10.1.3

v10.1.2

10.1.2

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

v10.1.1

10.1.1

v10.1.0

10.1.0

Easier to setup, more accessible to use

Storybook 10.1 focuses on two key improvements: installation and accessibility:

  • ♿ UI overhaul to fix hundreds of a11y issues
  • 🧑‍💻 CLI overhaul for faster, more reliable install
  • ✅ Checklist-based onboarding guide for new users

The release also contains compatibility fixes for:

  • 🅰️ Angular 21 support
  • 🦀 RSbuild install support in CLI
  • ⚡️ Preact support for Vitest addon

Finally, it contains two highly-requested experimental features:

  • 📋 Component manifest for Storybook MCP
  • ⚛️ Improved JSX code snippets for React

... (truncated)

Changelog

Sourced from @​storybook/cli's changelog.

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

10.1.0

Easier to setup, more accessible to use

Storybook 10.1 focuses on two key improvements: installation and accessibility:

  • ♿ UI overhaul to fix hundreds of a11y issues
  • 🧑‍💻 CLI overhaul for faster, more reliable install
  • ✅ Checklist-based onboarding guide for new users

The release also contains compatibility fixes for:

  • 🅰️ Angular 21 support
  • 🦀 RSbuild install support in CLI
  • ⚡️ Preact support for Vitest addon

Finally, it contains two highly-requested experimental features:

  • 📋 Component manifest for Storybook MCP
  • ⚛️ Improved JSX code snippets for React

... (truncated)

Commits
  • 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-...
  • 417ee84 Bump version from "10.1.1" to "10.1.2" [skip ci]
  • 2f349fc Bump version from "10.1.0" to "10.1.1" [skip ci]
  • bae4398 fix sandbox issues
  • 7e61f17 Merge pull request #33084 from storybookjs/valentin/add-solid-to-supported-fr...
  • 90cdcf8 Bump version from "10.1.0-beta.6" to "10.1.0" [skip ci]
  • 28fa98e Bump version from "10.1.0-beta.5" to "10.1.0-beta.6" [skip ci]
  • fdec800 Update code/lib/cli-storybook/src/sandbox-templates.ts
  • Additional commits viewable in compare view

Updates cypress from 15.7.0 to 15.7.1

Release notes

Sourced from cypress's releases.

v15.7.1

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

Commits
  • 3147e30 chore: release 15.7.1 (#33049)
  • 2e089af dependency: update dependency flat to 5.0.2 and yargs-unparser to 1.6.4 (#33048)
  • 7b46b9b fix: concurrent cy.prompt() and Studio bundle download issues (#33034)
  • b04adc5 chore(deps): update dependency @​types/tar to ^6.1.13 (#33037)
  • 373001c chore(deps): update dependency @​types/supertest to v2.0.16 (#33036)
  • c557d14 chore: updating v8 snapshot cache (#33039)
  • 409be53 chore: updating v8 snapshot cache (#33040)
  • a841447 chore: updating v8 snapshot cache (#33038)
  • 9ea0521 chore(deps): update dependency @​types/server-destroy to ^1.0.4 (#33033)
  • 3ea4bf6 chore(deps): update dependency @​types/request-promise to v4.1.51 (#33031)
  • Additional commits viewable in compare view

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).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::scroll-button() (#8856) (@​Mouvedia).
Commits
  • b968143 Release 16.26.1 (#8857)
  • 2b24b9c Fix selector-pseudo-element-no-unknown false positives for `::scroll-button...
  • f152564 Fix *-no-unknown false positives for latest specs by integrating `@csstools...
  • 431cb53 Fix at-rule-no-unknown false positives for @function (#8851)
  • 119097e Fix declaration-property-value-no-unknown false positives for attr() and ...
  • 4b9c68b Fix function-url-quotes false positives when URLs require quoting (#8804)
  • 8cc4ced Bump rollup from 4.52.5 to 4.53.2 (#8848)
  • 4383feb Bump file-entry-cache from 11.1.0 to 11.1.1 (#8846)
  • a8a7560 Bump the eslint group with 2 updates (#8845)
  • 947ad33 Fix patch-package warning about mismatched @types/css-tree version (#8844)
  • See full diff in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
cypress [>= 9.a, < 10]
cypress [>= 10.a, < 11]
eslint-plugin-jsdoc [>= 39.6.a, < 39.7]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the safe group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.11.0` | `2.11.1` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.27.0` | `10.29.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.0.2` |
| [@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.4` |
| [cypress](https://github.com/cypress-io/cypress) | `15.7.0` | `15.7.1` |
| [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` |


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

Updates `@sentry/react` from 10.27.0 to 10.29.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.29.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.0.2
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/@inquirer/prompts@8.0.1...@inquirer/prompts@8.0.2)

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.4
- [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.4/code/lib/cli-storybook)

Updates `cypress` from 15.7.0 to 15.7.1
- [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.7.1)

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)

---
updated-dependencies:
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@sentry/react"
  dependency-version: 10.29.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.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: cypress
  dependency-version: 15.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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
...

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 Dec 8, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 8, 2025 22:07
@dependabot dependabot bot requested a review from ryaplots December 8, 2025 22:07
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 8, 2025
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.

1 participant