Skip to content

Commit 152b474

Browse files
Merge release/25.5 into trunk (#23872)
* Bump version number * Update draft release notes for 25.5. * Update draft release notes for 25.5. * Release Notes: add new section for next version (25.6) * Remove Jetpack-only entries from WordPress 25.5 raw release notes * Update strings for localization * Add beta app description to Testflight builds * Remove trailing commas from beta_app_description_path * Manually bump version number --------- Co-authored-by: Oguz Kocer <[email protected]>
1 parent f66be0f commit 152b474

File tree

9 files changed

+270
-363
lines changed

9 files changed

+270
-363
lines changed

RELEASE-NOTES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
25.6
2+
-----
3+
4+
15
25.6
26
-----
37
* [*] [internal] Update Gravatar SDK to 3.0.0 [#23701]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Thanks for using the Jetpack TestFlight build – please feel free to send us any feedback you might have!
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Three things this month:
2-
1. We've updated the UI for iPadOS 18 – no more tab bar, everything is navigation-based, which should be a better use of the larger screen size.
3-
2. Some iOS 18 improvements – a few color tweaks, some bugfixes, and most importantly – tintable icons!
4-
3. We've been hard at work on an experimental new block editor. It's not ready for full-time use, but we'd love your feedback! Check it out in Me > App Settings > Experimental Features.
5-
If you have feedback on any of these features, we'd love to hear it – reach out to us at [email protected]!
1+
* [***] Use web-based sign-in flow (hidden under a feature flag) [#23675]
2+
* [*] Enable navigating to an individual post's stats from within the "view more" screen for author stats. [#23761]
3+
* [*] [Jetpack-only] Enable pubishing to non-Jetpack sites when sharing content to the Jetpack app. [#23778]
4+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Thanks for using the WordPress TestFlight build – please feel free to send us any feedback you might have!

WordPress/Resources/en.lproj/Localizable.strings

Lines changed: 247 additions & 348 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
Three things this month:
2-
1. We've updated the UI for iPadOS 18 – no more tab bar, everything is navigation-based, which should be a better use of the larger screen size.
3-
2. Some iOS 18 improvements – a few color tweaks, some bugfixes, and most importantly – tintable icons!
4-
3. We've been hard at work on an experimental new block editor. It's not ready for full-time use, but we'd love your feedback! Check it out in Me > App Settings > Experimental Features.
5-
If you have feedback on any of these features, we'd love to hear it – reach out to us at [email protected]!
1+
* [***] Use web-based sign-in flow (hidden under a feature flag) [#23675]
2+
* [*] Enable navigating to an individual post's stats from within the "view more" screen for author stats. [#23761]
3+

config/Version.public.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION_LONG = 25.4.2.0
2-
VERSION_SHORT = 25.4.2
1+
VERSION_LONG = 25.5.0.1
2+
VERSION_SHORT = 25.5

fastlane/Fastfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ DERIVED_DATA_PATH = File.join(PROJECT_ROOT_FOLDER, 'DerivedData')
1818
BUILD_PRODUCTS_PATH = File.join(PROJECT_ROOT_FOLDER, 'Artifacts')
1919
WORDPRESS_RELEASE_NOTES_PATH = File.join(PROJECT_ROOT_FOLDER, 'WordPress', 'Resources', 'release_notes.txt')
2020
JETPACK_RELEASE_NOTES_PATH = File.join(PROJECT_ROOT_FOLDER, 'WordPress', 'Jetpack', 'Resources', 'release_notes.txt')
21+
WORDPRESS_BETA_APP_DESCRIPTION_PATH = File.join(PROJECT_ROOT_FOLDER, 'WordPress', 'Resources', 'beta_app_description.txt')
22+
JETPACK_BETA_APP_DESCRIPTION_PATH = File.join(PROJECT_ROOT_FOLDER, 'WordPress', 'Jetpack', 'Resources', 'beta_app_description.txt')
2123

2224
# Env file paths to load
2325
ENV_FILE_NAME = '.wpios-env.default'

fastlane/lanes/build.rb

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@
183183

184184
upload_build_to_testflight(
185185
whats_new_path: WORDPRESS_RELEASE_NOTES_PATH,
186-
distribution_groups: ['Internal a8c Testers', 'Public Beta Testers']
186+
distribution_groups: ['Internal a8c Testers', 'Public Beta Testers'],
187+
beta_app_description_path: WORDPRESS_BETA_APP_DESCRIPTION_PATH
187188
)
188189

189190
sentry_upload_dsym(
@@ -248,7 +249,8 @@
248249

249250
upload_build_to_testflight(
250251
whats_new_path: JETPACK_RELEASE_NOTES_PATH,
251-
distribution_groups: ['Beta Testers']
252+
distribution_groups: ['Beta Testers'],
253+
beta_app_description_path: JETPACK_BETA_APP_DESCRIPTION_PATH
252254
)
253255

254256
sentry_upload_dsym(
@@ -462,10 +464,11 @@ def buildkite_ci?
462464
ENV.fetch('BUILDKITE', false)
463465
end
464466

465-
def upload_build_to_testflight(whats_new_path:, distribution_groups:)
467+
def upload_build_to_testflight(whats_new_path:, distribution_groups:, beta_app_description_path:)
466468
upload_to_testflight(
467469
team_id: get_required_env('FASTLANE_ITC_TEAM_ID'),
468470
api_key_path: APP_STORE_CONNECT_KEY_PATH,
471+
beta_app_description: File.read(beta_app_description_path),
469472
changelog: File.read(whats_new_path),
470473
distribute_external: true,
471474
groups: distribution_groups,

0 commit comments

Comments
 (0)