Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://develop.svn.wordpress.org/trunk"
},
"gutenberg": {
"sha": "ea285b45692aed6c4f95353671393402f97f0aa7",
"sha": "b9743a015526ac8fd79298fd4e96cf002cee333b",
"ghcrRepo": "WordPress/gutenberg/gutenberg-wp-develop-build"
},
"engines": {
Expand Down
10 changes: 5 additions & 5 deletions src/wp-includes/assets/script-loader-packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
'wp-url',
'wp-warning'
),
'version' => '3e3993ced88d35b1fafc'
'version' => 'd3cbb2c45b145b27a5cf'
),
'block-library.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -150,7 +150,7 @@
'import' => 'dynamic'
)
),
'version' => '6569ec7523b3693a2b2e'
'version' => '2e80403676c10cc0a473'
),
'block-serialization-default-parser.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -224,7 +224,7 @@
'wp-theme',
'wp-warning'
),
'version' => '7937a1d6ffdc16e88517'
'version' => '9b751f17060211272a5c'
),
'compose.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -452,7 +452,7 @@
'import' => 'static'
)
),
'version' => '51385a88f6721b4a849f'
'version' => '789f35fae26c8d01c548'
),
'edit-widgets.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -543,7 +543,7 @@
'import' => 'static'
)
),
'version' => '6ef3b2a5f3b9e37bb337'
'version' => '4849df258387a9077371'
),
'element.js' => array(
'dependencies' => array(
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/assets/script-modules-packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
'import' => 'static'
)
),
'version' => 'fb8db6c2fefd8246fa86'
'version' => 'e921883a3f8a7b1ead70'
),
'block-library/query/view.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -315,7 +315,7 @@
'wp-private-apis',
'wp-style-engine'
),
'version' => '0e40b71e65fda1397a4b'
'version' => 'f947bd8281443624c0d0'
),
'route/index.js' => array(
'dependencies' => array(
Expand Down
2 changes: 1 addition & 1 deletion src/wp-includes/blocks/cover.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function render_block_core_cover( $attributes, $content ) {
if ( in_the_loop() ) {
update_post_thumbnail_cache();
}
$current_featured_image = get_the_post_thumbnail_url( null, $attributes['sizeSlug'] ?? null );
$current_featured_image = get_the_post_thumbnail_url( null, $attributes['sizeSlug'] ?? 'full' );

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change does not affect the behavior of the cover block. It was necessary to backport it to 7.1 to resolve unit test errors.

See WordPress/gutenberg#81444 (comment) for more details.

if ( ! $current_featured_image ) {
return $content;
}
Expand Down
Loading