-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add editorialized release notes for version 19.2 #17930
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
Conversation
This will also make the addition of a parameter to differentiate between beta and stable builds cleaner.
We'll add another one next, and the line length would have gotten too long
After adding a parameter to the `release-build-wordpress.sh` call, I got a permission denied error. See https://buildkite.com/automattic/wordpress-ios/builds/4907#226a7e18-7592-4e95-9064-2829b4cb7f12/381-383 I guess if the path to a script is the only value in the `command` node, then Buildkite calls it via `sh` (or maybe `$SHELL`), otherwise it runs it as an actual command within its shell, in which case if the script is not executable, it fails.
…fix-beta-builds Allow for discriminating between beta and stable when building releases on Buildkite
Got a conflict in `Gemfile.lock`: ```diff --- a/Gemfile.lock +++ b/Gemfile.lock @@@ -161,12 -159,11 +161,18 @@@ GE xcodeproj (>= 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3) ++<<<<<<< HEAD + fastlane-plugin-appcenter (1.11.0) + fastlane-plugin-sentry (1.8.1) + fastlane-plugin-wpmreleasetoolkit (3.0.0) ++======= + fastlane-plugin-appcenter (1.11.1) + fastlane-plugin-sentry (1.11.0) + fastlane-plugin-wpmreleasetoolkit (2.3.0) ++>>>>>>> origin/release/19.2 activesupport (~> 5) bigdecimal (~> 1.4) + buildkit (~> 1.4) chroma (= 0.2.0) diffy (~> 3.3) git (~> 1.3)``` ``` The reason is that `release/19.2` updated Fastlane, which in turn updated the App Center and Sentry plugins, while this branch updated the release toolkit. I solved the conflict by keeping both sets of updates. I then run `bundle install` to verify the `Gemfile.lock` was functional.
Remove CircleCI
Generated by 🚫 dangerJS |
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.
-
AppStoreStrings.po(t)
changed with editorialized release notes
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.
Ship it! 🟢
* [*] Stats: fix navigation between Stats tab. [#17856] | ||
* [**] Threaded comments: comments can now be moderated via a drop-down menu on each comment. [#17888] | ||
* [*] Stats: Users can now add a new Insights card from the navigation bar. [#17867] | ||
With this latest version of Jetpack, we made some design changes to help make your user experience even better. |
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.
Good job spotting the WordPress
vs Jetpack
typo from the editorial review! 🥇
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.
Thanks 😄
PR with no beta going with it so we can get these changes into
trunk
and out for translation ASAP.The diff also contains the work from #17891, but that touches the CI automation only, not the app's codebase itself.