Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.81.1 #5119

Merged
merged 17 commits into from
Aug 26, 2022
8 changes: 8 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Unreleased
---

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]
Copy link
Contributor

Choose a reason for hiding this comment

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

Nitpick: I noticed that this entry in the React Native editor's changelog has two ** (reference).

Copy link
Contributor

Choose a reason for hiding this comment

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

Since the release tag was already created, I'd update this in a different PR.

Copy link
Contributor

Choose a reason for hiding this comment

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

Oops! 😅 I'll update it once I start merging back to trunk 👍

* [*] 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]
Copy link
Contributor

Choose a reason for hiding this comment

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

Nitpick: I noticed that this entry in the React Native editor's changelog has two ** (reference).

Copy link
Contributor

Choose a reason for hiding this comment

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

Since the release tag was already created, I'd update this in a different PR.

Copy link
Contributor

Choose a reason for hiding this comment

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

I'll update it, thanks for catching that!


1.81.0
---
* [**] List block V2 [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5054]
Expand Down
4,832 changes: 2,421 additions & 2,411 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 583 files
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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.81.1",
"private": true,
"config": {
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",
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];
Copy link
Contributor

Choose a reason for hiding this comment

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

These changes were already introduced in the Gutenberg repo.


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();
} );
} );