Skip to content

Update wordpress monorepo (major) - #353

Open
renovate[bot] wants to merge 1 commit into
developfrom
renovate/major-wordpress-monorepo
Open

Update wordpress monorepo (major)#353
renovate[bot] wants to merge 1 commit into
developfrom
renovate/major-wordpress-monorepo

Conversation

@renovate

@renovate renovate Bot commented Sep 15, 2021

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@wordpress/block-editor (source) 5.3.317.0.0 age confidence
@wordpress/blocks (source) 6.25.215.27.0 age confidence
@wordpress/browserslist-config (source) 2.7.06.54.0 age confidence
@wordpress/dom (source) 2.18.04.54.0 age confidence
@wordpress/dom-ready (source) 2.13.24.54.0 age confidence
@wordpress/e2e-test-utils (source) 4.16.111.34.0 age confidence
@wordpress/eslint-plugin (source) 7.4.025.10.0 age confidence
@wordpress/i18n (source) 3.20.06.27.0 age confidence
@wordpress/jest-preset-default (source) 6.6.014.1.0 age confidence
@wordpress/jest-puppeteer-axe (source) 1.10.07.52.0 age confidence
@wordpress/postcss-themes (source) 2.6.06.54.0 age confidence
@wordpress/scripts (source) 12.6.134.2.0 age confidence
@wordpress/server-side-render (source) 1.21.36.30.0 age confidence
@wordpress/url (source) 2.22.24.54.0 age confidence

Release Notes

WordPress/gutenberg (@​wordpress/block-editor)

v17.0.0

Compare Source

