Skip to content

Bump the wordpress group with 13 updates - #1246

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/develop/wordpress-0359fdb719
Open

Bump the wordpress group with 13 updates#1246
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/develop/wordpress-0359fdb719

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the wordpress group with 13 updates:

Package From To
@wordpress/api-fetch 7.48.1 7.53.0
@wordpress/block-editor 15.21.1 16.2.0
@wordpress/blocks 15.24.0 15.26.0
@wordpress/browserslist-config 6.51.0 6.53.0
@wordpress/components 37.0.0 39.0.0
@wordpress/data 10.51.0 10.53.0
@wordpress/e2e-test-utils-playwright 1.51.0 1.53.0
@wordpress/element 6.46.0 8.5.0
@wordpress/env 10.39.0 11.13.0
@wordpress/eslint-plugin 25.7.0 25.9.0
@wordpress/hooks 4.52.0 4.53.0
@wordpress/i18n 6.24.0 6.26.0
@wordpress/scripts 33.0.0 34.1.0

Updates @wordpress/api-fetch from 7.48.1 to 7.53.0

Changelog

Sourced from @​wordpress/api-fetch's changelog.

7.53.0 (2026-08-12)

7.52.0 (2026-07-29)

7.51.0 (2026-07-14)

7.50.0 (2026-07-01)

7.49.0 (2026-06-24)

Commits

Updates @wordpress/block-editor from 15.21.1 to 16.2.0

Changelog

Sourced from @​wordpress/block-editor's changelog.

16.2.0 (2026-08-12)

