Skip to content

build(deps): bump the npm-dependencies group with 59 updates - #59

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-dependencies-4643fa27db
Open

build(deps): bump the npm-dependencies group with 59 updates#59
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-dependencies-4643fa27db

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 7, 2026

Copy link
Copy Markdown

Bumps the npm-dependencies group with 59 updates:

Package From To
@dnd-kit/core 6.1.0 6.3.1
@dnd-kit/modifiers 7.0.0 9.0.0
@dnd-kit/sortable 8.0.0 10.0.0
@lottiefiles/react-lottie-player 3.4.1 3.6.0
@wordpress/icons 2.10.2 15.3.0
classnames 2.3.1 2.5.1
codemirror 6.0.1 6.0.2
prop-types 15.7.2 15.8.1
re-resizable 4.11.0 6.11.2
react-countdown 2.3.1 2.3.6
react-lazy-load 3.1.13 4.0.1
react-masonry-component 6.2.1 6.3.0
react-select 5.8.3 5.10.2
react-slick 0.24.0 0.31.0
react-transition-group 2.9.0 4.4.5
react-virtualized 9.22.3 9.22.6
swiper 8.4.5 14.0.7
@headlessui/react 1.7.19 2.2.10
@heroicons/react 1.0.6 2.2.0
@tailwindcss/forms 0.4.1 0.5.11
@tailwindcss/typography 0.5.16 0.5.20
@wordpress/plugins 7.21.0 7.52.0
browser-sync 2.29.3 3.0.4
browser-sync-webpack-plugin 2.3.0 2.4.0
html-entities 1.4.0 2.6.0
lucide-react 0.468.0 1.28.0
moment-timezone 0.5.48 0.6.3
node-fetch 2.6.7 3.3.2
react 17.0.2 19.2.8
react-dom 17.0.2 19.2.8
react-redux 7.2.9 9.3.0
react-router-dom 5.3.4 7.18.2
redux 4.2.1 5.0.1
@bsf/force-ui v1.7.7 v1.7.11
@wordpress/eslint-plugin 7.4.0 25.8.0
@wordpress/scripts 16.1.5 34.0.0
grunt 1.5.3 1.6.3
grunt-contrib-clean 2.0.0 2.0.1
grunt-contrib-cssmin 4.0.0 5.0.0
grunt-contrib-uglify 5.0.1 5.2.2
grunt-wp-i18n 1.0.3 1.0.4
grunt-wp-readme-to-markdown 2.0.1 2.1.0
js-yaml 4.1.0 5.2.3
sass 1.98.0 1.102.0
sass-loader 10.5.2 17.0.0
style-loader 2.0.0 4.0.0
webpack 4.46.0 5.109.2
wp-prettier 2.8.5 3.0.3
@types/sortablejs 1.15.8 1.15.9
@wordpress/api-fetch 3.23.1 7.52.0
@wordpress/components 11.1.6 38.0.0
@wordpress/compose 3.25.3 8.5.0
@wordpress/data 4.27.3 10.52.0
@wordpress/i18n 3.20.0 6.25.0
@wordpress/notices 2.13.3 5.52.0
@wordpress/prettier-config 0.4.0 4.52.0
autoprefixer 10.4.2 10.5.4
shelljs 0.8.5 0.10.0
tailwindcss 3.4.17 4.3.3

Updates @dnd-kit/core from 6.1.0 to 6.3.1

Changelog

Sourced from @​dnd-kit/core's changelog.

6.3.1

Patch Changes

  • #1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

6.3.0

Minor Changes

  • #1539 0c6a28d Thanks @​irobot! - Make it possible to add visual cues when using activation constraints.

    Context

    Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".

    A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.

    The problem

    A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.

    Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.

    Solution

    This changeset proposes the addition of two new events: onDragPending and onDragAbort.

    onDragPending

    A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.

    This event is initially fired on pointer press. At this time offset (see below) will be undefined.

    It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.

    The event's payload contains all the information necessary for providing visual feedback:

... (truncated)

Commits
  • 97c1609 Version Packages
  • 62f632a End keyboard drag operation when pressing tab
  • 060c982 Version Packages
  • 9175566 Merge branch 'master' into feature/constraint-cues
  • 2eedcc3 Version Packages
  • 835ae76 Lint
  • 3c4f627 Merge pull request #1543 from clauderic/patch-1
  • baad391 Merge pull request #1542 from clauderic/fix-zero-id
  • b7f46bb Merge pull request #1541 from clauderic/handle-cancel-events
  • 2eb636f Merge pull request #1435 from knaveenkumar3576/user/knaveenkumar3576/improved...
  • Additional commits viewable in compare view

Updates @dnd-kit/modifiers from 7.0.0 to 9.0.0

Changelog

Sourced from @​dnd-kit/modifiers's changelog.

9.0.0

Patch Changes

8.0.0

Patch Changes

Commits

Updates @dnd-kit/sortable from 8.0.0 to 10.0.0

Changelog

Sourced from @​dnd-kit/sortable's changelog.

10.0.0

Patch Changes

9.0.0

Patch Changes

Commits

Updates @lottiefiles/react-lottie-player from 3.4.1 to 3.6.0

Release notes

Sourced from @​lottiefiles/react-lottie-player's releases.

v3.5.0

Adds the getVersions() method to view which lottie-web version is being used.

v3.4.4

What's Changed

Full Changelog: LottieFiles/lottie-react@v3.4.2...v3.4.4

