Skip to content

build(deps): bump the wordpress group across 1 directory with 28 updates#3302

Open
dependabot[bot] wants to merge 1 commit intotrunkfrom
dependabot/npm_and_yarn/wordpress-6dea2af159
Open

build(deps): bump the wordpress group across 1 directory with 28 updates#3302
dependabot[bot] wants to merge 1 commit intotrunkfrom
dependabot/npm_and_yarn/wordpress-6dea2af159

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 30, 2026

Bumps the wordpress group with 7 updates in the / directory:

Package From To
@wordpress/i18n 6.17.0 6.18.0
@wordpress/components 32.6.0 33.0.0
@wordpress/dataviews 14.1.0 14.2.0
@wordpress/icons 12.2.0 13.0.0
@wordpress/react-i18n 4.44.0 4.45.0
@wordpress/theme 0.11.0 0.12.0
@wordpress/ui 0.11.0 0.12.0

Updates @wordpress/i18n from 6.17.0 to 6.18.0

Changelog

Sourced from @​wordpress/i18n's changelog.

6.18.0 (2026-04-29)

Commits

Updates @wordpress/components from 32.6.0 to 33.0.0

Changelog

Sourced from @​wordpress/components's changelog.

33.0.0 (2026-04-29)

Enhancements

  • ExternalLink: Align appearance with Link from @wordpress/ui (brand color, underline thickness/offset, focus ring, and external-link icon spacing) (#77790).
  • Menu: Remove cursor: not-allowed and added pointer styles to menu (#70412)
  • FormToggle: Add stacking context isolation (#77619).
  • CircularOptionPicker: Add stacking context isolation (#77715).
  • FormTokenField: Add help prop to render additional help text below the field, and deprecate the __experimentalShowHowTo prop in favor of it. The help prop now defaults to the previous how-to text; pass an empty string to hide it (#77552).

Deprecations

  • FormTokenField: Deprecate the __experimentalShowHowTo prop in favor of help prop. The help prop now defaults to the previous how-to text; pass an empty string to hide it (#77552).

Breaking Changes

  • ExternalLink: No longer adds noreferrer to the rel attribute. noopener is still applied. Consumers relying on the previous behavior should pass rel="noopener noreferrer" explicitly (#26968).

Internal

  • NavigableContainer: Refactor from class component to function component with hooks (#77171).
  • Menu: Refactor Menu.Popover to use Ariakit’s render prop, wrapping content in MenuMotionRoot (motion styles) and MenuSurface (panel layout and variant chrome) (#77460).
  • Fix types for TypeScript 7.0 (#77177).
Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/compose from 7.44.0 to 7.45.0

Changelog

Sourced from @​wordpress/compose's changelog.

7.45.0 (2026-04-29)

Commits

Updates @wordpress/dataviews from 14.1.0 to 14.2.0

Changelog

Sourced from @​wordpress/dataviews's changelog.

14.2.0 (2026-04-29)

Enhancements

  • DataForm: Render field description as help text in the array control.#77554
Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/element from 6.44.0 to 6.45.0

Changelog

Sourced from @​wordpress/element's changelog.

6.45.0 (2026-04-29)

Commits

Updates @wordpress/icons from 12.2.0 to 13.0.0

Changelog

Sourced from @​wordpress/icons's changelog.

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)
Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/react-i18n from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/react-i18n's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/private-apis from 1.44.0 to 1.45.0

Changelog

Sourced from @​wordpress/private-apis's changelog.

1.45.0 (2026-04-29)

Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/theme from 0.11.0 to 0.12.0

Changelog

Sourced from @​wordpress/theme's changelog.

0.12.0 (2026-04-29)

Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/ui from 0.11.0 to 0.12.0

Changelog

Sourced from @​wordpress/ui's changelog.

0.12.0 (2026-04-29)

Breaking Changes

  • Dialog, AlertDialog, Popover, Tooltip, Select: Popup portal API (#77452). Add Portal subcomponents and an optional portal prop on Popup (when omitted, the default Portal is used). Remove container from every Popup and portalClassName from Dialog.Popup / AlertDialog.Popup; pass portal={ <Matching.Portal … /> } for container, className, style, and other portal options.
  • Popover, Tooltip, Select: style and className on Popup are now forwarded to the inner Base UI Popup element instead of the outer Positioner. To override the per-instance z-index, pass portal={ <Overlay.Portal style={ { '--wp-ui-<overlay>-z-index': '9999' } } /> } (or set the variable globally on a wrapping element); inline style={ { zIndex: … } } on Popup no longer reaches the positioned element.
  • Dialog, Drawer: Scrolling now requires the new Dialog.Content / Drawer.Content subcomponent; the popup itself no longer scrolls. Rendering Header / Footer as siblings of Content pins them to the popup edges; nesting them inside Content opts out of pinning. AlertDialog.Popup adds stickyHeader / stickyFooter props (default true) for the same choice on its internal chrome (#77559).

New Features

  • Add Drawer primitive (#76690).
  • Add Autocomplete primitive (#77642).

Documentation

  • Restructure setup docs into "Within standard WordPress editor screens" and "Elsewhere" for clarity (#77338).

Bug Fixes

  • Link: Fix text decoration on the unstyled variant when openInNewTab is enabled, and simplify new-tab icon markup (#77420).
  • Dialog, AlertDialog, Popover, Tooltip, Select: Restore focus-trap tabbability through ThemeProvider's display: contents wrapper (#77381, #77520).
  • Remove the transitive peer dependency on date-fns / @date-fns/tz (#77520), resolving #77395.
  • Text: Apply both heading and paragraph CSS defenses regardless of variant, so the correct defense kicks in based on the rendered element rather than the typographic variant (#77461).
  • CollapsibleCard: Fix missing keyboard focus ring on the header chevron icon when rendered inside wp-admin (#77468).
  • CollapsibleCard: Prevent the focus ring of focusable descendants from being clipped by the panel's overflow once the panel is fully expanded (#77667).
  • Tabs: Fix missing keyboard focus ring on the panel in Windows High Contrast mode when rendered inside wp-admin (#77469).

Enhancements

  • Dialog / AlertDialog / Drawer: Pin header / footer chrome to the popup edges when the body overflows, and show separator borders only while there is off-screen content in that direction (#77559).
  • Dialog: Add Dialog.Description sub-component, expose onOpenChangeComplete, skip the backdrop when modal is not true, use 100dvh for viewport-based heights so the popup fits the dynamic viewport on mobile, and forward className on Dialog.Title (#77194).
  • Dialog: Dialog.Header and Dialog.Footer now default to <header> and <footer> elements for richer landmark semantics. Their ref type widens from HTMLDivElement to HTMLElement; pass render to opt out of the default tag (#76690).
  • Dialog, Popover: Upgrade dev-only title validation from mount-only to cleanup-based re-validation, catching conditionally rendered titles (#77165).
  • Link: Honor openInNewTab consistently instead of treating hash links as a special case (#77422).
  • Select: Tighten spacing after checkmark when Select.Item is size="small" (#77642).
  • Dialog, Drawer, Popover: Align title and description colors across all three overlay primitives. Title color is now authored explicitly (resilient to global CSS defenses), and description color now inherits from the popup foreground token instead of overriding to the weak variant (#77692).
  • Dialog, AlertDialog, Drawer, Popover, Select, Tooltip: Unify the hairline border across overlay popups. Popups without a backdrop show a token-colored border in regular mode; popups with a backdrop hide the border (which would be redundant with the backdrop's containment); all popups show a CanvasText border in forced-colors mode (#77691).
  • Link: Use text-decoration-thickness: from-font so the underline honors the font's metrics, instead of a fixed sub-pixel value that renders inconsistently across device pixel ratios (#77790).

Internal

  • Update @base-ui/react from 1.4.0 to 1.4.1 (#77520).
  • Extract shared useScheduleValidation hook; refactor Dialog, Popover, and Tabs validation contexts to use it (#77165).
  • Tabs: Wrap two validation timeout waits in act(...) to avoid intermittent test warnings (#77319).
Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/a11y from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/a11y's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/base-styles from 6.20.0 to 7.0.0

Changelog

Sourced from @​wordpress/base-styles's changelog.

7.0.0 (2026-04-29)

Breaking Changes

  • Remove the following entries from the z-index() helper (#77619, #77620, #77621, #77714, #77715, #77717, #77774):
    • .block-editor-block-contextual-toolbar
    • .block-editor-block-list__block {core/image aligned wide or fullwide}
    • .block-editor-block-list__block::before
    • .block-editor-block-list__block.has-block-overlay
    • .block-editor-block-list__block .reusable-block-edit-panel *
    • .block-editor-block-list__insertion-point
    • .block-editor-block-switcher__arrow
    • .block-editor-url-input__suggestions
    • .block-editor-warning
    • .block-library-classic__toolbar
    • .components-autocomplete__results
    • .components-button {:focus or .is-primary}
    • .components-circular-option-picker__option-wrapper::before
    • .components-circular-option-picker__option.is-pressed
    • .components-circular-option-picker__option.is-pressed + svg
    • .components-circular-option-picker__swatches
    • > *:not(.components-circular-option-picker__swatches)
    • .components-form-toggle__input
    • .components-popover.block-editor-inspector-list-view-content-popover
    • .components-popover.interface-more-menu__content
    • .components-resizable-box__handle
    • .components-resizable-box__side-handle
    • .components-resizable-box__corner-handle
    • .dataviews-action-modal__quick-edit
    • .edit-site-editor__toggle-save-panel
    • .edit-site-template-panel__replace-template-modal
    • .edit-widgets-header
    • .edit-widgets-sidebar {greater than small}
    • .interface-complementary-area .components-panel
    • .interface-complementary-area .components-panel__header
    • .wp-block-template-part__placeholder-preview-filter-input
Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/data from 10.44.0 to 10.45.0

Changelog

Sourced from @​wordpress/data's changelog.

10.45.0 (2026-04-29)

New Features

  • Export keyedReducer higher-order reducer helper, consolidating duplicated copies previously maintained in @wordpress/core-data and @wordpress/notices (#77364).
Commits
  • 8c229ea chore(release): publish
  • 767ba9e Update changelog files
  • 827b5f2 Merge changes published in the Gutenberg plugin "release/23.1" branch
  • See full diff in compare view

Updates @wordpress/date from 5.44.0 to 5.45.0

Changelog

Sourced from @​wordpress/date's changelog.

5.45.0 (2026-04-29)

Commits

Updates @wordpress/deprecated from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/deprecated's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/dom from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/dom's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/dom-ready from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/dom-ready's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/escape-html from 3.44.0 to 3.45.0

Changelog

Sourced from @​wordpress/escape-html's changelog.

3.45.0 (2026-04-29)

Commits

Updates @wordpress/hooks from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/hooks's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/html-entities from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/html-entities's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/is-shallow-equal from 5.44.0 to 5.45.0

Changelog

Sourced from @​wordpress/is-shallow-equal's changelog.

5.45.0 (2026-04-29)

Commits

Updates @wordpress/keycodes from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/keycodes's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/primitives from 4.44.0 to 4.45.0

Changelog

Sourced from @​wordpress/primitives's changelog.

4.45.0 (2026-04-29)

Commits

Updates @wordpress/priority-queue from 3.44.0 to 3.45.0

Changelog

Sourced from @​wordpress/priority-queue's changelog.

3.45.0 (2026-04-29)

Commits

Updates @wordpress/redux-routine from 5.44.0 to 5.45.0

Changelog

Sourced from @​wordpress/redux-routine's changelog.

5.45.0 (2026-04-29)

Commits

Updates @wordpress/rich-text from 7.44.0 to 7.45.0

Changelog

Sourced from @​wordpress/rich-text's changelog.

7.45.0 (2026-04-29)

Commits

Updates @wordpress/undo-manager from 1.44.0 to 1.45.0

Changelog

Sourced from @​wordpress/undo-manager's changelog.

1.45.0 (2026-04-29)

Commits

Updates @wordpress/warning from 3.44.0 to 3.45.0

Changelog

Sourced from @​wordpress/warning's changelog.

3.45.0 (2026-04-29)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file. javascript Pull requests that update javascript code. labels Apr 30, 2026
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This PR updates production dependencies and requires manual review before merging.

@wpmobilebot
Copy link
Copy Markdown
Collaborator

wpmobilebot commented Apr 30, 2026

📊 Performance Test Results

Comparing 4294688 vs trunk

app-size

Metric trunk 4294688 Diff Change
App Size (Mac) 1667.57 MB 1618.38 MB 49.19 MB 🟢 -2.9%

site-editor

Metric trunk 4294688 Diff Change
load 1514 ms 1509 ms 5 ms ⚪ 0.0%

site-startup

Metric trunk 4294688 Diff Change
siteCreation 8074 ms 8090 ms +16 ms ⚪ 0.0%
siteStartup 4943 ms 4946 ms +3 ms ⚪ 0.0%

Results are median values from multiple test runs.

Legend: 🟢 Improvement (faster) | 🔴 Regression (slower) | ⚪ No change (<50ms diff)

@dependabot dependabot Bot changed the title build(deps): bump the wordpress group with 28 updates build(deps): bump the wordpress group across 1 directory with 28 updates May 1, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/wordpress-6dea2af159 branch from 97a10e7 to d4401db Compare May 1, 2026 08:01
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

⚠️ This PR updates production dependencies and requires manual review before merging.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/wordpress-6dea2af159 branch from d4401db to a0ef863 Compare May 3, 2026 09:09
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 3, 2026

⚠️ This PR updates production dependencies and requires manual review before merging.

Bumps the wordpress group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@wordpress/i18n](https://github.com/WordPress/gutenberg/tree/HEAD/packages/i18n) | `6.17.0` | `6.18.0` |
| [@wordpress/components](https://github.com/WordPress/gutenberg/tree/HEAD/packages/components) | `32.6.0` | `33.0.0` |
| [@wordpress/dataviews](https://github.com/WordPress/gutenberg/tree/HEAD/packages/dataviews) | `14.1.0` | `14.2.0` |
| [@wordpress/icons](https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons) | `12.2.0` | `13.0.0` |
| [@wordpress/react-i18n](https://github.com/WordPress/gutenberg/tree/HEAD/packages/react-i18n) | `4.44.0` | `4.45.0` |
| [@wordpress/theme](https://github.com/WordPress/gutenberg/tree/HEAD/packages/theme) | `0.11.0` | `0.12.0` |
| [@wordpress/ui](https://github.com/WordPress/gutenberg/tree/HEAD/packages/ui) | `0.11.0` | `0.12.0` |



Updates `@wordpress/i18n` from 6.17.0 to 6.18.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.18.0/packages/i18n)

Updates `@wordpress/components` from 32.6.0 to 33.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@33.0.0/packages/components)

Updates `@wordpress/compose` from 7.44.0 to 7.45.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@7.45.0/packages/compose)

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

Updates `@wordpress/element` from 6.44.0 to 6.45.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@6.45.0/packages/element)

Updates `@wordpress/icons` from 12.2.0 to 13.0.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@13.0.0/packages/icons)

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

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

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

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

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

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

Updates `@wordpress/data` from 10.44.0 to 10.45.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.45.0/packages/data)

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

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

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

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

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

Updates `@wordpress/hooks` from 4.44.0 to 4.45.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.45.0/packages/hooks)

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

Updates `@wordpress/is-shallow-equal` from 5.44.0 to 5.45.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/is-shallow-equal/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/is-shallow-equal@5.45.0/packages/is-shallow-equal)

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

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

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

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

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

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

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

---
updated-dependencies:
- dependency-name: "@wordpress/a11y"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/base-styles"
  dependency-version: 7.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/components"
  dependency-version: 33.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/compose"
  dependency-version: 7.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/data"
  dependency-version: 10.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/dataviews"
  dependency-version: 14.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/date"
  dependency-version: 5.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/deprecated"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/dom"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/dom-ready"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/element"
  dependency-version: 6.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/escape-html"
  dependency-version: 3.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/hooks"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/html-entities"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/i18n"
  dependency-version: 6.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/icons"
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: wordpress
- dependency-name: "@wordpress/is-shallow-equal"
  dependency-version: 5.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/keycodes"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/primitives"
  dependency-version: 4.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/priority-queue"
  dependency-version: 3.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/private-apis"
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/react-i18n"
  dependency-version: 4.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/redux-routine"
  dependency-version: 5.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/rich-text"
  dependency-version: 7.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/theme"
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/ui"
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/undo-manager"
  dependency-version: 1.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
- dependency-name: "@wordpress/warning"
  dependency-version: 3.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: wordpress
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/wordpress-6dea2af159 branch from a0ef863 to 4294688 Compare May 5, 2026 08:59
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 5, 2026

⚠️ This PR updates production dependencies and requires manual review before merging.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file. javascript Pull requests that update javascript code.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant