Skip to content

Commit

Permalink
Merge pull request #4146 from wordpress-mobile/fix/embed-block-loadin…
Browse files Browse the repository at this point in the history
…g-glitch

[Embed Block] Fix loading glitch with resolver resolution approach
  • Loading branch information
fluiddot authored Oct 22, 2021
2 parents 7e70349 + b48aaa0 commit ea8e176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Unreleased
---
* [**] Search block - Text and background color support [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4127]
* [*] [Embed Block] Fix loading glitch with resolver resolution approach [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4146]
* [*] Fixed an issue where the Help screens may not respect an iOS device's notch. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4110]

1.64.1
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 49 files
+2 −1 .github/workflows/rnmobile-ios-runner.yml
+15 −0 changelog.txt
+0 −2 docs/contributors/code/release.md
+8 −1 docs/reference-guides/block-api/block-metadata.md
+1 −1 gutenberg.php
+5 −0 lib/block-supports/elements.php
+41 −7 lib/full-site-editing/block-templates.php
+14 −2 lib/full-site-editing/class-gutenberg-rest-templates-controller.php
+7 −0 lib/full-site-editing/class-wp-block-template.php
+7 −5 lib/full-site-editing/page-templates.php
+1 −1 package-lock.json
+1 −1 package.json
+5 −0 packages/block-editor/src/components/block-inspector/index.js
+2 −0 packages/block-editor/src/components/index.js
+4 −0 packages/block-editor/src/components/inspector-controls/groups.js
+0 −36 packages/block-editor/src/components/text-decoration-and-transform/index.js
+0 −3 packages/block-editor/src/components/text-decoration-and-transform/style.scss
+36 −5 packages/block-editor/src/hooks/font-appearance.js
+28 −12 packages/block-editor/src/hooks/font-family.js
+42 −6 packages/block-editor/src/hooks/font-size.js
+33 −6 packages/block-editor/src/hooks/letter-spacing.js
+36 −8 packages/block-editor/src/hooks/line-height.js
+33 −5 packages/block-editor/src/hooks/text-decoration.js
+33 −5 packages/block-editor/src/hooks/text-transform.js
+155 −15 packages/block-editor/src/hooks/typography.js
+12 −0 packages/block-editor/src/hooks/typography.scss
+1 −1 packages/block-editor/src/style.scss
+6 −9 packages/block-library/src/embed/edit.native.js
+0 −19 packages/block-library/src/navigation-link/editor.scss
+7 −3 packages/block-library/src/navigation/style.scss
+5 −1 packages/block-library/src/paragraph/block.json
+7 −2 packages/block-library/src/post-title/index.php
+2 −2 packages/components/src/popover/index.js
+3 −0 packages/create-block/CHANGELOG.md
+1 −0 packages/create-block/README.md
+2 −0 packages/create-block/lib/init-block-json.js
+2 −0 packages/create-block/lib/scaffold.js
+1 −0 packages/create-block/lib/templates.js
+12 −5 packages/dom/src/dom/strip-html.js
+64 −0 packages/dom/src/dom/test/strip-html.js
+0 −15 packages/dom/src/test/dom.js
+2 −0 packages/e2e-test-utils/CHANGELOG.md
+5 −2 packages/e2e-test-utils/README.md
+7 −2 packages/e2e-test-utils/src/auto-accept-page-dialogs.js
+4 −1 packages/e2e-test-utils/src/index.js
+19 −16 packages/e2e-tests/specs/editor/various/font-size-picker.test.js
+5 −3 packages/edit-post/src/components/sidebar/template/index.js
+1 −0 packages/react-native-editor/CHANGELOG.md
+1 −1 readme.txt

0 comments on commit ea8e176

Please sign in to comment.