-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Gutenberg mobile release v1.6.0 #9941
Conversation
We found some issues with the video and the quote blocks so, we've decided over Slack to hold back the release, put the video, quote blocks behind the Notes:
Similar notes on the iOS PR: wordpress-mobile/WordPress-iOS#11786 (comment) |
Here are the links to the issues I found while testing videos:
|
While smoke testing this I encountered an issue with the video block after a failed upload. When I had a failed upload in a post, then left the post, and then reopened it to edit it, the video block is not shown properly. I am unable to "UPDATE" the post after that point, and "REMOVE FAILED UPLOADS" does not seem to work. Steps to reproduce:
Expected behavior: Actual behavior: Selecting "REMOVE FAILED UPLOADS" does not appear to have any effect. This issue is tracked here: #9953 |
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.
LGTM!
We've found a bug on the title reported here wordpress-mobile/gutenberg-mobile#1053, but agreed on slack to merge this anyway, and check for .1 release on Monday.
Error Error
Dangerfileimport {warn, fail, danger} from "danger";
export default async () => {
if (danger.github == null || danger.github.pr == null) {
fail("Not running on a Github PR.");
return;
}
console.log(Object.keys(danger.github));
const githubLabels = danger.github.issue.labels;
// A PR should have at least one label
if (githubLabels.length == 0) {
warn("PR is missing at least one label.");
}
// A PR shouldn't be merged with the 'DO NOT MERGE' label
const doNotMerge = githubLabels.some(label => label.name.includes("DO NOT MERGE"));
if (doNotMerge) {
warn("This PR is tagged with 'DO NOT MERGE'.");
}
// Warn if the PR doesn't have a milestone
const issue = await danger.github.api.issues.get(danger.github.thisPR);
if (issue.data.milestone == null) {
warn("PR is not assigned to a milestone.");
}
// Warn when there is a big PR
if (danger.github.pr.additions + danger.github.pr.deletions > 500) {
warn("PR has more than 500 lines of code changing. Consider splitting into smaller PRs if possible.");
}
};
--- Generated by 🚫 dangerJS |
This PR updates the gutenberg-mobile reference to point to the latest release, v1.6.0.
The reference is currently pointing to the release/1.6.0 branch on https://github.com/wordpress-mobile/gutenberg-mobile. Relevant PR: wordpress-mobile/gutenberg-mobile#1036.
To test:
The block editor should work as normal.
Update release notes:
RELEASE-NOTES.txt
.