Breaking Changes
  • Remove src/default-editor-styles.scss. Consumers importing it should supply their own (#​81793).
New Features
  • Register and handle the keyboard shortcuts that blocks declare on their variations and transforms, so that any block can contribute a shortcut without the editor knowing about it. Shortcuts apply to the selected block, and are listed under "Block shortcuts" in the keyboard shortcuts help modal (#​81588).
Enhancements
  • Allow blocks to provide inspector controls for viewport style states.
  • BlockStyles: Use Button from @wordpress/ui, truncate long labels after three lines, and navigate the variations as a radio group (#​40331).
  • Patterns explorer: Refactor the category sidebar to use Tabs (#​81807).
  • PublishDateTimePicker: Add a showPopoverHeader prop so the picker can be rendered inline, without the popover title and close button. Rename the header's reset action from "Now" to "Reset", which reads as an action rather than a status (#​81806).
  • Show separate horizontal and vertical block spacing controls in the block inspector only for Flex and Grid layouts, while retaining axial gap support in Global Styles. Responsive Grid column calculations use the horizontal gap, while Flow and Constrained layouts use the vertical gap when receiving an axial value (#​81476).
Bug Fixes
  • Retain focus and caret position when undoing a prefix transform (e.g. ## , - , > ) with Backspace or Escape (#​82116).
  • Hide the Layout panel when a block has layout editing enabled but all controls for its layout type are disabled (#​81968).
  • DuotoneControl: Keep the picked preset's identity when applying a duotone to a block. Two presets can hold the same pair of colors, and the applied preset was resolved by matching colors, so the first of any duplicate pair was saved and both appeared selected (#​81605).
  • InnerBlocks: Resolve the default of a block's layout support before providing it to inner blocks. A block that declared its layout only as a support default, such as the Gallery, previously handed its children the raw support config, which has no type, so the children resolved to the flow layout instead. As a result an Image nested in a Gallery offered left/center/right alignment, which the flex layout does not permit (#​81606).
  • Never apply Spotlight mode in a preview canvas, which cannot be edited and so rendered most of its content faded (#​81615).
  • Grid: Keep child layout changes made with the resizer scoped to the selected viewport.
  • DimensionsTool: Reflect aspect ratio and scale values that are updated from outside the component, such as by undo or updateBlockAttributes. The scale control no longer displays a stale value, and an aspect ratio that is written differently to its preset, e.g. 1/1 rather than 1, is displayed as that preset instead of as "Original" (#​80747).
  • ListView: Only move focus into the list when the new focusOnMount prop is set, so that a list mounted as a side effect of a selection no longer pulls focus out of the editor canvas (#​81659).
  • RichText: Handle Enter using the current record, so pressing it right after moving the caret splits at the caret's new position instead of the previous one (#​81696).
  • useInnerBlocksProps: Resolve the manual grid placement check that disables the standard drop zone against a layout passed through the options, when provided, instead of always using the block edit context layout (#​81120).
  • useInsertionPoint: Leave the insertion cue alone when it belongs to the in-between inserter. The cue is shared state and the in-between inserter mounts inside its popover, so the sidebar inserter hiding it tore down the inline inserter that had just been opened (#​76241).
  • BorderPanel: Match a chosen drop shadow against the presets from every origin rather than the first origin that defines any, so theme and default presets keep being stored as var:preset|shadow|<slug> once a custom preset exists (#​81346).
  • InserterMenu: Cancel the animation frame that focuses the active tab when the menu unmounts before it runs, so an unmount right after mount no longer throws #​81918.
  • ListView: On keyboard activation, focus the start of the first field instead of the end of the last. A Table no longer focuses its last cell. Clicking a List View item still keeps focus in the list (#​81964).
Internal
  • Split tsconfig into a build project and a default dev project so dev files are type checked without publishing their declarations. (#​81516)
  • Expose isElementVisible via private APIs so @wordpress/editor's collaboration overlay can detect content hidden by a collapsed container (e.g. a closed core/details panel) without duplicating the visibility check (#​81322).

v16.2.0

Compare Source

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

v16.1.0

Compare Source

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
  • Gate the inherited Global Styles treatment in the block inspector on the gutenberg-global-styles-inheritance-ui Gutenberg experiment, so useResolvedStyle resolves nothing and the block-supports panels render without the inheritance affordances until the experiment is turned on (#​80555, #​80815).
  • URLInput: Convert the class component to a function component with hooks, replacing the compose( withSafeTimeout, withSpokenMessages, withInstanceId, withSelect ) wrapper. The unused setTimeout prop injected by withSafeTimeout is dropped, and the block editor settings are now read on demand rather than subscribed to (#​80721).
Bug Fixes
  • Gate the HEIC canvas conversion fallback on window.__clientSideMediaProcessing instead of the redundant window.__heicUploadSupport flag, fixing client-side HEIC conversion in Safari on core WordPress installs (#​80452).
  • URLInput: Request suggestions for a value the field is mounted with, instead of waiting for the input to be focused, and stop requesting initial suggestions on mount when disableSuggestions is set (#​80721).
  • The multi-selection inspector card and the spoken selection announcement now disclose the total number of blocks a selection contains when the selected blocks have nested content, e.g. "2 blocks selected, 4 including nested blocks." (#​80745).

v16.0.0

Compare Source

Internal
  • Extract a shared getBlockBindingsContext helper for assembling the context handed to block-bindings sources; only entries present in the surrounding block context are copied (#​79855).
Bug Fixes
  • Writing flow: Only pull a forward selection ending at the next element's offset 0 back into the previous block for triple clicks, and clamp the dispatched selection end offset to the rich text content length so an overshooting selection no longer collapses to its start (#​80126).
  • ListView: Use the DS focus color token for the row focus ring so it adapts to themed surfaces such as the site editor navigation sidebar, and remove the duplicate focus ring on the row's Options (three-dot) button, which already draws the standard Button focus ring. (#​80087).
  • DimensionControl: Include component styles in the block editor stylesheet so the fieldset reset is applied in Storybook and other contexts without WordPress core styles (#​79916).
  • InnerContent: Render the selected inner block synchronously so its rich text selection stays current while typing; otherwise a stale selection offset could place a typed character at the wrong position in editable static inner blocks (#​79726).
  • useTypingObserver: Capture the window reference at mount and reuse it during cleanup so the ref cleanup no longer reads node.ownerDocument.defaultView (which is null once the iframe-hosted editor has been detached from its window) and throws, which was also leaking the removeEventListener calls that follow it (#​78772).
Breaking Changes
  • The __next40pxDefaultSize prop is now true by default. The prop can be safely removed from the following:
Deprecations
  • Soft-deprecate the __experimentalImageEditor component. The Media Editor modal is now the default crop experience for core blocks (#​78654).
Enhancements
  • Use the emphasis font-weight token for UI emphasis (#​80093).
  • Widen React peer dependency ranges to ^18 || ^19 to support both React 18 and React 19 environments (#​80024).
  • Inserter media categories support an optional emptyMessage, shown in place of the generic "No results found" notice, that also keeps a source listed when it has no items. The media panel additionally renders attach/detach affordances for attached images (#​79336).

v15.23.0

Compare Source

v15.22.1

Compare Source

v15.22.0

Compare Source

Enhancements
  • Grid: Add a "Fill available space" option to the grid layout that switches the auto-placement keyword from auto-fill to auto-fit, so columns stretch to fill the row instead of leaving empty tracks. (#​79356)
  • List View: a block that supports listView is now excluded from the List View when it has no inner blocks and disallows insertion (allowedBlocks is [] or false), since there is nothing to show, rearrange, or add. (#​78932)

v15.21.1

Compare Source

v15.21.0

Compare Source

Code Quality
  • Add missing @types/react dependency. #​78882.
Documentation
  • Fix documentation typos and grammar (#​78686).
Internal
  • ListView: Compute the block visibility label once in ListViewBlock and pass it down to ListViewBlockSelectButton, removing a duplicated useSelect/getBlockVisibilityLabel call and clarifying that the label is exposed to assistive technology through the row's aria-describedby (#​78640).
  • Dependency updates (#​77954).

v15.20.0

Compare Source

Bug Fixes
  • ColorPanel: Theme CSS custom-property gradients are now decoded to their preset slug and persisted as a gradient block attribute rather than as a raw style.color.gradient value (#​78328).
Internal
  • Remove legacy Notice overrides in block placeholder notices and media replace flow error UI (#​78231).
  • Updated diff dependency from ^4.0.2 to ^8.0.3 (#​77992).

v15.19.0

Compare Source

Enhancements
  • BlockManager: Add stacking context isolation to category list (#​77759).
Bug Fixes
  • ColorPanel: Fix incorrect color selection and text↔link sync with duplicate-value palette entries. Slug-based selection is now threaded through the color panel so that two palette entries sharing the same hex value but different slugs are treated as distinct choices. The text↔link sync condition now compares raw stored references instead of decoded hex values; the previous decoded comparison incorrectly conflated entries that shared a hex value (#​78048).

v15.18.0

Compare Source

Enhancements
  • Use --wpds-cursor-control for interactive cursor styling and replace all instances (#​77354).

v15.17.0

Compare Source

v15.16.0

Compare Source

v15.15.0

Compare Source

v15.14.0

Compare Source

v15.13.2

Compare Source

v15.13.1

Compare Source

v15.13.0

Compare Source

Bug Fixes
  • Store: insertBlock - the meta argument is now the 6th argument of the action, the 5th argument is initialPosition (#​75197).

v15.12.0

Compare Source

v15.11.0

Compare Source

v15.10.0

Compare Source

v15.9.0

Compare Source

v15.8.0

Compare Source

v15.7.0

Compare Source

v15.6.9

Compare Source

v15.6.8

Compare Source

v15.6.7

Compare Source

v15.6.6

Compare Source

v15.6.5

Compare Source

v15.6.4

Compare Source

v15.6.3

Compare Source

v15.6.2: 15.6.2

Compare Source

Changelog
Bug Fixes
  • Post Template: Fix broken title editing. (49984)
Contributors

The following contributors merged PRs in this release:

@​jsnajdr

v15.6.1: 15.6.1

Compare Source

Changelog
Bug Fixes
CSS & Styling
  • Cover: Reduce z-index for inner blocks container. (49943)
Contributors

The following contributors merged PRs in this release:

@​aaronrobertshaw

v15.6.0

Compare Source

v15.5.0

Compare Source

v15.4.0

Compare Source

v15.3.0

Compare Source

v15.2.0

Compare Source

v15.1.0

Compare Source

v15.0.0

Compare Source

Breaking Changes
  • Store: Deprecate the block hovered global state and related action/selector (#​70731)

v14.21.0

Compare Source

v14.20.0

Compare Source

v14.19.0

Compare Source

v14.18.0

Compare Source

v14.17.0

Compare Source

v14.16.0

Compare Source

v14.15.0

Compare Source

v14.14.6

Compare Source

v14.14.5

Compare Source

v14.14.4

Compare Source

v14.14.3

Compare Source

v14.14.2

Compare Source

v14.14.1

Compare Source

v14.14.0

Compare Source

v14.13.0

Compare Source

v14.12.0

Compare Source

v14.11.0

Compare Source

v14.10.1

Compare Source

v14.10.0

Compare Source

v14.9.0

Compare Source

v14.8.0

Compare Source

v14.7.0

Compare Source

v14.6.0

Compare Source

v14.5.0

Compare Source

v14.4.0

Compare Source

v14.3.16

Compare Source

v14.3.15

Compare Source

v14.3.14

Compare Source

v14.3.13

Compare Source

v14.3.12

Compare Source

v14.3.11

Compare Source

v14.3.10

Compare Source

v14.3.9

Compare Source

v14.3.8

Compare Source

v14.3.7

Compare Source

v14.3.6

Compare Source

v14.3.5

Compare Source

v14.3.4

Compare Source

v14.3.3

Compare Source

v14.3.2

Compare Source

v14.3.1: 14.3.1

Compare Source

Changelog

Code Quality
Block Library
  • Add: Missing output escaping on some blocks. (45045)

First time contributors

The following PRs were merged by first time contributors:

Contributors

The following contributors merged PRs in this release:

@​jorgefilipecosta

v14.3.0

Compare Source

v14.2.0

Compare Source

v14.1.0

Compare Source

v14.0.0

Compare Source

Breaking Changes
  • URLInput: Remove deprecated __nextHasNoMarginBottom prop and promote to default behavior (#​64282).
  • LineHeightControl: Remove deprecated __nextHasNoMarginBottom prop and promote to default behavior (#​64281).
Enhancements
  • FontFamilyControl: Add __nextHasNoMarginBottom prop for opting into the new margin-free styles (#​64280).

v13.4.0

Compare Source

v13.3.0

Compare Source

v13.2.0

Compare Source

v13.1.0

Compare Source

[v13.0.7](https://redirect.github.com/WordP

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from b7db07c to 3f8eb8e Compare September 15, 2021 02:09
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 3f8eb8e to edccd55 Compare October 12, 2021 10:49
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from edccd55 to 5eb58df Compare October 22, 2021 16:37
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 3 times, most recently from abad29a to ad051eb Compare November 11, 2021 08:57
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 3 times, most recently from 6e17dae to 9fc8333 Compare November 22, 2021 04:09
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from 2f57fbb to e83bfec Compare November 29, 2021 07:58
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from e83bfec to 3590e5f Compare November 30, 2021 05:31
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 3590e5f to 61212d1 Compare March 7, 2022 14:37
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 61212d1 to 68db48e Compare March 26, 2022 15:26
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 68db48e to b43461c Compare May 15, 2022 22:11
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from b43461c to cfc0deb Compare June 18, 2022 18:15
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from cfc0deb to c325258 Compare September 25, 2022 19:16
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from c325258 to 233cab0 Compare November 20, 2022 10:04
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 233cab0 to 9c41d5c Compare March 18, 2023 02:22
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 9c41d5c to 22cfaf4 Compare March 30, 2023 01:22
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 22cfaf4 to c686148 Compare April 17, 2023 12:54
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from c686148 to 269a566 Compare May 28, 2023 10:20
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 269a566 to 1d7aa03 Compare June 7, 2023 18:11
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from 8fe80c9 to 45b8235 Compare June 30, 2023 06:20
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 45b8235 to 0f28e65 Compare July 6, 2023 00:45
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 0f28e65 to abdd364 Compare July 20, 2023 06:16
@renovate

renovate Bot commented Jul 20, 2023

Copy link
Copy Markdown
Contributor Author

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn old lockfile
npm warn old lockfile The package-lock.json file was created with an old version of npm,
npm warn old lockfile so supplemental metadata must be fetched from the registry.
npm warn old lockfile
npm warn old lockfile This is a one-time fix-up, please be patient...
npm warn old lockfile
npm warn old lockfile Could not fetch metadata for prettier@2.2.1-beta-1 prettier: No matching version found for prettier@2.2.1-beta-1.
npm warn old lockfile     at module.exports (/opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js:209:23)
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/pacote/lib/registry.js:131:54)
npm warn old lockfile     at async /opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:734:24 {
npm warn old lockfile   code: 'ETARGET',
npm warn old lockfile   type: 'version',
npm warn old lockfile   wanted: '2.2.1-beta-1',
npm warn old lockfile   versions: [
npm warn old lockfile     '0.0.1',  '0.0.2',  '0.0.3',       '0.0.4',  '0.0.5',
npm warn old lockfile     '0.0.6',  '0.0.7',  '0.0.8',       '0.0.9',  '0.0.10',
npm warn old lockfile     '0.11.0', '0.13.1', '0.14.0',      '0.14.1', '0.15.0',
npm warn old lockfile     '0.16.0', '0.17.0', '0.17.1',      '0.18.0', '0.19.0',
npm warn old lockfile     '0.20.0', '0.21.0', '0.22.0',      '1.0.0',  '1.0.1',
npm warn old lockfile     '1.0.2',  '1.1.0',  '1.2.0',       '1.2.1',  '1.2.2',
npm warn old lockfile     '1.3.0',  '1.3.1',  '1.4.0-beta',  '1.4.0',  '1.4.1',
npm warn old lockfile     '1.4.2',  '1.4.3',  '1.4.4',       '1.5.0',  '1.5.1',
npm warn old lockfile     '1.5.2',  '1.5.3',  '1.6.0-beta2', '1.6.0',  '1.6.1',
npm warn old lockfile     '1.7.0',  '1.7.1',  '1.7.2',       '1.7.3',  '1.7.4',
npm warn old lockfile     '1.8.0',  '1.8.1',  '1.8.2',       '1.9.0',  '1.9.1',
npm warn old lockfile     '1.9.2',  '1.10.0', '1.10.1',      '1.10.2', '1.11.0-rc.1',
npm warn old lockfile     '1.11.0', '1.11.1', '1.12.0',      '1.12.1', '1.13.0',
npm warn old lockfile     '1.13.1', '1.13.2', '1.13.3',      '1.13.4', '1.13.5',
npm warn old lockfile     '1.13.6', '1.13.7', '1.14.0',      '1.14.1', '1.14.2',
npm warn old lockfile     '1.14.3', '1.15.0', '1.15.1',      '1.15.2', '1.15.3',
npm warn old lockfile     '1.16.0', '1.16.1', '1.16.2',      '1.16.3', '1.16.4',
npm warn old lockfile     '1.17.0', '1.17.1', '1.18.0',      '1.18.1', '1.18.2',
npm warn old lockfile     '1.19.0', '1.19.1', '2.0.0',       '2.0.1',  '2.0.2',
npm warn old lockfile     '2.0.3',  '2.0.4',  '2.0.5',       '2.1.0',  '2.1.1',
npm warn old lockfile     ... 58 more items
npm warn old lockfile   ],
npm warn old lockfile   distTags: { latest: '3.2.5', next: '4.0.0-alpha.8' },
npm warn old lockfile   defaultTag: 'latest'
npm warn old lockfile }
npm warn old lockfile Could not fetch metadata for prettier@2.2.1-beta-1 prettier: No matching version found for prettier@2.2.1-beta-1.
npm warn old lockfile     at module.exports (/opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js:209:23)
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/pacote/lib/registry.js:131:54)
npm warn old lockfile     at async /opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:734:24 {
npm warn old lockfile   code: 'ETARGET',
npm warn old lockfile   type: 'version',
npm warn old lockfile   wanted: '2.2.1-beta-1',
npm warn old lockfile   versions: [
npm warn old lockfile     '0.0.1',  '0.0.2',  '0.0.3',       '0.0.4',  '0.0.5',
npm warn old lockfile     '0.0.6',  '0.0.7',  '0.0.8',       '0.0.9',  '0.0.10',
npm warn old lockfile     '0.11.0', '0.13.1', '0.14.0',      '0.14.1', '0.15.0',
npm warn old lockfile     '0.16.0', '0.17.0', '0.17.1',      '0.18.0', '0.19.0',
npm warn old lockfile     '0.20.0', '0.21.0', '0.22.0',      '1.0.0',  '1.0.1',
npm warn old lockfile     '1.0.2',  '1.1.0',  '1.2.0',       '1.2.1',  '1.2.2',
npm warn old lockfile     '1.3.0',  '1.3.1',  '1.4.0-beta',  '1.4.0',  '1.4.1',
npm warn old lockfile     '1.4.2',  '1.4.3',  '1.4.4',       '1.5.0',  '1.5.1',
npm warn old lockfile     '1.5.2',  '1.5.3',  '1.6.0-beta2', '1.6.0',  '1.6.1',
npm warn old lockfile     '1.7.0',  '1.7.1',  '1.7.2',       '1.7.3',  '1.7.4',
npm warn old lockfile     '1.8.0',  '1.8.1',  '1.8.2',       '1.9.0',  '1.9.1',
npm warn old lockfile     '1.9.2',  '1.10.0', '1.10.1',      '1.10.2', '1.11.0-rc.1',
npm warn old lockfile     '1.11.0', '1.11.1', '1.12.0',      '1.12.1', '1.13.0',
npm warn old lockfile     '1.13.1', '1.13.2', '1.13.3',      '1.13.4', '1.13.5',
npm warn old lockfile     '1.13.6', '1.13.7', '1.14.0',      '1.14.1', '1.14.2',
npm warn old lockfile     '1.14.3', '1.15.0', '1.15.1',      '1.15.2', '1.15.3',
npm warn old lockfile     '1.16.0', '1.16.1', '1.16.2',      '1.16.3', '1.16.4',
npm warn old lockfile     '1.17.0', '1.17.1', '1.18.0',      '1.18.1', '1.18.2',
npm warn old lockfile     '1.19.0', '1.19.1', '2.0.0',       '2.0.1',  '2.0.2',
npm warn old lockfile     '2.0.3',  '2.0.4',  '2.0.5',       '2.1.0',  '2.1.1',
npm warn old lockfile     ... 58 more items
npm warn old lockfile   ],
npm warn old lockfile   distTags: { latest: '3.2.5', next: '4.0.0-alpha.8' },
npm warn old lockfile   defaultTag: 'latest'
npm warn old lockfile }
npm warn old lockfile Could not fetch metadata for prettier@2.0.5 Error: Integrity checksum failed when using sha512: wanted sha512-5GCgdeevIXwR3cW4Qj5XWC5MO1iSCz8+IPn0mMw6awAt/PBiey8yyO7MhePRsaMqghJAhg6Q3QLYWSnUHWkG6A== but got sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==.
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/pacote/lib/registry.js:164:35)
npm warn old lockfile     at async /opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:734:24 {
npm warn old lockfile   code: 'EINTEGRITY'
npm warn old lockfile }
npm warn old lockfile Could not fetch metadata for puppeteer@3.0.0 Error: Integrity checksum failed when using sha512: wanted sha512-oWjZFGMc0q2ak+8OxdmMffS79LIT0UEtmpV4h1/AARvESIqqKljf8mrfP+dQ2kas7XttsAZIxRBuWu7Y5JH8KQ== but got sha512-ArmIS8w+XhL4KGP05kxMousA9SFxmeirMkNNcVe5LjK4iGCbZ8qKnG4byuXMru7Ty7a9QwiMUIf80X+zmJuf2A==.
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/pacote/lib/registry.js:164:35)
npm warn old lockfile     at async /opt/containerbase/tools/npm/10.7.0/20.12.2/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:734:24 {
npm warn old lockfile   code: 'EINTEGRITY'
npm warn old lockfile }
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: wp-foo-bar@undefined
npm error Found: react@17.0.2
npm error node_modules/react
npm error   dev react@"17.0.2" from the root project
npm error
npm error Could not resolve dependency:
npm error peer react@"^18.0.0" from @wordpress/block-editor@12.25.0
npm error node_modules/@wordpress/block-editor
npm error   dev @wordpress/block-editor@"12.25.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-05-02T20_04_51_853Z-eresolve-report.txt

npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-02T20_04_51_853Z-debug-0.log

@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from abdd364 to 21ba378 Compare August 10, 2023 13:49
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 21ba378 to ecccb47 Compare August 20, 2023 06:03
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from 3ba5d15 to e3e23ab Compare February 13, 2024 13:27
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from e3e23ab to e12cccb Compare February 21, 2024 22:56
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from e12cccb to 34309ae Compare March 6, 2024 16:39
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 34309ae to 8a5dcff Compare March 21, 2024 17:58
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 8a5dcff to 8b2e17e Compare April 3, 2024 06:55
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 8b2e17e to 7cdb06d Compare April 19, 2024 19:20
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 7cdb06d to cdd0eb7 Compare May 2, 2024 20:07
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from cdd0eb7 to ed6498b Compare May 16, 2024 02:45
@renovate

renovate Bot commented May 16, 2024

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will error in a future major version of npm. See `npm help npmrc` for supported config options.
npm warn old lockfile
npm warn old lockfile The package-lock.json file was created with an old version of npm,
npm warn old lockfile so supplemental metadata must be fetched from the registry.
npm warn old lockfile
npm warn old lockfile This is a one-time fix-up, please be patient...
npm warn old lockfile
npm warn old lockfile Could not fetch metadata for prettier@2.2.1-beta-1 prettier: No matching version found for prettier@2.2.1-beta-1.
npm warn old lockfile     at module.exports (/opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js:210:23)
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/pacote/lib/registry.js:130:54)
npm warn old lockfile     at async /opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:935:24 {
npm warn old lockfile   code: 'ETARGET',
npm warn old lockfile   type: 'version',
npm warn old lockfile   wanted: '2.2.1-beta-1',
npm warn old lockfile   versions: [
npm warn old lockfile     '0.0.1',  '0.0.2',  '0.0.3',       '0.0.4',  '0.0.5',
npm warn old lockfile     '0.0.6',  '0.0.7',  '0.0.8',       '0.0.9',  '0.0.10',
npm warn old lockfile     '0.11.0', '0.13.1', '0.14.0',      '0.14.1', '0.15.0',
npm warn old lockfile     '0.16.0', '0.17.0', '0.17.1',      '0.18.0', '0.19.0',
npm warn old lockfile     '0.20.0', '0.21.0', '0.22.0',      '1.0.0',  '1.0.1',
npm warn old lockfile     '1.0.2',  '1.1.0',  '1.2.0',       '1.2.1',  '1.2.2',
npm warn old lockfile     '1.3.0',  '1.3.1',  '1.4.0-beta',  '1.4.0',  '1.4.1',
npm warn old lockfile     '1.4.2',  '1.4.3',  '1.4.4',       '1.5.0',  '1.5.1',
npm warn old lockfile     '1.5.2',  '1.5.3',  '1.6.0-beta2', '1.6.0',  '1.6.1',
npm warn old lockfile     '1.7.0',  '1.7.1',  '1.7.2',       '1.7.3',  '1.7.4',
npm warn old lockfile     '1.8.0',  '1.8.1',  '1.8.2',       '1.9.0',  '1.9.1',
npm warn old lockfile     '1.9.2',  '1.10.0', '1.10.1',      '1.10.2', '1.11.0-rc.1',
npm warn old lockfile     '1.11.0', '1.11.1', '1.12.0',      '1.12.1', '1.13.0',
npm warn old lockfile     '1.13.1', '1.13.2', '1.13.3',      '1.13.4', '1.13.5',
npm warn old lockfile     '1.13.6', '1.13.7', '1.14.0',      '1.14.1', '1.14.2',
npm warn old lockfile     '1.14.3', '1.15.0', '1.15.1',      '1.15.2', '1.15.3',
npm warn old lockfile     '1.16.0', '1.16.1', '1.16.2',      '1.16.3', '1.16.4',
npm warn old lockfile     '1.17.0', '1.17.1', '1.18.0',      '1.18.1', '1.18.2',
npm warn old lockfile     '1.19.0', '1.19.1', '2.0.0',       '2.0.1',  '2.0.2',
npm warn old lockfile     '2.0.3',  '2.0.4',  '2.0.5',       '2.1.0',  '2.1.1',
npm warn old lockfile     ... 95 more items
npm warn old lockfile   ],
npm warn old lockfile   distTags: { next: '4.0.0-alpha.13', latest: '3.9.6' },
npm warn old lockfile   defaultTag: 'latest'
npm warn old lockfile }
npm warn old lockfile Could not fetch metadata for prettier@2.2.1-beta-1 prettier: No matching version found for prettier@2.2.1-beta-1.
npm warn old lockfile     at module.exports (/opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js:210:23)
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/pacote/lib/registry.js:130:54)
npm warn old lockfile     at async /opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:935:24 {
npm warn old lockfile   code: 'ETARGET',
npm warn old lockfile   type: 'version',
npm warn old lockfile   wanted: '2.2.1-beta-1',
npm warn old lockfile   versions: [
npm warn old lockfile     '0.0.1',  '0.0.2',  '0.0.3',       '0.0.4',  '0.0.5',
npm warn old lockfile     '0.0.6',  '0.0.7',  '0.0.8',       '0.0.9',  '0.0.10',
npm warn old lockfile     '0.11.0', '0.13.1', '0.14.0',      '0.14.1', '0.15.0',
npm warn old lockfile     '0.16.0', '0.17.0', '0.17.1',      '0.18.0', '0.19.0',
npm warn old lockfile     '0.20.0', '0.21.0', '0.22.0',      '1.0.0',  '1.0.1',
npm warn old lockfile     '1.0.2',  '1.1.0',  '1.2.0',       '1.2.1',  '1.2.2',
npm warn old lockfile     '1.3.0',  '1.3.1',  '1.4.0-beta',  '1.4.0',  '1.4.1',
npm warn old lockfile     '1.4.2',  '1.4.3',  '1.4.4',       '1.5.0',  '1.5.1',
npm warn old lockfile     '1.5.2',  '1.5.3',  '1.6.0-beta2', '1.6.0',  '1.6.1',
npm warn old lockfile     '1.7.0',  '1.7.1',  '1.7.2',       '1.7.3',  '1.7.4',
npm warn old lockfile     '1.8.0',  '1.8.1',  '1.8.2',       '1.9.0',  '1.9.1',
npm warn old lockfile     '1.9.2',  '1.10.0', '1.10.1',      '1.10.2', '1.11.0-rc.1',
npm warn old lockfile     '1.11.0', '1.11.1', '1.12.0',      '1.12.1', '1.13.0',
npm warn old lockfile     '1.13.1', '1.13.2', '1.13.3',      '1.13.4', '1.13.5',
npm warn old lockfile     '1.13.6', '1.13.7', '1.14.0',      '1.14.1', '1.14.2',
npm warn old lockfile     '1.14.3', '1.15.0', '1.15.1',      '1.15.2', '1.15.3',
npm warn old lockfile     '1.16.0', '1.16.1', '1.16.2',      '1.16.3', '1.16.4',
npm warn old lockfile     '1.17.0', '1.17.1', '1.18.0',      '1.18.1', '1.18.2',
npm warn old lockfile     '1.19.0', '1.19.1', '2.0.0',       '2.0.1',  '2.0.2',
npm warn old lockfile     '2.0.3',  '2.0.4',  '2.0.5',       '2.1.0',  '2.1.1',
npm warn old lockfile     ... 95 more items
npm warn old lockfile   ],
npm warn old lockfile   distTags: { next: '4.0.0-alpha.13', latest: '3.9.6' },
npm warn old lockfile   defaultTag: 'latest'
npm warn old lockfile }
npm warn old lockfile Could not fetch metadata for prettier@2.0.5 Error: Integrity checksum failed when using sha512: wanted sha512-5GCgdeevIXwR3cW4Qj5XWC5MO1iSCz8+IPn0mMw6awAt/PBiey8yyO7MhePRsaMqghJAhg6Q3QLYWSnUHWkG6A== but got sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==.
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/pacote/lib/registry.js:163:35)
npm warn old lockfile     at async /opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:935:24 {
npm warn old lockfile   code: 'EINTEGRITY'
npm warn old lockfile }
npm warn old lockfile Could not fetch metadata for puppeteer@3.0.0 Error: Integrity checksum failed when using sha512: wanted sha512-oWjZFGMc0q2ak+8OxdmMffS79LIT0UEtmpV4h1/AARvESIqqKljf8mrfP+dQ2kas7XttsAZIxRBuWu7Y5JH8KQ== but got sha512-ArmIS8w+XhL4KGP05kxMousA9SFxmeirMkNNcVe5LjK4iGCbZ8qKnG4byuXMru7Ty7a9QwiMUIf80X+zmJuf2A==.
npm warn old lockfile     at RegistryFetcher.manifest (/opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/pacote/lib/registry.js:163:35)
npm warn old lockfile     at async /opt/containerbase/tools/npm/12.0.2/24.20.0/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js:935:24 {
npm warn old lockfile   code: 'EINTEGRITY'
npm warn old lockfile }
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: wp-foo-bar@undefined
npm error Found: react@17.0.2
npm error node_modules/react
npm error   dev react@"17.0.2" from the root project
npm error
npm error Could not resolve dependency:
npm error peer react@"^18 || ^19" from @wordpress/block-editor@17.0.0
npm error node_modules/@wordpress/block-editor
npm error   dev @wordpress/block-editor@"17.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-09-02T22_52_22_191Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-09-02T22_52_22_191Z-debug-0.log

@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from ed6498b to ae9a210 Compare May 31, 2024 20:07
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from ae9a210 to ea48745 Compare June 15, 2024 22:38
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from ea48745 to 1645f6c Compare June 26, 2024 09:27
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 1645f6c to 65de9e5 Compare July 10, 2024 10:18
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 65de9e5 to c0aa5ac Compare July 24, 2024 19:05
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from c0aa5ac to 40547be Compare August 7, 2024 20:03
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 40547be to c500d76 Compare August 21, 2024 17:22
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from c500d76 to 7e9d927 Compare September 5, 2024 08:07
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from a0e27c5 to 55aae5b Compare September 19, 2024 12:48
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 55aae5b to e5b4017 Compare October 3, 2024 16:54
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from a864759 to 25459e0 Compare October 17, 2024 14:30
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from c8e2dd9 to 5a43673 Compare October 30, 2024 16:13
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch 2 times, most recently from 3b961a1 to f22abea Compare November 18, 2024 13:22
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from f22abea to 953337a Compare November 27, 2024 11:44
@renovate
renovate Bot force-pushed the renovate/major-wordpress-monorepo branch from 953337a to 1f8efe3 Compare December 11, 2024 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants