Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include missing attributes when upgrading embed block #33235

Merged
merged 3 commits into from
Jul 8, 2021
Merged
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
4 changes: 4 additions & 0 deletions packages/block-library/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
- Removes the `core/legacy-widget` block. This is now in `@wordpress/widgets`
via `registerLegacyWidgetBlock()`.

## Bug Fixes

- Include missing attributes when upgrading embed block ([#33235](https://github.com/WordPress/gutenberg/pull/33235))

## 3.2.0 (2021-05-24)

### New Features
Expand Down
4 changes: 3 additions & 1 deletion packages/block-library/src/embed/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ export const createUpgradedEmbedBlock = (
props,
attributesFromPreview = {}
) => {
const { preview, attributes: { url, providerNameSlug, type } = {} } = props;
const { preview, attributes = {} } = props;
const { url, providerNameSlug, type, ...restAttributes } = attributes;

if ( ! url || ! getBlockType( DEFAULT_EMBED_BLOCK ) ) return;

Expand All @@ -115,6 +116,7 @@ export const createUpgradedEmbedBlock = (
if ( shouldCreateNewBlock ) {
return createBlock( DEFAULT_EMBED_BLOCK, {
url,
...restAttributes,
...matchedBlock.attributes,
} );
}
Expand Down