Skip to content

Commit

Permalink
Merge pull request #4365 from wordpress-mobile/gb/4322-fix-heading-bl…
Browse files Browse the repository at this point in the history
…ock-split-newline

Fix heading block newline on split
  • Loading branch information
hypest committed Dec 20, 2021
2 parents 4b3c95c + 320157a commit ad7fbc6
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
Expand Up @@ -9,6 +9,7 @@ Unreleased
* [*] [Preformatted block] Fix an issue where the background color is not showing up for standard themes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4292]
* [**] Update Gallery Block to default to the new format and auto-convert old galleries to the new format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4315]
* [***] Highlight text - enables color customization for specific text within a Paragraph block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4175]
* [**] Fix empty line appearing when splitting heading blocks on Android 12 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4365]

1.67.0
---
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 85 files
+2 −2 docs/contributors/code/getting-started-with-code-contribution.md
+9 −9 docs/contributors/documentation/README.md
+1 −1 docs/getting-started/devenv/README.md
+2 −2 docs/how-to-guides/block-tutorial/README.md
+2 −2 docs/how-to-guides/block-tutorial/applying-styles-with-stylesheets.md
+2 −2 docs/how-to-guides/block-tutorial/block-controls-toolbar-and-sidebar.md
+5 −5 docs/how-to-guides/block-tutorial/creating-dynamic-blocks.md
+2 −2 docs/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields.md
+4 −4 docs/how-to-guides/block-tutorial/nested-blocks-inner-blocks.md
+3 −3 docs/how-to-guides/block-tutorial/writing-your-first-block-type.md
+2 −2 docs/how-to-guides/internationalization.md
+7 −8 docs/how-to-guides/javascript/versions-and-building.md
+2 −2 docs/how-to-guides/metabox/meta-block-3-add.md
+1 −3 docs/how-to-guides/platform/custom-block-editor/README.md
+382 −0 docs/how-to-guides/plugin-sidebar.md
+0 −15 docs/how-to-guides/sidebar-tutorial/plugin-sidebar-0.md
+0 −59 docs/how-to-guides/sidebar-tutorial/plugin-sidebar-1-up-and-running.md
+0 −99 docs/how-to-guides/sidebar-tutorial/plugin-sidebar-2-styles-and-controls.md
+0 −23 docs/how-to-guides/sidebar-tutorial/plugin-sidebar-3-register-meta.md
+0 −105 docs/how-to-guides/sidebar-tutorial/plugin-sidebar-4-initialize-input.md
+0 −82 docs/how-to-guides/sidebar-tutorial/plugin-sidebar-5-update-meta.md
+2 −32 docs/manifest.json
+2 −2 docs/reference-guides/block-api/block-attributes.md
+6 −20 docs/reference-guides/block-api/block-deprecation.md
+20 −20 docs/reference-guides/block-api/block-edit-save.md
+0 −194 docs/reference-guides/block-api/block-transforms.md
+2 −2 docs/reference-guides/filters/autocomplete-filters.md
+29 −20 docs/reference-guides/filters/block-filters.md
+4 −4 docs/reference-guides/richtext.md
+1 −19 docs/toc.json
+62 −40 lib/block-supports/duotone.php
+0 −19 lib/block-supports/layout.php
+1 −0 lib/blocks.php
+34 −1 lib/compat/wordpress-5.9/class-wp-theme-json-gutenberg.php
+47 −5 lib/compat/wordpress-5.9/get-global-styles-and-settings.php
+26 −0 lib/compat/wordpress-5.9/render-svg-filters.php
+1 −0 lib/load.php
+12 −0 lib/navigation.php
+92 −0 packages/block-editor/src/components/colors-gradients/dropdown.js
+14 −66 packages/block-editor/src/components/colors-gradients/panel-color-gradient-settings.js
+16 −3 packages/block-editor/src/components/colors-gradients/style.scss
+1 −0 packages/block-editor/src/components/index.js
+14 −6 packages/block-editor/src/hooks/border-color.js
+4 −25 packages/block-editor/src/layouts/flex.js
+35 −0 packages/block-library/src/comments-pagination-next/block.json
+44 −0 packages/block-library/src/comments-pagination-next/edit.js
+18 −0 packages/block-library/src/comments-pagination-next/index.js
+62 −0 packages/block-library/src/comments-pagination-next/index.php
+3 −4 packages/block-library/src/comments-pagination-numbers/block.json
+1 −1 packages/block-library/src/comments-pagination/block.json
+11 −8 packages/block-library/src/comments-pagination/edit.js
+3 −2 packages/block-library/src/comments-pagination/style.scss
+2 −2 packages/block-library/src/file/index.php
+3 −1 packages/block-library/src/group/block.json
+2 −1 packages/block-library/src/heading/edit.js
+2 −0 packages/block-library/src/index.js
+1 −2 packages/block-library/src/navigation/block.json
+0 −2 packages/block-library/src/navigation/deprecated.js
+56 −47 packages/block-library/src/navigation/edit/index.js
+19 −13 packages/block-library/src/navigation/edit/navigation-menu-selector.js
+40 −24 packages/block-library/src/navigation/edit/placeholder/index.js
+37 −0 packages/block-library/src/navigation/edit/use-navigation-notice.js
+1 −0 packages/block-library/src/navigation/editor.scss
+15 −5 packages/block-library/src/navigation/index.php
+49 −10 packages/block-library/src/navigation/style.scss
+5 −0 packages/block-library/src/navigation/use-navigation-menu.js
+2 −2 packages/block-library/src/query/edit/query-inspector-controls.js
+0 −3 packages/components/src/color-palette/index.js
+11 −3 packages/components/src/color-palette/style.scss
+0 −1 packages/components/src/custom-gradient-bar/control-points.js
+106 −73 packages/components/src/palette-edit/index.js
+41 −6 packages/e2e-tests/specs/editor/blocks/navigation.test.js
+1 −0 packages/react-native-editor/CHANGELOG.md
+1 −0 test/integration/fixtures/blocks/core__comments-pagination-next.html
+18 −0 test/integration/fixtures/blocks/core__comments-pagination-next.json
+17 −0 test/integration/fixtures/blocks/core__comments-pagination-next.parsed.json
+1 −0 test/integration/fixtures/blocks/core__comments-pagination-next.serialized.html
+0 −1 test/integration/fixtures/blocks/core__navigation__deprecated-1.json
+1 −1 test/integration/fixtures/blocks/core__navigation__deprecated-1.serialized.html
+0 −1 test/integration/fixtures/blocks/core__navigation__deprecated-v4.json
+1 −1 test/integration/fixtures/blocks/core__navigation__deprecated-v4.serialized.html
+0 −1 test/integration/fixtures/blocks/core__navigation__deprecated-v5.json
+1 −1 test/integration/fixtures/blocks/core__navigation__deprecated-v5.serialized.html
+0 −1 test/integration/fixtures/blocks/core__navigation__deprecated.json
+1 −1 test/integration/fixtures/blocks/core__navigation__deprecated.serialized.html

0 comments on commit ad7fbc6

Please sign in to comment.