v3.4.2

3.4.2 (2022-02-22)

Bug Fixes

  • fixed speed affecting all lotties on a page (92cec07)

This release is also available on:

Changelog

Sourced from @​lottiefiles/react-lottie-player's changelog.

3.6.0

Minor Changes

  • 0589acd: chore: 🤖 upgrade React to v19.0.0

3.5.4

Patch Changes

  • b40ce3d: chore: 🤖 upgrade lottie-web v5.12.2

3.5.3

Patch Changes

  • bumped lottie-web

3.5.2

Patch Changes

  • d71a178: added instanceloaded event

3.5.1

Patch Changes

  • f807fde: re-arranged events to fire when internal state is set

3.5.0

Minor Changes

  • 978552b: added getVersions(), updated lottie-web

3.4.9

Patch Changes

  • 730c3b2: add aria-label to Controls
  • 32e0728: fix double animation with react 18 strict mode
  • cd94951: chore: version bump

3.4.6

Patch Changes

  • 8d24ecd: changes type for the renderer variable
  • fixed source-maps

... (truncated)

Commits

Updates @wordpress/icons from 2.10.2 to 15.3.0

Changelog

Sourced from @​wordpress/icons's changelog.

15.3.0 (2026-07-29)

Enhancements

  • Normalize keyboard-close, offline, and wordpress to use the standard viewBox="0 0 24 24". (#80273)

15.2.0 (2026-07-14)

Enhancements

  • Widen React peer dependency ranges to ^18 || ^19 to support both React 18 and React 19 environments (#80024).
  • Add Playlist icon. (#80168).
  • Add new "sites" icon. (#80094).

15.1.0 (2026-07-01)

15.0.0 (2026-06-24)

Breaking Changes

  • Update all icons to render with currentColor by default. Consumers that style icons by setting inherited fill on a wrapper should set color instead, or pass style={ { color: ... } } to the icon. (#79320)

14.0.1 (2026-06-16)

14.0.0 (2026-06-10)

Code Quality

  • Add missing @types/react dependency. #78882.

Breaking Changes

  • Rename timeToRead icon to time. (#78804)
  • Remove tab icon. (#77439)

13.2.0 (2026-05-27)

13.1.0 (2026-05-14)

13.0.0 (2026-04-29)

Breaking Changes

  • Rename Tabs-related icons: tabs-menu to tab-list, tabs-menu-item to tab, and tab to tab-panel. (#77418)

12.2.0 (2026-04-15)

12.1.0 (2026-04-01)

12.0.0 (2026-03-18)

... (truncated)

Commits
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • e9a74f9 chore(release): publish
  • 2a0c375 Update changelog files
  • e61c854 Merge changes published in the Gutenberg plugin "release/23.6" branch
  • 1055a35 Update changelog files
  • 8ca3e8e Merge changes published in the Gutenberg plugin "release/23.6" branch
  • 66c8050 Fix wp/latest release metadata (#79821)
  • d0d1bfc Update changelog files
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by gutenbergplugin, a new releaser for @​wordpress/icons since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates classnames from 2.3.1 to 2.5.1

Changelog

Sourced from classnames's changelog.

v2.5.1 / 2023-12-29

  • Remove workspaces field from package (#350)

v2.5.0 / 2023-12-27

  • Restore ability to pass a TypeScript interface (#341)
  • Add exports field to package (#342)

v2.4.0 / 2023-12-26

  • Use string concatenation to increase performance thanks Jon Koops (#336)

v2.3.3 / 2023-12-21

v2.3.2 / 2022-09-13

Commits

Updates codemirror from 6.0.1 to 6.0.2

Changelog

Sourced from codemirror's changelog.

6.0.2 (2025-06-19)

Bug fixes

Make sure to include a .d.cts file to make TypeScript happy.

Commits

Updates prop-types from 15.7.2 to 15.8.1

Changelog

Sourced from prop-types's changelog.

15.8.1

  • [Fix] fix crash when a custom propType return lacks .data; call hasOwnProperty properly (#370)
  • [meta] Fix formatting in CHANGELOG.md (#367)
  • [Tests] add missing test coverage (#370)
  • [Tests] convert normal it functions to arrow functions (#370)
  • [Tests] do not fail fast; add react 17 (#366)
  • [Dev Deps] update eslint

15.8.0

  • [New] add PropTypes.bigint (#365)
  • [New] oneOfType: Add expected types to warning (#198)
  • [New] Add type check for validator for 'shape' and 'exact' (#234)
  • [Fix] checkPropTypes: Friendlier message when using a type checker that is not a function (#51)
  • [Refactor] extract has (#261, #125, #124)
  • [readme] Fix branch name (master -> main) (#364)
  • [readme] Clarify usage of elementType (#335)
  • [docs] highlighted the func name (#321)
  • [docs] Typo fix in example (#300)
  • [docs] Add instructions for intentional inclusion of validation in production. (#262)
  • [docs] PropTypes.node: add link to react docs
  • [docs] Improve wording for checkPropTypes (#258)
  • [meta] Add a package sideEffects field. (#350)
  • [meta] use in-publish to avoid running the build on install
  • [deps] regenerate yarn.lock
  • [deps] update react-is (#347, #346, #345, #340, #338)
  • [eslint] enable some rules (#360)
  • [Tests] Use GH Actions (#363)
  • [Tests] Fix spelling (#318)
  • [Tests] Fixed typo: 'Any type should accept any value' (#281)
  • [Tests] fix broken tests; test the build process
  • [Dev Deps] update browserify, bundle-collapser, eslint, in-publish, react, uglifyify, uglifyjs
Commits
  • 70330a4 v15.8.1
  • 044efd7 [Dev Deps] update eslint
  • 90c8c47 [Fix] fix crash when a custom propType return lacks .data; call `hasOwnProp...
  • b93deca [Tests] add missing test coverage
  • 88e1b3d [Tests] convert normal it functions to arrow functions
  • bdc31fa [meta] Fix formatting in CHANGELOG.md
  • f9d2c19 [Tests] do not fail fast; add react 17
  • 307a0f5 v15.8.0
  • aa90f53 [New] add PropTypes.bigint
  • a921554 [Dev Deps] update eslint
  • Additional commits viewable in compare view
Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Updates re-resizable from 4.11.0 to 6.11.2

Release notes

Sourced from re-resizable's releases.

6.10.0

What's Changed

New Contributors

Full Changelog: bokuweb/re-resizable@6.9.18...6.10.0

6.9.18

What's Changed

New Contributors

Full Changelog: bokuweb/re-resizable@6.9.16...6.9.18

6.9.16

What's Changed

New Contributors

Full Changelog: bokuweb/re-resizable@v6.6.11...6.9.16

v6.6.11

Full Changelog: bokuweb/re-resizable@v6.6.10...v6.6.11

v6.6.10

... (truncated)

Changelog

Sourced from re-resizable's changelog.

Changelog

6.11.2 (2025-02-23)

💅 Enhancement

  • fix: Add z-index: 1 for edge resizer
  • fix: Use stored delta in onResizeStop

6.10.4 (2025-02-23)

💅 Enhancement

  • fix: generated JSX namespace not working with React 19

6.10.1 (2024-11-06)

🐛 Bug Fix

  • Revert #827 because regression

6.10.0 (2024-09-22)

💅 Enhancement

  • Match focus order to visual order #827

6.9.18 (2024-09-10)

... (truncated)

Commits
Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Updates react-countdown from 2.3.1 to 2.3.6

Release notes

Sourced from react-countdown's releases.

v2.3.6

Bugfixes

v2.3.5

Bugfixes

v2.3.4

Bugfixes

  • Fixes #219 The package's content of v2.3.3 didn't reflect the latest changes.

v2.3.3

Changelog

  • Updates onComplete callback to consistently trigger, even when the countdown is completed on start. #169

Bugfixes

  • Fixes date prop typing (ndresx/react-countdown#212): The CountdownProps interface date prop was initially set to optional due to an older component that is still being supported in order to follow Semver (for react-countdown@2). This change will make it a required one. However, since this legacy version was neither utilizing TypeScript nor PropTypes, it's safe to assume that this won't break anything given that the actual countdown component only works by providing this prop while it's also documented this way.

v2.3.2

Bugfixes

  • Fixed component updates by only relying on the date prop anymore
Changelog

Sourced from react-countdown's changelog.

Changelog

All notable changes to this project are documented here. This project adheres to Semantic Versioning.

3.0.0 (Unreleased)

A full rewrite of the internals: all countdown logic now lives in a framework-agnostic engine, and React is a thin adapter on top of it. The component is built on a new public useCountdown hook, so both surfaces share one lifecycle. Changes below are relative to 2.3.6.

Breaking Changes

  • Requires React 18+ (was React 16/17). The adapter uses useSyncExternalStore.
  • Imperative ref accessor changed. <Countdown /> is now a function component; reach the control API via ref.current.api. The v2 ref.current.getApi() accessor is removed (the .api path is unchanged).
  • Removed the className prop. Wrap and style the output inside a renderer.
  • Removed the children prop (completion content). Render the completed state inside a renderer.
  • Removed the legacy count prop and the legacy simple-countdown path.
  • Removed prop-types. TypeScript types are now the only prop contract; there are no runtime prop warnings.
  • onComplete no longer accepts the legacy zero-argument form. The signature is (timeDelta, completedOnStart).

Added

  • useCountdown hook, a public React adapter returning the same render props as the component.
  • Subpath entry points: react-countdown/component and react-countdown/hook to import only what you need (both share the core).
  • resetKey prop to restart the countdown without remounting (React's key still works to remount).
  • freezeProps prop to opt out of prop tracking after mount.
  • CountdownStatus enum is now exported, plus a getStatus() method on the API.
  • refresh() method on the API to force an immediate recompute and re-render against the current clock (e.g. from a visibilitychange listener after the interval was throttled in a background tab).
  • Dual ESM + CJS build with bundled type definitions and sideEffects: false for tree-shaking.

Migrating from 2.x

v2 v3
ref.current.getApi().start() ref.current.api.start()
<Countdown className="..." /> apply styling inside a renderer
<Countdown>{completedContent}</Countdown> render the completed state inside renderer
<Countdown count={n} /> use date (the legacy count path is gone)
React 16 / 17 React 18+

No changes are needed for the remaining props, lifecycle callbacks, the api render prop / ref.current.api path, or the zeroPad / calcTimeDelta / formatTimeDelta helpers.

Commits

Updates react-lazy-load from 3.1.13 to 4.0.1

Release notes

Sourced from react-lazy-load's releases.

4.0.1 Minor bugfix to dependencies

Fixed an issue where Vite and other build scripts were in the dependencies instead of dev dependencies.

v4.0.0 React 18 and Typescript support

Made quite a few improvements with this release

  • Upgraded to use intersection observer
  • Updated for use with React 18
  • No external dependencies required
  • Added Typescript
  • Updated build to Vite

Minor PR updates

React 17 is a peer dependency. Accepted PR for lodash usage.

Commits

Updates react-masonry-component from 6.2.1 to 6.3.0

Changelog

Sourced from react-masonry-component's changelog.

6.3.0

  • Support React 17
Commits

Updates react-select from 5.8.3 to 5.10.2

Release notes

Sourced from react-select's releases.

react-select@5.10.2

Patch Changes

react-select@5.10.1

Patch Changes

react-select@5.10.0

Minor Changes

react-select@5.9.0

Minor Changes

Commits

Updates react-slick from 0.24.0 to 0.31.0

Release notes

Sourced from react-slick's releases.

0.31.0

  • Fixed extra clones issue
  • Extra height of slider in vertical mode when number of slides is less than or equal to slidesToShow issue

0.30.3

Merged #2408 and #2366 PRs

0.30.2

Fixed issues #2076 and #2344

0.30.1

Fixed issues #1874 and #2315

0.30.0

  • Fixed #1813
  • Migrated tests from enzyme to react-testing-library
  • Migrated examples from class components to function components

0.29.0

Upgraded dependencies to support React 18

0.28.0

Fixes for #1650

Merged PR's: #1967 #1971

0.27.14

Fixed #1830

0.27.10

No release notes provided.

0.27.9

No release notes provided.

0.27.8

No release notes provided.

0.27.7

No release notes provided.

0.27.6

No release notes provided.

0.27.5

No release notes provided.

0.27.4

Fixed an issue with uneven sets in focusOnSelect mode

... (truncated)

Commits

Updates react-transition-group from 2.9.0 to 4.4.5

Release notes

Sourced from react-transition-group's releases.

v4.4.5

4.4.5 (2022-08-01)

Bug Fixes

  • apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled (#847) (1043549)

v4.4.4

4.4.4 (2022-07-30)

Bug Fixes

v4.4.3

4.4.3 (2022-07-30)

Bug Fixes

  • enter animations with mountOnEnter or unmountOnExit (#749) (51bdceb)

v4.4.2

4.4.2 (2021-05-29)

Bug Fixes

  • nodeRef prop type for cross-realm elements (#732) (8710c01)

v4.4.1

4.4.1 (2020-05-06)

Bug Fixes

  • transition SSR (#619) (

Bumps the npm-dependencies group with 59 updates:

| Package | From | To |
| --- | --- | --- |
| [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `6.1.0` | `6.3.1` |
| [@dnd-kit/modifiers](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/modifiers) | `7.0.0` | `9.0.0` |
| [@dnd-kit/sortable](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/sortable) | `8.0.0` | `10.0.0` |
| [@lottiefiles/react-lottie-player](https://github.com/LottieFiles/lottie-react) | `3.4.1` | `3.6.0` |
| [@wordpress/icons](https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons) | `2.10.2` | `15.3.0` |
| [classnames](https://github.com/JedWatson/classnames) | `2.3.1` | `2.5.1` |
| [codemirror](https://github.com/codemirror/basic-setup) | `6.0.1` | `6.0.2` |
| [prop-types](https://github.com/facebook/prop-types) | `15.7.2` | `15.8.1` |
| [re-resizable](https://github.com/bokuweb/react-resizable-box) | `4.11.0` | `6.11.2` |
| [react-countdown](https://github.com/ndresx/react-countdown) | `2.3.1` | `2.3.6` |
| [react-lazy-load](https://github.com/loktar00/react-lazy-load) | `3.1.13` | `4.0.1` |
| [react-masonry-component](https://github.com/eiriklv/react-masonry-component) | `6.2.1` | `6.3.0` |
| [react-select](https://github.com/JedWatson/react-select) | `5.8.3` | `5.10.2` |
| [react-slick](https://github.com/akiran/react-slick) | `0.24.0` | `0.31.0` |
| [react-transition-group](https://github.com/reactjs/react-transition-group) | `2.9.0` | `4.4.5` |
| [react-virtualized](https://github.com/bvaughn/react-virtualized) | `9.22.3` | `9.22.6` |
| [swiper](https://github.com/nolimits4web/Swiper) | `8.4.5` | `14.0.7` |
| [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) | `1.7.19` | `2.2.10` |
| [@heroicons/react](https://github.com/tailwindlabs/heroicons) | `1.0.6` | `2.2.0` |
| [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.4.1` | `0.5.11` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.16` | `0.5.20` |
| [@wordpress/plugins](https://github.com/WordPress/gutenberg/tree/HEAD/packages/plugins) | `7.21.0` | `7.52.0` |
| [browser-sync](https://github.com/BrowserSync/browser-sync) | `2.29.3` | `3.0.4` |
| [browser-sync-webpack-plugin](https://github.com/Va1/browser-sync-webpack-plugin) | `2.3.0` | `2.4.0` |
| [html-entities](https://github.com/mdevils/html-entities) | `1.4.0` | `2.6.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.468.0` | `1.28.0` |
| [moment-timezone](https://github.com/moment/moment-timezone) | `0.5.48` | `0.6.3` |
| [node-fetch](https://github.com/node-fetch/node-fetch) | `2.6.7` | `3.3.2` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `17.0.2` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `17.0.2` | `19.2.8` |
| [react-redux](https://github.com/reduxjs/react-redux) | `7.2.9` | `9.3.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `5.3.4` | `7.18.2` |
| [redux](https://github.com/reduxjs/redux) | `4.2.1` | `5.0.1` |
| [@bsf/force-ui](https://github.com/brainstormforce/bsf-admin-ui) | `v1.7.7` | `v1.7.11` |
| [@wordpress/eslint-plugin](https://github.com/WordPress/gutenberg/tree/HEAD/packages/eslint-plugin) | `7.4.0` | `25.8.0` |
| [@wordpress/scripts](https://github.com/WordPress/gutenberg/tree/HEAD/packages/scripts) | `16.1.5` | `34.0.0` |
| [grunt](https://github.com/gruntjs/grunt) | `1.5.3` | `1.6.3` |
| [grunt-contrib-clean](https://github.com/gruntjs/grunt-contrib-clean) | `2.0.0` | `2.0.1` |
| [grunt-contrib-cssmin](https://github.com/gruntjs/grunt-contrib-cssmin) | `4.0.0` | `5.0.0` |
| [grunt-contrib-uglify](https://github.com/gruntjs/grunt-contrib-uglify) | `5.0.1` | `5.2.2` |
| [grunt-wp-i18n](https://github.com/cedaro/grunt-wp-i18n) | `1.0.3` | `1.0.4` |
| [grunt-wp-readme-to-markdown](https://github.com/stephenharris/wp-readme-to-markdown) | `2.0.1` | `2.1.0` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.0` | `5.2.3` |
| [sass](https://github.com/sass/dart-sass) | `1.98.0` | `1.102.0` |
| [sass-loader](https://github.com/webpack/sass-loader) | `10.5.2` | `17.0.0` |
| [style-loader](https://github.com/webpack-contrib/style-loader) | `2.0.0` | `4.0.0` |
| [webpack](https://github.com/webpack/webpack) | `4.46.0` | `5.109.2` |
| [wp-prettier](https://github.com/prettier/prettier) | `2.8.5` | `3.0.3` |
| [@types/sortablejs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/sortablejs) | `1.15.8` | `1.15.9` |
| [@wordpress/api-fetch](https://github.com/WordPress/gutenberg/tree/HEAD/packages/api-fetch) | `3.23.1` | `7.52.0` |
| [@wordpress/components](https://github.com/WordPress/gutenberg/tree/HEAD/packages/components) | `11.1.6` | `38.0.0` |
| [@wordpress/compose](https://github.com/WordPress/gutenberg/tree/HEAD/packages/compose) | `3.25.3` | `8.5.0` |
| [@wordpress/data](https://github.com/WordPress/gutenberg/tree/HEAD/packages/data) | `4.27.3` | `10.52.0` |
| [@wordpress/i18n](https://github.com/WordPress/gutenberg/tree/HEAD/packages/i18n) | `3.20.0` | `6.25.0` |
| [@wordpress/notices](https://github.com/WordPress/gutenberg/tree/HEAD/packages/notices) | `2.13.3` | `5.52.0` |
| [@wordpress/prettier-config](https://github.com/WordPress/gutenberg/tree/HEAD/packages/prettier-config) | `0.4.0` | `4.52.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.2` | `10.5.4` |
| [shelljs](https://github.com/shelljs/shelljs) | `0.8.5` | `0.10.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `4.3.3` |


Updates `@dnd-kit/core` from 6.1.0 to 6.3.1
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/@dnd-kit/core@6.3.1/packages/core/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/core@6.3.1/packages/core)

Updates `@dnd-kit/modifiers` from 7.0.0 to 9.0.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/@dnd-kit/modifiers@9.0.0/packages/modifiers/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/modifiers@9.0.0/packages/modifiers)

Updates `@dnd-kit/sortable` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/@dnd-kit/sortable@10.0.0/packages/sortable/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/sortable@10.0.0/packages/sortable)

Updates `@lottiefiles/react-lottie-player` from 3.4.1 to 3.6.0
- [Release notes](https://github.com/LottieFiles/lottie-react/releases)
- [Changelog](https://github.com/LottieFiles/lottie-react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/LottieFiles/lottie-react/commits)

Updates `@wordpress/icons` from 2.10.2 to 15.3.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/icons/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/icons@15.3.0/packages/icons)

Updates `classnames` from 2.3.1 to 2.5.1
- [Changelog](https://github.com/JedWatson/classnames/blob/main/HISTORY.md)
- [Commits](JedWatson/classnames@v2.3.1...v2.5.1)

Updates `codemirror` from 6.0.1 to 6.0.2
- [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md)
- [Commits](codemirror/basic-setup@6.0.1...6.0.2)

Updates `prop-types` from 15.7.2 to 15.8.1
- [Changelog](https://github.com/facebook/prop-types/blob/main/CHANGELOG.md)
- [Commits](facebook/prop-types@v15.7.2...v15.8.1)

Updates `re-resizable` from 4.11.0 to 6.11.2
- [Release notes](https://github.com/bokuweb/react-resizable-box/releases)
- [Changelog](https://github.com/bokuweb/re-resizable/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bokuweb/react-resizable-box/commits)

Updates `react-countdown` from 2.3.1 to 2.3.6
- [Release notes](https://github.com/ndresx/react-countdown/releases)
- [Changelog](https://github.com/ndresx/react-countdown/blob/master/CHANGELOG.md)
- [Commits](ndresx/react-countdown@v2.3.1...v2.3.6)

Updates `react-lazy-load` from 3.1.13 to 4.0.1
- [Release notes](https://github.com/loktar00/react-lazy-load/releases)
- [Commits](https://github.com/loktar00/react-lazy-load/commits/v4.0.1)

Updates `react-masonry-component` from 6.2.1 to 6.3.0
- [Changelog](https://github.com/eiriklv/react-masonry-component/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eiriklv/react-masonry-component/commits)

Updates `react-select` from 5.8.3 to 5.10.2
- [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.8.3...react-select@5.10.2)

Updates `react-slick` from 0.24.0 to 0.31.0
- [Release notes](https://github.com/akiran/react-slick/releases)
- [Changelog](https://github.com/akiran/react-slick/blob/master/CHANGELOG.md)
- [Commits](akiran/react-slick@0.24.0...0.31.0)

Updates `react-transition-group` from 2.9.0 to 4.4.5
- [Release notes](https://github.com/reactjs/react-transition-group/releases)
- [Changelog](https://github.com/reactjs/react-transition-group/blob/master/CHANGELOG.md)
- [Commits](reactjs/react-transition-group@v2.9.0...v4.4.5)

Updates `react-virtualized` from 9.22.3 to 9.22.6
- [Release notes](https://github.com/bvaughn/react-virtualized/releases)
- [Changelog](https://github.com/bvaughn/react-virtualized/blob/master/CHANGELOG.md)
- [Commits](bvaughn/react-virtualized@v9.22.3...9.22.6)

Updates `swiper` from 8.4.5 to 14.0.7
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v8.4.5...v14.0.7)

Updates `@headlessui/react` from 1.7.19 to 2.2.10
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v2.2.10/packages/@headlessui-react)

Updates `@heroicons/react` from 1.0.6 to 2.2.0
- [Release notes](https://github.com/tailwindlabs/heroicons/releases)
- [Changelog](https://github.com/tailwindlabs/heroicons/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/heroicons@v1.0.6...v2.2.0)

Updates `@tailwindcss/forms` from 0.4.1 to 0.5.11
- [Release notes](https://github.com/tailwindlabs/tailwindcss-forms/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-forms/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-forms@v0.4.1...v0.5.11)

Updates `@tailwindcss/typography` from 0.5.16 to 0.5.20
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.16...v0.5.20)

Updates `@wordpress/plugins` from 7.21.0 to 7.52.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/plugins/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/plugins@7.52.0/packages/plugins)

Updates `browser-sync` from 2.29.3 to 3.0.4
- [Release notes](https://github.com/BrowserSync/browser-sync/releases)
- [Changelog](https://github.com/BrowserSync/browser-sync/blob/master/changelog.js)
- [Commits](BrowserSync/browser-sync@v2.29.3...v3.0.4)

Updates `browser-sync-webpack-plugin` from 2.3.0 to 2.4.0
- [Release notes](https://github.com/Va1/browser-sync-webpack-plugin/releases)
- [Commits](Va1/browser-sync-webpack-plugin@v2.3.0...v2.4.0)

Updates `html-entities` from 1.4.0 to 2.6.0
- [Release notes](https://github.com/mdevils/html-entities/releases)
- [Changelog](https://github.com/mdevils/html-entities/blob/main/CHANGELOG.md)
- [Commits](mdevils/html-entities@v1.4.0...v2.6.0)

Updates `lucide-react` from 0.468.0 to 1.28.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.28.0/packages/lucide-react)

Updates `moment-timezone` from 0.5.48 to 0.6.3
- [Release notes](https://github.com/moment/moment-timezone/releases)
- [Changelog](https://github.com/moment/moment-timezone/blob/develop/changelog.md)
- [Commits](moment/moment-timezone@0.5.48...0.6.3)

Updates `node-fetch` from 2.6.7 to 3.3.2
- [Release notes](https://github.com/node-fetch/node-fetch/releases)
- [Commits](node-fetch/node-fetch@v2.6.7...v3.3.2)

Updates `react` from 17.0.2 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `react-dom` from 17.0.2 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `react-redux` from 7.2.9 to 9.3.0
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v7.2.9...v9.3.0)

Updates `react-router-dom` from 5.3.4 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `redux` from 4.2.1 to 5.0.1
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.1)

Updates `@bsf/force-ui` from v1.7.7 to v1.7.11
- [Commits](brainstormforce/bsf-admin-ui@72c1d09...82eb5b7)

Updates `@wordpress/eslint-plugin` from 7.4.0 to 25.8.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/eslint-plugin@25.8.0/packages/eslint-plugin)

Updates `@wordpress/scripts` from 16.1.5 to 34.0.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/scripts/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/scripts@34.0.0/packages/scripts)

Updates `grunt` from 1.5.3 to 1.6.3
- [Release notes](https://github.com/gruntjs/grunt/releases)
- [Changelog](https://github.com/gruntjs/grunt/blob/main/CHANGELOG.md)
- [Commits](gruntjs/grunt@v1.5.3...v1.6.3)

Updates `grunt-contrib-clean` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/gruntjs/grunt-contrib-clean/releases)
- [Changelog](https://github.com/gruntjs/grunt-contrib-clean/blob/main/CHANGELOG)
- [Commits](gruntjs/grunt-contrib-clean@v2.0.0...v2.0.1)

Updates `grunt-contrib-cssmin` from 4.0.0 to 5.0.0
- [Release notes](https://github.com/gruntjs/grunt-contrib-cssmin/releases)
- [Changelog](https://github.com/gruntjs/grunt-contrib-cssmin/blob/main/CHANGELOG)
- [Commits](gruntjs/grunt-contrib-cssmin@v4.0.0...v5.0.0)

Updates `grunt-contrib-uglify` from 5.0.1 to 5.2.2
- [Release notes](https://github.com/gruntjs/grunt-contrib-uglify/releases)
- [Changelog](https://github.com/gruntjs/grunt-contrib-uglify/blob/main/CHANGELOG)
- [Commits](gruntjs/grunt-contrib-uglify@v5.0.1...v5.2.2)

Updates `grunt-wp-i18n` from 1.0.3 to 1.0.4
- [Changelog](https://github.com/cedaro/grunt-wp-i18n/blob/develop/CHANGELOG.md)
- [Commits](cedaro/grunt-wp-i18n@v1.0.3...v1.0.4)

Updates `grunt-wp-readme-to-markdown` from 2.0.1 to 2.1.0
- [Commits](https://github.com/stephenharris/wp-readme-to-markdown/commits)

Updates `js-yaml` from 4.1.0 to 5.2.3
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@4.1.0...5.2.3)

Updates `sass` from 1.98.0 to 1.102.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.98.0...1.102.0)

Updates `sass-loader` from 10.5.2 to 17.0.0
- [Release notes](https://github.com/webpack/sass-loader/releases)
- [Changelog](https://github.com/webpack/sass-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/sass-loader@v10.5.2...v17.0.0)

Updates `style-loader` from 2.0.0 to 4.0.0
- [Release notes](https://github.com/webpack-contrib/style-loader/releases)
- [Changelog](https://github.com/webpack/style-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/style-loader@v2.0.0...v4.0.0)

Updates `webpack` from 4.46.0 to 5.109.2
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v4.46.0...v5.109.2)

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

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

Updates `@wordpress/api-fetch` from 3.23.1 to 7.52.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/api-fetch/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/api-fetch@7.52.0/packages/api-fetch)

Updates `@wordpress/components` from 11.1.6 to 38.0.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/components/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/components@38.0.0/packages/components)

Updates `@wordpress/compose` from 3.25.3 to 8.5.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/compose/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/compose@8.5.0/packages/compose)

Updates `@wordpress/data` from 4.27.3 to 10.52.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/data/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/data@10.52.0/packages/data)

Updates `@wordpress/i18n` from 3.20.0 to 6.25.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/i18n/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/i18n@6.25.0/packages/i18n)

Updates `@wordpress/notices` from 2.13.3 to 5.52.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/notices/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/notices@5.52.0/packages/notices)

Updates `@wordpress/prettier-config` from 0.4.0 to 4.52.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/prettier-config/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/prettier-config@4.52.0/packages/prettier-config)

Updates `autoprefixer` from 10.4.2 to 10.5.4
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.2...10.5.4)

Updates `shelljs` from 0.8.5 to 0.10.0
- [Release notes](https://github.com/shelljs/shelljs/releases)
- [Changelog](https://github.com/shelljs/shelljs/blob/main/CHANGELOG.md)
- [Commits](shelljs/shelljs@v0.8.5...v0.10.0)

Updates `tailwindcss` from 3.4.17 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/tailwindcss)

---
updated-dependencies:
- dependency-name: "@dnd-kit/core"
  dependency-version: 6.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@dnd-kit/modifiers"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@dnd-kit/sortable"
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@lottiefiles/react-lottie-player"
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/icons"
  dependency-version: 15.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: classnames
  dependency-version: 2.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: codemirror
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: prop-types
  dependency-version: 15.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: re-resizable
  dependency-version: 6.11.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-countdown
  dependency-version: 2.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: react-lazy-load
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-masonry-component
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: react-select
  dependency-version: 5.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: react-slick
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: react-transition-group
  dependency-version: 4.4.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-virtualized
  dependency-version: 9.22.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: swiper
  dependency-version: 14.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@headlessui/react"
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@heroicons/react"
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@tailwindcss/forms"
  dependency-version: 0.5.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tailwindcss/typography"
  dependency-version: 0.5.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/plugins"
  dependency-version: 7.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: browser-sync
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: browser-sync-webpack-plugin
  dependency-version: 2.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: html-entities
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: lucide-react
  dependency-version: 1.28.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: moment-timezone
  dependency-version: 0.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: node-fetch
  dependency-version: 3.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-redux
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.18.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: redux
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@bsf/force-ui"
  dependency-version: 82eb5b7902c1ac78a6de9a5a98ba296beadc3c00
  dependency-type: direct:production
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/eslint-plugin"
  dependency-version: 25.8.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/scripts"
  dependency-version: 34.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: grunt
  dependency-version: 1.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: grunt-contrib-clean
  dependency-version: 2.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: grunt-contrib-cssmin
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: grunt-contrib-uglify
  dependency-version: 5.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: grunt-wp-i18n
  dependency-version: 1.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: grunt-wp-readme-to-markdown
  dependency-version: 2.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: js-yaml
  dependency-version: 5.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: sass
  dependency-version: 1.102.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: sass-loader
  dependency-version: 17.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: style-loader
  dependency-version: 4.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: webpack
  dependency-version: 5.109.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: wp-prettier
  dependency-version: 3.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@types/sortablejs"
  dependency-version: 1.15.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/api-fetch"
  dependency-version: 7.52.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/components"
  dependency-version: 38.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/compose"
  dependency-version: 8.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/data"
  dependency-version: 10.52.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/i18n"
  dependency-version: 6.25.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/notices"
  dependency-version: 5.52.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@wordpress/prettier-config"
  dependency-version: 4.52.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.5.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: shelljs
  dependency-version: 0.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
...

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 Aug 7, 2026
@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addednpm/​react-router-dom@​7.18.21001006597100
Addednpm/​@​wordpress/​api-fetch@​7.52.010010010010070
Addednpm/​@​wordpress/​notices@​5.52.010010010010070
Updatednpm/​@​wordpress/​i18n@​5.21.0 ⏵ 6.25.0100 +1100100100 +170
Updatednpm/​@​wordpress/​components@​29.7.0 ⏵ 38.0.088100100 +3100 +170
Updatednpm/​@​wordpress/​compose@​7.21.0 ⏵ 8.5.099100100100 +170
Updatednpm/​@​wordpress/​data@​10.21.0 ⏵ 10.52.099100100100 +170
Updatednpm/​@​wordpress/​eslint-plugin@​7.4.0 ⏵ 25.8.099100100 +4100 +170
Updatednpm/​@​wordpress/​icons@​10.21.0 ⏵ 15.3.09910090 +410070
Updatednpm/​@​wordpress/​plugins@​7.21.0 ⏵ 7.52.098100100100 +170
Updatednpm/​@​wordpress/​prettier-config@​1.1.1 ⏵ 4.52.010010076 +7100 +170
Updatednpm/​@​wordpress/​scripts@​16.1.5 ⏵ 34.0.097100100100 +170
Updatednpm/​grunt-wp-readme-to-markdown@​2.0.1 ⏵ 2.1.077 +210010080 +4100
Updatednpm/​@​dnd-kit/​core@​6.1.0 ⏵ 6.3.1100 +110079 +180100
Updatednpm/​codemirror@​6.0.1 ⏵ 6.0.210010079 +681100
Updatednpm/​@​dnd-kit/​sortable@​8.0.0 ⏵ 10.0.01001007980100
Updatednpm/​swiper@​8.4.5 ⏵ 14.0.7100 +7100 +7580 +195 +6100
Updatednpm/​@​dnd-kit/​modifiers@​7.0.0 ⏵ 9.0.010010010080100
Addednpm/​browser-sync@​3.0.4861009380100
Addednpm/​lucide-react@​1.28.0100100989680
Updatednpm/​react-slick@​0.24.0 ⏵ 0.31.099 +110010081100
Updatednpm/​webpack@​4.46.0 ⏵ 5.109.282 -410093 -799 +1100
Updatednpm/​react-lazy-load@​3.1.13 ⏵ 4.0.1100 +11009982100
Updatednpm/​@​lottiefiles/​react-lottie-player@​3.4.1 ⏵ 3.6.0981009982 -1100
Addednpm/​@​headlessui/​react@​2.2.101001008390100
Addednpm/​shelljs@​0.10.09410010083100
Updatednpm/​react-masonry-component@​6.2.1 ⏵ 6.3.09910010083100
Updatednpm/​react-virtualized@​9.22.3 ⏵ 9.22.697 +510010083100
Addednpm/​tailwindcss@​4.3.31001008498100
Addednpm/​react@​19.2.81001008497100
Updatednpm/​grunt@​1.5.3 ⏵ 1.6.399 +110084 +591100
Addednpm/​@​heroicons/​react@​2.2.01001009184100
Updatednpm/​node-fetch@​2.6.7 ⏵ 3.3.299 +510010085100
See 15 more rows in the dashboard

View full report

@socket-security

Copy link
Copy Markdown

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
Obfuscated code: npm browser-sync-ui is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/browser-sync@3.0.4npm/browser-sync-ui@3.0.4

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/browser-sync-ui@3.0.4. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
Obfuscated code: npm browser-sync is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/browser-sync@3.0.4

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/browser-sync@3.0.4. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
Obfuscated code: npm data-urls is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/@wordpress/scripts@34.0.0npm/data-urls@5.0.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/data-urls@5.0.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
Obfuscated code: npm puppeteer-core is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/@wordpress/scripts@34.0.0npm/puppeteer-core@24.43.1

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/puppeteer-core@24.43.1. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
Obfuscated code: npm rrweb-cssom is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/@wordpress/scripts@34.0.0npm/rrweb-cssom@0.8.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/rrweb-cssom@0.8.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
Obfuscated code: npm webpack is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/webpack@5.109.2

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/webpack@5.109.2. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
Obfuscated code: npm yargs is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package-lock.jsonnpm/@wordpress/scripts@34.0.0npm/@wordpress/eslint-plugin@25.8.0npm/browser-sync@3.0.4npm/yargs@17.7.3

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/yargs@17.7.3. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@dependabot @github

dependabot Bot commented on behalf of github Aug 18, 2026

Copy link
Copy Markdown
Author

Dependabot attempted to update this pull request, but because the branch dependabot/npm_and_yarn/npm-dependencies-4643fa27db is protected it was unable to do so.

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