Skip to content
Closed
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
20 changes: 20 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Unreleased
---

1.82.1
---
* [**] List block v2: Fix issues splitting or merging paragraphs into the block [https://github.com/WordPress/gutenberg/pull/43949]

1.82.0
---
* [*] [iOS] Explicitly set tint color for action sheets to always be blue [https://github.com/WordPress/gutenberg/pull/43759]

1.81.2
---
* [**] List V2 - Prevent error when list is empty [https://github.com/WordPress/gutenberg/pull/43861]

1.81.1
---
* [*] List block v2: Fix text color inconsistencies with list items [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5096]
* [*] Use default placeholder text color for native List Item [https://github.com/WordPress/gutenberg/pull/43353]
* [*] Add BlockListCompact [https://github.com/WordPress/gutenberg/pull/43431]
* [*] Fix dynamic React Native version [https://github.com/WordPress/gutenberg/pull/43058]
* [*] Disable FastImage on Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5102]

1.81.0
---
* [**] List block V2 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5054]
Expand Down
7,354 changes: 3,690 additions & 3,664 deletions bundle/ios/App.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions bundle/ios/App.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 1601 files
5,159 changes: 2,240 additions & 2,919 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gutenberg-mobile",
"version": "1.81.0",
"version": "1.82.1",
"private": true,
"config": {
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",
Expand All @@ -13,7 +13,7 @@
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@react-native-community/cli": "^6.0.0",
"@react-native-community/cli": "8.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@wordpress/babel-preset-default": "file:gutenberg/packages/babel-preset-default",
"@wordpress/eslint-plugin": "file:gutenberg/packages/eslint-plugin",
Expand All @@ -40,7 +40,7 @@
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"metro-react-native-babel-preset": "^0.66.2",
"metro-react-native-babel-preset": "0.69.1",
"node-fetch": "^2.3.0",
"patch-package": "^6.2.2",
"prettier": "npm:[email protected]",
Expand Down
5 changes: 2 additions & 3 deletions src/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,13 @@ describe( 'Gutenberg Mobile initialization', () => {
{ locale: defaultLocale, capabilities },
{ component: EditorComponent }
);
const blockList = screen.getByTestId( 'block-list-wrapper' );
// Inner blocks create BlockLists so let's take into account selecting the main one
const blockList = screen.getAllByTestId( 'block-list-wrapper' )[ 0 ];

expect( blockList ).toBeVisible();
expect( console ).toHaveLoggedWith( 'Hermes is: true' );
setupLocaleLogs.forEach( ( log ) =>
expect( console ).toHaveLoggedWith( ...log )
);
// It's expected that some blocks are upgraded and inform about it (example: "Updated Block: core/cover")
expect( console ).toHaveInformed();
} );
} );