Skip to content
3 changes: 2 additions & 1 deletion RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Unreleased
---
* [**] Add media inserter buttons to editor toolbar [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5900]
* [**] Update native BlockOutline component styles to remove blue border from blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5833]

1.99.0
---
* [*] Rename "Reusable blocks" to "Synced patterns", aligning with the web editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5885]
* [**] Fix a crash related to Reanimated when closing the editor [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5938]
* [**] Add media inserter buttons to editor toolbar [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5900]

1.98.1
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ describe( 'Gutenberg Editor - Test Suite 1', () => {
blockNames.columns
);
await columnsBlock.click();

// Navigate upwards in block hierarchy
await editorPage.moveBlockSelectionUp( { toRoot: true } );
await editorPage.removeBlock();
} );

Expand All @@ -64,7 +67,7 @@ describe( 'Gutenberg Editor - Test Suite 1', () => {
.elementByAccessibilityId( 'Column Block. Row 1' )
.click();
const appenderButton = await editorPage.waitForElementToBeDisplayedByXPath(
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup[2]/android.view.ViewGroup/android.widget.Button/android.view.ViewGroup/android.view.ViewGroup'
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup[1]/android.view.ViewGroup/android.widget.Button/android.view.ViewGroup/android.view.ViewGroup'
);
await appenderButton.click();
} else {
Expand Down Expand Up @@ -121,7 +124,7 @@ describe( 'Gutenberg Editor - Test Suite 1', () => {
.elementByAccessibilityId( 'Column Block. Row 1' )
.click();
const appenderButton = await editorPage.waitForElementToBeDisplayedByXPath(
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup[2]/android.view.ViewGroup/android.widget.Button/android.view.ViewGroup/android.view.ViewGroup'
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup[1]/android.view.ViewGroup/android.widget.Button/android.view.ViewGroup/android.view.ViewGroup'
);
await appenderButton.click();
} else {
Expand Down Expand Up @@ -191,7 +194,7 @@ describe( 'Gutenberg Editor - Test Suite 1', () => {
.elementByAccessibilityId( 'Column Block. Row 1' )
.click();
const appenderButton = await editorPage.waitForElementToBeDisplayedByXPath(
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup[2]/android.view.ViewGroup/android.widget.Button/android.view.ViewGroup/android.view.ViewGroup'
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup[1]/android.view.ViewGroup/android.widget.Button/android.view.ViewGroup/android.view.ViewGroup'
);
await appenderButton.click();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,11 @@ describe( 'Gutenberg Editor - Test Suite 4', () => {
const screenshot = await takeScreenshot();
expect( screenshot ).toMatchImageSnapshot();

await firstButtonTextInput.click();
const buttonsBlock = await editorPage.getBlockAtPosition(
blockNames.buttons
);
buttonsBlock.click();

// Navigate upwards to select parent block
await editorPage.moveBlockSelectionUp();

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 63 files
+1 −1 .github/workflows/unit-test.yml
+1 −1 .gitignore
+2 −2 docs/contributors/code/react-native/getting-started-react-native.md
+1 −1 docs/contributors/code/react-native/osx-setup-guide.md
+1 −1 docs/contributors/code/testing-overview.md
+10 −1 lib/compat/wordpress-6.3/class-gutenberg-navigation-fallback.php
+1 −1 lib/compat/wordpress-6.3/theme-previews.php
+6 −0 package.json
+26 −9 packages/block-editor/src/components/block-edit/edit.js
+1 −1 packages/block-editor/src/components/block-edit/test/edit.js
+0 −58 packages/block-editor/src/components/block-list/block-outline.native.js
+1 −10 packages/block-editor/src/components/block-list/block.native.js
+0 −49 packages/block-editor/src/components/block-list/block.native.scss
+3 −3 packages/block-editor/src/components/block-list/style.native.scss
+2 −2 packages/block-editor/src/components/list-view/use-list-view-client-ids.js
+3 −6 packages/block-editor/src/store/private-selectors.js
+5 −5 packages/block-editor/src/store/test/private-selectors.js
+11 −2 packages/block-editor/src/utils/object.js
+36 −0 packages/block-editor/src/utils/test/object.js
+4 −10 packages/block-library/src/column/edit.native.js
+0 −4 packages/block-library/src/column/editor.native.scss
+5 −2 packages/block-library/src/comment-template/index.php
+4 −2 packages/block-library/src/post-template/index.php
+16 −0 packages/core-data/src/actions.js
+2 −0 packages/core-data/src/utils/set-nested-value.js
+1 −1 packages/e2e-test-utils-playwright/src/admin/visit-admin-page.ts
+1 −1 packages/e2e-test-utils/src/create-reusable-block.js
+1 −1 packages/e2e-tests/specs/editor/various/reusable-blocks.test.js
+3 −2 packages/edit-post/src/components/header/header-toolbar/index.js
+1 −17 packages/edit-post/src/components/visual-editor/header.native.js
+0 −18 packages/edit-post/src/components/visual-editor/style.native.scss
+32 −8 packages/edit-post/src/plugins/index.js
+5 −1 packages/edit-site/src/components/block-editor/constants.js
+1 −1 packages/edit-site/src/components/block-editor/editor-canvas.js
+14 −0 packages/edit-site/src/components/canvas-spinner/style.scss
+5 −2 packages/edit-site/src/components/create-pattern-modal/index.js
+11 −7 packages/edit-site/src/components/header-edit-mode/index.js
+0 −5 packages/edit-site/src/components/page-content-focus-manager/constants.js
+12 −3 packages/edit-site/src/components/page-content-focus-manager/disable-non-page-content-blocks.js
+196 −0 packages/edit-site/src/components/page-patterns/duplicate-menu-item.js
+99 −57 packages/edit-site/src/components/page-patterns/grid-item.js
+115 −0 packages/edit-site/src/components/page-patterns/rename-menu-item.js
+4 −0 packages/edit-site/src/components/page-patterns/style.scss
+4 −8 packages/edit-site/src/components/page-patterns/use-patterns.js
+7 −5 packages/edit-site/src/components/sidebar-edit-mode/page-panels/page-content.js
+44 −40 packages/edit-site/src/components/sidebar-navigation-screen-main/index.js
+36 −0 packages/edit-site/src/components/sidebar-navigation-screen-main/template-part-hint.js
+15 −5 packages/edit-site/src/components/sidebar-navigation-screen-navigation-menu/use-navigation-menu-handlers.js
+84 −74 packages/edit-site/src/components/sidebar-navigation-screen-patterns/index.js
+26 −1 packages/edit-site/src/components/sidebar-navigation-screen-patterns/style.scss
+31 −9 packages/edit-site/src/components/sidebar-navigation-screen-patterns/use-template-part-areas.js
+14 −0 packages/edit-site/src/components/sidebar-navigation-screen/style.scss
+9 −4 packages/edit-site/src/components/template-actions/rename-menu-item.js
+55 −4 packages/edit-site/src/hooks/push-changes-to-global-styles/index.js
+5 −5 packages/editor/src/components/post-title/style.native.scss
+2 −1 packages/react-native-editor/CHANGELOG.md
+3 −3 packages/react-native-editor/__device-tests__/[email protected]
+0 −6 packages/react-native-editor/package.json
+13 −3 packages/reusable-blocks/src/components/reusable-blocks-menu-items/reusable-block-convert-button.js
+35 −24 packages/reusable-blocks/src/components/reusable-blocks-menu-items/reusable-blocks-manage-button.js
+1 −1 phpcs.xml.dist
+18 −1 phpunit/class-gutenberg-navigation-fallback-gutenberg-test.php
+30 −17 test/native/jest.config.js