Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev: bump the safe group across 1 directory with 24 updates #7492

Open
wants to merge 1 commit into
base: v3.34
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2025

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

Package From To
@tabler/icons-react 3.28.1 3.29.0
@reduxjs/toolkit 2.5.0 2.5.1
@sentry/react 8.48.0 8.51.0
apexcharts 4.3.0 4.4.0
react-intl 7.1.0 7.1.5
react-remove-scroll 2.6.2 2.6.3
react-select 5.9.0 5.10.0
react-window-infinite-loader 1.0.9 1.0.10
@babel/core 7.26.0 7.26.7
@babel/preset-env 7.26.0 7.26.7
@babel/runtime-corejs2 7.26.0 7.26.7
@inquirer/prompts 7.2.2 7.2.3
@storybook/addon-essentials 8.4.7 8.5.2
@storybook/addon-mdx-gfm 8.4.7 8.5.2
@storybook/addon-actions 8.4.7 8.5.2
@storybook/cli 8.4.7 8.5.2
@storybook/react 8.4.7 8.5.2
@storybook/react-webpack5 8.4.7 8.5.2
@testing-library/cypress 10.0.2 10.0.3
eslint-plugin-jest 28.10.0 28.11.0
eslint-plugin-jsdoc 50.6.1 50.6.3
eslint-plugin-prettier 5.2.1 5.2.3
stylelint 16.13.1 16.14.1

Updates @tabler/icons-react from 3.28.1 to 3.29.0

Release notes

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

Release 3.29.0

18 new icons:

  • filled/current-location
  • filled/exposure
  • filled/eye-table
  • filled/eyeglass-2
  • filled/face-mask
  • filled/fence
  • filled/fidget-spinner
  • filled/file-description
  • filled/file-digit
  • filled/file-horizontal
  • filled/file-invoice
  • filled/file-minus
  • filled/file-neutral
  • filled/file-power
  • filled/file-sad
  • filled/file-smile
  • filled/file-star
  • filled/file-text
Commits

Updates @reduxjs/toolkit from 2.5.0 to 2.5.1

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.5.1

This bugfix release fixes a logic issue with the new upsertQueryEntries util that sometimes kept entries in a pending state indefinitely.

Changelog

upsertQueryEntries fixes

Users reported that in some cases, use of upsertQueryEntries to insert RTKQ cache entries prevented any further refetches of that data from happening. After investigation, we found a logic mismatch for how we handle upserts vs the existing upsertQueryData util, which meant that sometimes the entry would be left in a pending state expecting a fulfilled action from a request ID that would never happen.

This release fixes that issue and ensures the updates and refetches happen correctly.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.5.0...v2.5.1

Commits

Updates @sentry/react from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/react's releases.

8.51.0