Internal

  • Use the new @wordpress/kebab-case package instead of unlocking the kebabCase utility from the @wordpress/components private APIs (#81294).

Enhancements

  • Allow Global Styles to supply additional element color controls to the shared Colors panel (#80852).
  • Creating a new block next to a sibling of the same type now inherits the sibling's attributes consistently, whether it is created by the appender, the inserter, or Enter at the edge of the text. Everything except the sibling's content (attributes with the content role) and its metadata is copied. The attributesToCopy list of a default block is removed: the copied attributes derive from the block's attribute roles.

Enhancements

  • Add support for the blockStatesEditingEnabled editor setting, which hides state controls for blocks when set to false (#80956, #81058).

Performance

  • hasSelectedInnerBlock: Answer the deep check from a set of the selection's ancestors, built once per selection, instead of walking the parents of every selected block on each call. BlockListBlock asks once per rendered block, so the old cost was the block count multiplied by the selection size (#81210).
  • BlockListBlock: Skip that deep check behind isSelectionWithinCurrentSection when the block is not within a section block, where it was passed an undefined client ID that never matches. Together the two changes take selecting all blocks on a 1000 paragraph post from 16.8s to 0.4s (#81210).
  • ListView: Drop the useBlockDisplayInformation and useBlockLock calls from the row, select button and branch components, reading the few fields they were used for from the useSelect each component already has. Store subscriptions go from seven to four per rendered row, and from two to one per branch (#81136).
  • ListView: Collapse the placeholder rows that stand in for blocks outside of the render window into a single spacer row per run, instead of rendering a <tr>/<td> pair for every block. On a post with 1000 top-level blocks this removes ~1900 elements (about 60% of the List View's DOM and nearly half of the document's elements), which cuts the style recalculation and layout work done when the List View opens (#80953).
  • hasSelectedInnerBlock: Return false up front when called without a client ID, instead of reading the selection and walking it for a check that can never match. The root client ID ('') is covered by the same bail out, so the shallow check no longer reports true when a top level block is selected, matching the deep check (#81315).

Internal

  • ListView: Reimplement the Firefox description-recomputation workaround in AriaReferencedText by keying the element on its text, so React replaces it instead of updating the existing text node in place (#80929.

Bug Fixes

  • MediaPlaceholder: Stop the drop zone activating for canvas block-reorder drags. Dragging an inner block within a block that renders a media placeholder (e.g. reordering a Playlist Track) no longer shows a media drop zone and blocks the reorder.
  • isBlockSelected: Return false when called without a client ID, instead of matching the undefined client ID of an empty selection (#81212).
  • URLInput: Collapse a text selection reaching the start of the field before letting an up arrow press through to the editor, so selecting to the start and pressing up no longer navigates out of the field instead of collapsing the caret (#80780).
  • URLInput: Leave Shift-modified arrow keys to the browser, so extending a selection with Shift+Up or Shift+Down no longer collapses it to the start or end of the field (#80780).
  • RichText: Skip the block input transforms in fields that are not passed an onReplace (#80978).
  • RichText: Ignore pasted files, which carry no text to paste inline (#81010).
  • Background block support: Fix gradients not being applied to a block when a theme opts out of settings.background.gradient in theme.json (#81056).
  • LinkControl: Restore the preview title underline by slightly increasing the title's line height, which was too tight for the underline to be visible (#81083).
  • URLInput: Skip link search requests while an IME composition is in progress; the search now fires once with the confirmed value on compositionend (#80602).
  • SpacingSizesControl: Give the control's visible label its own translation context instead of sharing an entry with the side input's aria label, which feeds the same placeholders in the opposite order — a single shared translation could not be correct for both (#81240).

16.1.0 (2026-07-29)

Enhancements

  • Inspector controls in the standard block-supports panels (Typography, Dimensions, Border, Color, Background, Filters) now reflect the value a block inherits from Global Styles when no local override is set. Inherited controls show that value at rest (as a placeholder, preselected option, or resolved value) and mark the label with a dotted underline; setting a local override reveals a reset affordance that clears the override back to the inherited value (#77894).
  • Inherited Global Styles now resolve per-level heading element styles for the heading-family blocks (core/heading, core/site-title, core/post-title, core/query-title, core/comments-title, core/term-name, core/site-tagline, core/accordion-heading), so inspector controls reflect values set on a specific heading level (styles.elements.h1h6) in addition to the shared heading element. A block rendered at level 0 (a paragraph) folds no heading element styles; core/accordion-heading has no level-0 state and takes its level from the parent Accordion's block context (#80495).
  • Inherited Global Styles now resolve the link element (styles.elements.link) for whole-block link blocks — those that render as a link — so their inspector controls reflect inherited link styles, mirroring the button element treatment for core/button. Covers core/read-more, core/loginout, core/post-navigation-link, core/query-pagination-next, core/query-pagination-previous, core/query-pagination-numbers, core/comments-pagination-next, core/comments-pagination-previous, core/comments-pagination-numbers, core/comment-edit-link, core/comment-reply-link, and core/post-comments-link #80607).

Internal

... (truncated)

Commits

Updates @wordpress/blocks from 15.24.0 to 15.26.0

Changelog

Sourced from @​wordpress/blocks's changelog.

15.26.0 (2026-08-12)

Internal

  • Update hpq to 1.4.0 for its bundled TypeScript types (#81199).

15.25.0 (2026-07-29)

Internal

  • Update memize to 2.1.1 (#80764).
Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • See full diff in compare view

Updates @wordpress/browserslist-config from 6.51.0 to 6.53.0

Changelog

Sourced from @​wordpress/browserslist-config's changelog.

6.53.0 (2026-08-12)

6.52.0 (2026-07-29)

Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • See full diff in compare view

Updates @wordpress/components from 37.0.0 to 39.0.0

Changelog

Sourced from @​wordpress/components's changelog.

39.0.0 (2026-08-12)

Breaking Changes

  • ValidatedTextControl: Remove from private APIs. Use ValidatedInputControl instead (#80680).
  • Components that compose Emotion style fragments with cx() should pass source-order-dependent fragments in a single css() call. Passing separate fragments can change override order after the following components stopped rendering styles through Emotion:
  • Remove the private DateCalendar, DateRangeCalendar and TZDate exports. The calendars now ship as the public Calendar and RangeCalendar components in @wordpress/ui; TZDate comes from @date-fns/tz (#81337).

Deprecations

  • Animate: Deprecate the component, planned for removal in WordPress 7.4 (#80931).
  • Surface: Deprecate the component, planned for removal in WordPress 7.4 (#80943).

Enhancements

  • SandBox: Add allowForms prop to opt into allow-forms in the iframe's sandbox attribute (#76471).

Bug Fixes

  • Modal: Prevent background page scrolling without relying on WordPress global styles when using the default bodyOpenClassName (#81164).
  • Menu: Return focus to the root trigger after closing a legacy Modal opened from a menu item, while preserving the menu-to-Modal scroll-lock handoff (#81164).
  • Button: Suppress the browser focus ring when keyboard-focused and pressed (#81113).

TypeScript

  • Further improved WordPressComponent typecheck performance: intrinsic as values use a shared attribute bag instead of remapping props per HTML tag (#80705).
  • ConfirmDialog: Type the size prop forwarded to Modal (#80705).
  • ToggleGroupControl: Type the disabled prop (#80705).
  • DropdownContentWrapper: Type the children prop (#80705).

Documentation

  • ConfirmDialog: Opt into auto-generated README documentation from types and JSDoc (#80866).

Internal

  • Remove ValidatedCheckboxControl from the private APIs; it now lives internally in @wordpress/dataviews, its only consumer (#81435).
  • Remove ValidatedNumberControl from the private APIs; it now lives internally in @wordpress/dataviews, its only consumer (#81433).
  • Remove ValidatedRadioControl from the private APIs; it now lives internally in @wordpress/dataviews, its only consumer (#81434).
  • Remove ValidatedSelectControl from the private APIs; it now lives internally in @wordpress/dataviews, its only consumer (#81391).
  • Move withIgnoreIMEEvents to @wordpress/keycodes, where it is now a public API, and remove it from this package's private APIs (#81343).
  • Extract the private kebabCase utility to the new @wordpress/kebab-case package and remove it from the private APIs; all consumers now use the package directly (#81294).
  • Remove normalizeTextString from the private APIs; the utility remains internal to this package (#81294).
  • Remove obsolete dependency grouping comments as part of the repository-wide separator-free import migration. (#81248)
  • Button: Expand the Storybook e2e VariantStates matrix with compact, small, and with-icon rows (#80793).
  • Update react-day-picker to 9.14.0 (#80792).
  • Update @ariakit/react to 0.4.35 and @ariakit/test to 0.7.2 (#80765).
  • Update @floating-ui/react-dom to 2.1.9 (#80761).

... (truncated)

Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • See full diff in compare view

Updates @wordpress/data from 10.51.0 to 10.53.0

Changelog

Sourced from @​wordpress/data's changelog.

10.53.0 (2026-08-12)

10.52.0 (2026-07-29)

Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • See full diff in compare view

Updates @wordpress/e2e-test-utils-playwright from 1.51.0 to 1.53.0

Changelog

Sourced from @​wordpress/e2e-test-utils-playwright's changelog.

1.53.0 (2026-08-12)

Bug Fixes

  • Metrics.startTracing(): Run a trivial script in every frame once tracing is on, to absorb the isolate interrupt that enabling the V8 sampling profiler queues. Its cost otherwise lands in the first thing the test does, usually the interaction being measured, and grows through a spec's iterations: a stable 220ms interaction reported anywhere from 200ms to 650ms (#81264).
  • Metrics.getSelectionEventDurations(): Dispatches that nest inside another dispatch now contribute only the time not already covered by it, so summing the returned durations no longer counts the nested work twice.

1.52.0 (2026-07-29)

Bug Fixes

  • Metrics.getSelectionEventDurations(): Also collect pointerup and selectionchange durations, and omit event types that did not fire. Selecting a block within an editing host no longer fires focus/focusin, which made the metric report zero.
Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • See full diff in compare view

Updates @wordpress/element from 6.46.0 to 8.5.0

Changelog

Sourced from @​wordpress/element's changelog.

8.5.0 (2026-08-12)

8.4.0 (2026-07-29)

Bug Fixes

  • createInterpolateElement: Warn and stop interpolating instead of throwing when an unmatched closing tag is present (#60843).

8.3.0 (2026-07-14)

Breaking Changes

  • Move react and react-dom from dependencies to peerDependencies. Consumers must now provide react and react-dom themselves. @types/react and @types/react-dom become optional peer dependencies (#80053).

8.2.0 (2026-07-01)

8.1.0 (2026-06-24)

8.0.1 (2026-06-16)

8.0.0 (2026-06-10)

Breaking Changes

  • Revert React back to v18 #78940.

7.0.0 (2026-05-27)

Breaking Changes

  • Updated dependencies to React 19.2.4 (#61521).
  • Removed the render, hydrate and unmountComponentAtNode exports that have been deprecated since WordPress 6.2 after upgrade to React 18 (#61521).

New Features

  • Added new react exports: Activity, use, useActionState, useEffectEvent, and useOptimistic (#61521).
  • Added new react-dom exports: useFormStatus, preconnect, prefetchDNS, preinit, preinitModule, preload, and preloadModule (#61521).
Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 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
  • Additional commits viewable in compare view

Updates @wordpress/env from 10.39.0 to 11.13.0

Changelog

Sourced from @​wordpress/env's changelog.

11.13.0 (2026-08-12)

11.12.0 (2026-07-29)

11.11.0 (2026-07-14)

11.10.0 (2026-07-01)

11.9.0 (2026-06-24)

11.8.1 (2026-06-16)

11.8.0 (2026-06-10)

Enhancements

  • Use partial clones (--filter=blob:none) when downloading git sources and the PHPUnit test suite to reduce download size. (#78918)

Bug Fixes

  • Replace extract-zip with adm-zip to fix silent hang on Node 24.16.0 (libuv 1.52.1) when downloading URL-based zip sources. (#78762)

11.7.0 (2026-05-27)

11.6.0 (2026-05-14)

11.5.0 (2026-04-29)

11.4.0 (2026-04-15)

Bug Fixes

  • Fix WP-Cron, REST API loopback, and Site Health loopback failures when wp-env runs on a non-default port. Apache inside the WordPress container now also listens on the host-mapped port, so PHP loopback requests to WP_HOME succeed instead of being refused. (#20569)

11.3.0 (2026-04-01)

11.2.0 (2026-03-18)

11.1.0 (2026-03-04)

Bug Fixes

  • Suppress spinner and success message output when using --json flag to ensure clean, parseable JSON output.

11.0.0 (2026-02-18)

Bug Fixes

  • Playground runtime now supports zip archive themes, matching Docker runtime behavior. (#75140).

... (truncated)

Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 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
  • Additional commits viewable in compare view

Updates @wordpress/eslint-plugin from 25.7.0 to 25.9.0

Changelog

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

25.9.0 (2026-08-12)

Enhancements

  • The dependency-group rule's "never" mode now recognizes dependency comments regardless of capitalization or a trailing period while preserving other comments. (#81246)
  • Update use-recommended-components rule to allow Calendar and RangeCalendar from @wordpress/ui (#81337).

25.8.0 (2026-07-29)

Enhancements

  • Update use-recommended-components rule to flag Animate, Flex, FlexBlock, FlexItem, ResponsiveWrapper, TabbableContainer, and __experimentalDivider, __experimentalElevation, __experimentalGrid, __experimentalScrollable, __experimentalSpacer, __experimentalSurface, and __experimentalView from @wordpress/components as not recommended (#80754).
  • Updated use-recommended-components deprecation messages for Animate and __experimentalSurface to point to design tokens (#80931, #80943).
Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • See full diff in compare view

Updates @wordpress/hooks from 4.52.0 to 4.53.0

Changelog

Sourced from @​wordpress/hooks's changelog.

4.53.0 (2026-08-12)

Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • See full diff in compare view

Updates @wordpress/i18n from 6.24.0 to 6.26.0

Changelog

Sourced from @​wordpress/i18n's changelog.

6.26.0 (2026-08-12)

6.25.0 (2026-07-29)

Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • See full diff in compare view

Updates @wordpress/scripts from 33.0.0 to 34.1.0

Changelog

Sourced from @​wordpress/scripts's changelog.

34.1.0 (2026-08-12)

Bug Fixes

  • Set Sass's charset option to false so production builds no longer emit a UTF-8 BOM in the middle of the extracted CSS (#81383).

34.0.0 (2026-07-29)

Breaking Changes

  • Upgrade the bundled Jest packages from v29 to v30 (#80767).

Enhancements

  • `format`: Detect `prettier.config.mjs` so the bundled default config is not used when one is present ([#80422](https://github.com/WordPress/gutenberg/pull/80422)).
    
Commits
  • 989764d chore(release): publish
  • e18aa00 Update changelog files
  • dbb73c9 Merge changes published in the Gutenberg plugin "release/23.8" branch
  • 7e8b17a chore(release): publish
  • 42ad080 Update changelog files
  • edffa74 Merge changes published in the Gutenberg plugin "release/23.7" branch
  • See full diff in compare view

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 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 wordpress group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@wordpress/api-fetch](https://github.com/WordPress/gutenberg/tree/HEAD/packages/api-fetch) | `7.48.1` | `7.53.0` |
| [@wordpress/block-editor](https://github.com/WordPress/gutenberg/tree/HEAD/packages/block-editor) | `15.21.1` | `16.2.0` |
| [@wordpress/blocks](https://github.com/WordPress/gutenberg/tree/HEAD/packages/blocks) | `15.24.0` | `15.26.0` |
| [@wordpress/browserslist-config](https://github.com/WordPress/gutenberg/tree/HEAD/packages/browserslist-config) | `6.51.0` | `6.53.0` |
| [@wordpress/components](https://github.com/WordPress/gutenberg/tree/HEAD/packages/components) | `37.0.0` | `39.0.0` |
| [@wordpress/data](https://github.com/WordPress/gutenberg/tree/HEAD/packages/data) | `10.51.0` | `10.53.0` |
| [@wordpress/e2e-test-utils-playwright](https://github.com/WordPress/gutenberg/tree/HEAD/packages/e2e-test-utils-playwright) | `1.51.0` | `1.53.0` |
| [@wordpress/element](https://github.com/WordPress/gutenberg/tree/HEAD/packages/element) | `6.46.0` | `8.5.0` |
| [@wordpress/env](https://github.com/WordPress/gutenberg/tree/HEAD/packages/env) | `10.39.0` | `11.13.0` |
| [@wordpress/eslint-plugin](https://github.com/WordPress/gutenberg/tree/HEAD/packages/eslint-plugin) | `25.7.0` | `25.9.0` |
| [@wordpress/hooks](https://github.com/WordPress/gutenberg/tree/HEAD/packages/hooks) | `4.52.0` | `4.53.0` |
| [@wordpress/i18n](https://github.com/WordPress/gutenberg/tree/HEAD/packages/i18n) | `6.24.0` | `6.26.0` |
| [@wordpress/scripts](https://github.com/WordPress/gutenberg/tree/HEAD/packages/scripts) | `33.0.0` | `34.1.0` |


Updates `@wordpress/api-fetch` from 7.48.1 to 7.53.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.53.0/packages/api-fetch)

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

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

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

Updates `@wordpress/components` from 37.0.0 to 39.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@39.0.0/packages/components)

Updates `@wordpress/data` from 10.51.0 to 10.53.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.53.0/packages/data)

Updates `@wordpress/e2e-test-utils-playwright` from 1.51.0 to 1.53.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/e2e-test-utils-playwright/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/e2e-test-utils-playwright@1.53.0/packages/e2e-test-utils-playwright)

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

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

Updates `@wordpress/eslint-plugin` from 25.7.0 to 25.9.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.9.0/packages/eslint-plugin)

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

Updates `@wordpress/i18n` from 6.24.0 to 6.26.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.26.0/packages/i18n)

Updates `@wordpress/scripts` from 33.0.0 to 34.1.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.1.0/packages/scripts)

---
updated-dependencies:
- dependency-name: "@wordpress/api-fetch"
  dependency-version: 7.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/block-editor"
  dependency-version: 16.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/blocks"
  dependency-version: 15.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/browserslist-config"
  dependency-version: 6.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/components"
  dependency-version: 39.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/data"
  dependency-version: 10.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/e2e-test-utils-playwright"
  dependency-version: 1.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/element"
  dependency-version: 8.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/env"
  dependency-version: 11.13.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/eslint-plugin"
  dependency-version: 25.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/hooks"
  dependency-version: 4.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/i18n"
  dependency-version: 6.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/scripts"
  dependency-version: 34.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wordpress
...

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 25, 2026
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