Skip to content
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
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Unreleased
---
* [*] [internal] Upgrade React Native to version 0.71.15 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6522]

1.111.2
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const {
import { NESTED_COLUMNS_3_LEVELS } from './test-editor-data';

const ANDROID_COLUMN_APPENDER_BUTTON_XPATH =
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup/android.view.ViewGroup/android.view.ViewGroup/android.view.ViewGroup/android.view.ViewGroup/android.view.ViewGroup/android.widget.Button';
'//android.widget.Button[@content-desc="Column Block. Row 1"]/android.view.ViewGroup/android.view.ViewGroup/android.widget.Button';

describe( 'Gutenberg Editor - Test Suite 1', () => {
describe( 'Columns block', () => {
Expand Down Expand Up @@ -298,7 +298,7 @@ describe( 'Gutenberg Editor - Test Suite 1', () => {
await clickIfClickable( editorPage.driver, twitterIconXpath );
await editorPage.toggleFormatting( 'Add link to Twitter' );
const uRLFieldXpath = isAndroid()
? '//android.widget.Button[@content-desc="URL. Empty"]/android.view.ViewGroup[1]/android.widget.EditText'
? '//android.widget.Button[@content-desc="URL. Empty"]/android.widget.EditText'
: '//XCUIElementTypeOther[@name="Add URL"]/XCUIElementTypeTextField';
const uRLField = await waitForVisible(
editorPage.driver,
Expand Down Expand Up @@ -347,7 +347,7 @@ describe( 'Gutenberg Editor - Test Suite 1', () => {
await clickIfClickable( editorPage.driver, amazonBlockXPath );

const uRLFieldXpath = isAndroid()
? '//android.widget.Button[@content-desc="URL. Empty"]/android.view.ViewGroup[1]/android.widget.EditText'
? '//android.widget.Button[@content-desc="URL. Empty"]/android.widget.EditText'
: '//XCUIElementTypeOther[@name="Add URL"]/XCUIElementTypeTextField';
const uRLField = await waitForVisible(
editorPage.driver,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ describe( 'Gutenberg Editor - Test Suite 4', () => {
for ( let i = 1; i <= GROUP_NESTED_STRUCTURE_LEVELS; i++ ) {
await editorPage.moveBlockSelectionUp();

await editorPage.driver.pause( 250 );
await editorPage.driver.pause( 500 );

// Visual test check
screenshot = await takeScreenshot();
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 170 files
6 changes: 6 additions & 0 deletions ios-xcframework/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ end
post_install do |installer|
react_native_post_install(installer, REACT_NATIVE_PATH)

# The following workaround is needed to avoid the error `typedef redefinition with different types ('uint8_t' (aka 'unsigned char') vs 'enum clockid_t')`.
# This solution is referenced in https://github.com/facebook/react-native/issues/39568#issuecomment-1762890606.
# It will be needed until RCT-Folly version is bumped in React Native to version v2022.08.29.00 or above.
# Referece: https://github.com/facebook/folly/commit/4a2410fae65afb85e1fec6d922005054b05de59f
__apply_Xcode_12_5_M1_post_install_workaround(installer)
Comment on lines +81 to +85
Copy link
Contributor Author

Choose a reason for hiding this comment

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

More info can be found in the Gutenberg PR: WordPress/gutenberg#57667


installer.pods_project.targets.each do |target|
# Work around issue with embedding the Hermes XCFramework
#
Expand Down
Loading