-
Notifications
You must be signed in to change notification settings - Fork 58
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
Release 1.81.1 #5119
Changes from 15 commits
96ff2c0
d7bfdb3
00178c0
efbf3be
756e8ef
8bf6791
e7a9bbb
998c55b
cc9cb1d
8e37baf
9530978
aa14883
d61f240
cbc0713
8371648
e7829a2
e8157b8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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] | ||
* [*] 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] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. There was a problem hiding this comment. Choose a reason for hiding this commentThe 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] | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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(); | ||
} ); | ||
} ); |
There was a problem hiding this comment.
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).There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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
👍