Important Changes

  • feat(v8/node): Add prismaInstrumentation option to Prisma integration as escape hatch for all Prisma versions (#15128)

    This release adds a compatibility API to add support for Prisma version 6. To capture performance data for Prisma version 6:

    1. Install the @prisma/instrumentation package on version 6.

    2. Pass a new PrismaInstrumentation() instance as exported from @prisma/instrumentation to the prismaInstrumentation option:

      import { PrismaInstrumentation } from '@prisma/instrumentation';
      Sentry.init({
      integrations: [
      prismaIntegration({
      // Override the default instrumentation that Sentry uses
      prismaInstrumentation: new PrismaInstrumentation(),
      }),
      ],
      });

      The passed instrumentation instance will override the default instrumentation instance the integration would use, while the prismaIntegration will still ensure data compatibility for the various Prisma versions.

    3. Remove the previewFeatures = ["tracing"] option from the client generator block of your Prisma schema.

Other Changes

  • feat(v8/browser): Add multiplexedtransport.js CDN bundle (#15046)
  • feat(v8/browser): Add Unleash integration (#14948)
  • feat(v8/deno): Deprecate Deno SDK as published on deno.land (#15121)
  • feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • fix(v8/aws-lambda): Avoid overwriting root span name (#15054)
  • fix(v8/core): fatal events should set session as crashed (#15073)
  • fix(v8/node/nestjs): Use method on current fastify request (#15104)

Work in this release was contributed by @​tjhiggins, and @​nwalters512. Thank you for your contributions!

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.2 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.66 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.51 KB

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.51.0

Important Changes

  • feat(v8/node): Add prismaInstrumentation option to Prisma integration as escape hatch for all Prisma versions (#15128)

    This release adds a compatibility API to add support for Prisma version 6. To capture performance data for Prisma version 6:

    1. Install the @prisma/instrumentation package on version 6.

    2. Pass a new PrismaInstrumentation() instance as exported from @prisma/instrumentation to the prismaInstrumentation option:

      import { PrismaInstrumentation } from '@prisma/instrumentation';
      Sentry.init({
      integrations: [
      prismaIntegration({
      // Override the default instrumentation that Sentry uses
      prismaInstrumentation: new PrismaInstrumentation(),
      }),
      ],
      });

      The passed instrumentation instance will override the default instrumentation instance the integration would use, while the prismaIntegration will still ensure data compatibility for the various Prisma versions.

    3. Remove the previewFeatures = ["tracing"] option from the client generator block of your Prisma schema.

Other Changes

  • feat(v8/browser): Add multiplexedtransport.js CDN bundle (#15046)
  • feat(v8/browser): Add Unleash integration (#14948)
  • feat(v8/deno): Deprecate Deno SDK as published on deno.land (#15121)
  • feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • fix(v8/aws-lambda): Avoid overwriting root span name (#15054)
  • fix(v8/core): fatal events should set session as crashed (#15073)
  • fix(v8/node/nestjs): Use method on current fastify request (#15104)

Work in this release was contributed by @​tjhiggins, and @​nwalters512. Thank you for your contributions!

8.50.0

  • feat(v8/react): Add support for React Router createMemoryRouter (#14985)

8.49.0

  • feat(v8/browser): Flush offline queue on flush and browser online event (#14969)
  • feat(v8/react): Add a handled prop to ErrorBoundary (#14978)
  • fix(profiling/v8): Don't put require, __filename and __dirname on global object (#14952)

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates apexcharts from 4.3.0 to 4.4.0

Release notes

Sourced from apexcharts's releases.

💎 Version 4.4.0

What's Changed

  • fix #4868; reflect marker shapes in tooltip
  • fixes #1753; fixes #3641; markers disappearing after hover
  • fixes #4790; fixes #4791; fix marker bug when null values were present
  • Added support for the Angular compiler. by @​jeroen1602 in apexcharts/apexcharts.js#4691
  • Fix getting decimal part of numbers close to 0 by @​obiwac in apexcharts/apexcharts.js#4909
  • fix #3754; crosshair position in stacked columns
  • fix #4890; radar chart marker over y-axis fix
  • fix #3439; shared tooltip fix in bar chart
  • fix #3661; series-title in multi-series treemap
  • fix #4230; total stacked label alignment fix
  • fix #4901; dataURI scaling issue
  • fix #4897; fix bug which cropped line when value was zero
  • fix #4904; x-axis range annotations disappearing on zoom
  • fix #4907; multiple y-axis error when series is empty
  • fix #4914; custom-tooltip was removed on redraw
  • make default stroke.lineCap as square in bar charts
  • fixes #4895; brush chart bugfix

New Contributors

Full Changelog: apexcharts/apexcharts.js@v4.3.0...v4.4.0

Commits

Updates react-intl from 7.1.0 to 7.1.5

Release notes

Sourced from react-intl's releases.

react-intl@7.1.5

7.1.5 (2025-01-24)

Bug Fixes

react-intl@7.1.4

7.1.4 (2025-01-20)

Bug Fixes

react-intl@7.1.3

7.1.3 (2025-01-20)

Note: Version bump only for package react-intl

react-intl@7.1.2

7.1.2 (2025-01-20)

Note: Version bump only for package react-intl

react-intl@7.1.1

7.1.1 (2025-01-17)

Note: Version bump only for package react-intl

Commits
  • 87175d0 build: publish
  • bcf6d7a fix(react-intl): move react to peerDep
  • 75715db chore(deps): update dependency @​swc/core to v1.10.9 (#4832)
  • 38e762f chore(deps): update dependency lint-staged to v15.4.1 (#4837)
  • c6f2c11 chore(deps): update dependency @​types/node to v22.10.7 (#4660)
  • 4ef39e1 fix(deps): update dependency eslint to v9.18.0 (#4823)
  • 1d8fae2 build(deps): bump nanoid from 3.3.6 to 3.3.8 in /packages/react-intl/example-...
  • 8a8192c build(deps): bump path-to-regexp and express in /packages/react-intl/example-...
  • 22dc370 chore(deps): update dependency rules_nodejs to v6.3.3 (#4834)
  • 36455cf build: publish
  • Additional commits viewable in compare view

Updates react-remove-scroll from 2.6.2 to 2.6.3

Commits

Updates react-select from 5.9.0 to 5.10.0

Release notes

Sourced from react-select's releases.

react-select@5.10.0

Minor Changes

Commits

Updates react-window-infinite-loader from 1.0.9 to 1.0.10

Changelog

Sourced from react-window-infinite-loader's changelog.

1.0.10

  • Bump react and react-dom peer dependency to include v19
Commits

Updates @babel/core from 7.26.0 to 7.26.7

Release notes

Sourced from @​babel/core's releases.

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

Committers: 1

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types
  • babel-compat-data, babel-preset-env
  • babel-generator, babel-parser, babel-types

🔬 Output optimization

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.4 (2024-12-05)

↩️ Revert

  • babel-traverse
    • #17005 Revert "perf: Improve scope information collection performance" (@​JLHwung)

... (truncated)

Commits

Updates @babel/preset-env from 7.26.0 to 7.26.7

Release notes

Sourced from @​babel/preset-env's releases.

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

Committers: 1

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/preset-env's changelog.

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types
  • babel-compat-data, babel-preset-env
  • babel-generator, babel-parser, babel-types

🔬 Output optimization

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.4 (2024-12-05)

↩️ Revert

  • babel-traverse
    • #17005 Revert "perf: Improve scope information collection performance" (@​JLHwung)

... (truncated)

Commits

Updates @babel/runtime-corejs2 from 7.26.0 to 7.26.7

Release notes

Sourced from @​babel/runtime-corejs2's releases.

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

Committers: 1

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/runtime-corejs2's changelog.

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types
  • babel-compat-data, babel-preset-env
  • babel-generator, babel-parser, babel-types

🔬 Output optimization

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.4 (2024-12-05)

↩️ R...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.28.1` | `3.29.0` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.5.0` | `2.5.1` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |
| [apexcharts](https://github.com/apexcharts/apexcharts.js) | `4.3.0` | `4.4.0` |
| [react-intl](https://github.com/formatjs/formatjs) | `7.1.0` | `7.1.5` |
| [react-remove-scroll](https://github.com/theKashey/react-remove-scroll) | `2.6.2` | `2.6.3` |
| [react-select](https://github.com/JedWatson/react-select) | `5.9.0` | `5.10.0` |
| [react-window-infinite-loader](https://github.com/bvaughn/react-window-infinite-loader) | `1.0.9` | `1.0.10` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.0` | `7.26.7` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.26.0` | `7.26.7` |
| [@babel/runtime-corejs2](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime-corejs2) | `7.26.0` | `7.26.7` |
| [@inquirer/prompts](https://github.com/SBoudrias/Inquirer.js) | `7.2.2` | `7.2.3` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.4.7` | `8.5.2` |
| [@storybook/addon-mdx-gfm](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/gfm) | `8.4.7` | `8.5.2` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.4.7` | `8.5.2` |
| [@storybook/cli](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.4.7` | `8.5.2` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.4.7` | `8.5.2` |
| [@storybook/react-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5) | `8.4.7` | `8.5.2` |
| [@testing-library/cypress](https://github.com/testing-library/cypress-testing-library) | `10.0.2` | `10.0.3` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.10.0` | `28.11.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.6.1` | `50.6.3` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.1` | `5.2.3` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.13.1` | `16.14.1` |



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

Updates `@reduxjs/toolkit` from 2.5.0 to 2.5.1
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.5.0...v2.5.1)

Updates `@sentry/react` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

Updates `apexcharts` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](apexcharts/apexcharts.js@v4.3.0...v4.4.0)

Updates `react-intl` from 7.1.0 to 7.1.5
- [Release notes](https://github.com/formatjs/formatjs/releases)
- [Commits](https://github.com/formatjs/formatjs/compare/react-intl@7.1.0...react-intl@7.1.5)

Updates `react-remove-scroll` from 2.6.2 to 2.6.3
- [Release notes](https://github.com/theKashey/react-remove-scroll/releases)
- [Changelog](https://github.com/theKashey/react-remove-scroll/blob/master/CHANGELOG.md)
- [Commits](https://github.com/theKashey/react-remove-scroll/commits)

Updates `react-select` from 5.9.0 to 5.10.0
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/react-select@5.9.0...react-select@5.10.0)

Updates `react-window-infinite-loader` from 1.0.9 to 1.0.10
- [Changelog](https://github.com/bvaughn/react-window-infinite-loader/blob/master/CHANGELOG.md)
- [Commits](bvaughn/react-window-infinite-loader@1.0.9...1.0.10)

Updates `@babel/core` from 7.26.0 to 7.26.7
- [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.26.7/packages/babel-core)

Updates `@babel/preset-env` from 7.26.0 to 7.26.7
- [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.26.7/packages/babel-preset-env)

Updates `@babel/runtime-corejs2` from 7.26.0 to 7.26.7
- [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.26.7/packages/babel-runtime-corejs2)

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

Updates `@storybook/addon-essentials` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/addons/essentials)

Updates `@storybook/addon-mdx-gfm` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/addons/gfm)

Updates `@storybook/addon-actions` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/addons/actions)

Updates `@storybook/cli` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/lib/cli)

Updates `@storybook/react` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/renderers/react)

Updates `@storybook/react-webpack5` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/frameworks/react-webpack5)

Updates `@testing-library/cypress` from 10.0.2 to 10.0.3
- [Release notes](https://github.com/testing-library/cypress-testing-library/releases)
- [Changelog](https://github.com/testing-library/cypress-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/cypress-testing-library@v10.0.2...v10.0.3)

Updates `eslint-plugin-jest` from 28.10.0 to 28.11.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.10.0...v28.11.0)

Updates `eslint-plugin-jsdoc` from 50.6.1 to 50.6.3
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v50.6.1...v50.6.3)

Updates `eslint-plugin-prettier` from 5.2.1 to 5.2.3
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.1...v5.2.3)

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

Updates `storybook` from 8.4.7 to 8.5.2
- [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/v8.5.2/code/lib/cli)

---
updated-dependencies:
- dependency-name: "@tabler/icons-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: apexcharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: react-intl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: react-remove-scroll
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: react-window-infinite-loader
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@babel/runtime-corejs2"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@inquirer/prompts"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@storybook/addon-mdx-gfm"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@storybook/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@storybook/react-webpack5"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: "@testing-library/cypress"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: eslint-plugin-jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner January 28, 2025 12:23
@dependabot dependabot bot requested a review from mjamescompton January 28, 2025 12:23
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 28, 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.

0 participants