fastlane-plugin-wpmreleasetoolkit 14.3.0 → 14.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_github_release_action.rb +1 -1
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/extract_release_notes_for_version_action.rb +1 -1
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/promo_screenshots_action.rb +2 -2
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/prototype_build_details_comment_action.rb +1 -1
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/add_development_certificates_to_provisioning_profiles.rb +1 -3
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/add_devices_to_provisioning_profiles.rb +1 -3
- data/lib/fastlane/plugin/wpmreleasetoolkit/helper/ios/ios_strings_file_validation_helper.rb +1 -1
- data/lib/fastlane/plugin/wpmreleasetoolkit/version.rb +1 -1
- metadata +8 -28
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ab881ca2ace19096ebd20f3fd2360b3b1292193de386d1af5d911b2962f5f15
|
|
4
|
+
data.tar.gz: 53f1bdd9b33fd1e77c7f8024aa8c135cf4449d4ccf50ab4a09e4c47e11133d3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7582dc3820b054a40ffb705d8a47468384ce6cbb1bc1ef12b4b21c3989dd275b8ef70251dfbd1721650ea3839566fdc2858434c8b62f76b831ff49c332b76b57
|
|
7
|
+
data.tar.gz: d89204a2d5e4c52dae4ce2cb45e46464ae2cdd8d76b94987303366fffeb6db126301823a19c3128d9f16ccf9a72c24d6007757e84d1f112a88511490b3e168a4
|
|
@@ -18,7 +18,7 @@ module Fastlane
|
|
|
18
18
|
prerelease = params[:prerelease]
|
|
19
19
|
is_draft = params[:is_draft]
|
|
20
20
|
|
|
21
|
-
UI.message("Creating #{
|
|
21
|
+
UI.message("Creating #{'draft ' if is_draft}release #{version} in #{repository}.")
|
|
22
22
|
# Verify assets
|
|
23
23
|
assets.each do |file_path|
|
|
24
24
|
UI.user_error!("Can't find file #{file_path}!") unless File.exist?(file_path)
|
|
@@ -26,7 +26,7 @@ module Fastlane
|
|
|
26
26
|
|
|
27
27
|
def self.extract_notes(release_notes_file_path, version)
|
|
28
28
|
state = :discarding
|
|
29
|
-
File.
|
|
29
|
+
File.foreach(release_notes_file_path) do |line|
|
|
30
30
|
case state
|
|
31
31
|
when :discarding
|
|
32
32
|
state = :evaluating if line.match(/^(\d+\.)?(\d+\.)?(\*|\d+)$/) && (line.strip == version)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require 'fileutils'
|
|
4
4
|
require 'fastlane/action'
|
|
5
|
-
require '
|
|
5
|
+
require 'json'
|
|
6
6
|
require_relative '../../helper/promo_screenshots_helper'
|
|
7
7
|
|
|
8
8
|
module Fastlane
|
|
@@ -187,7 +187,7 @@ module Fastlane
|
|
|
187
187
|
config_entries
|
|
188
188
|
.flat_map do |entry|
|
|
189
189
|
languages.map do |language|
|
|
190
|
-
new_entry = entry
|
|
190
|
+
new_entry = Marshal.load(Marshal.dump(entry)) # trick to do a _deep_ copy (`.dup` would only do shallow one)
|
|
191
191
|
|
|
192
192
|
# Not every output file will have a screenshot, so handle cases where no
|
|
193
193
|
# screenshot file is defined
|
data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/prototype_build_details_comment_action.rb
CHANGED
|
@@ -71,7 +71,7 @@ module Fastlane
|
|
|
71
71
|
|
|
72
72
|
# A small model/struct representing values exposed by Firebase App Distribution for a given release
|
|
73
73
|
#
|
|
74
|
-
FirebaseReleaseInfo = Struct.new(:display_version, :build_version, :testing_url, :os, :bundle_id, :release_id
|
|
74
|
+
FirebaseReleaseInfo = Struct.new(:display_version, :build_version, :testing_url, :os, :bundle_id, :release_id) do
|
|
75
75
|
def self.from_lane_context
|
|
76
76
|
return nil unless defined?(SharedValues::FIREBASE_APP_DISTRO_RELEASE)
|
|
77
77
|
|
|
@@ -15,9 +15,7 @@ module Fastlane
|
|
|
15
15
|
|
|
16
16
|
params[:app_identifier].each do |identifier|
|
|
17
17
|
Spaceship.provisioning_profile.find_by_bundle_id(bundle_id: identifier)
|
|
18
|
-
.
|
|
19
|
-
profile.is_a? Spaceship::Portal::ProvisioningProfile::Development
|
|
20
|
-
end
|
|
18
|
+
.grep(Spaceship::Portal::ProvisioningProfile::Development)
|
|
21
19
|
.tap do |profiles|
|
|
22
20
|
UI.important "Warning: Unable to find any profiles associated with #{identifier}" if profiles.empty?
|
|
23
21
|
end
|
data/lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/add_devices_to_provisioning_profiles.rb
CHANGED
|
@@ -13,9 +13,7 @@ module Fastlane
|
|
|
13
13
|
|
|
14
14
|
params[:app_identifier].each do |identifier|
|
|
15
15
|
Spaceship.provisioning_profile.find_by_bundle_id(bundle_id: identifier)
|
|
16
|
-
.
|
|
17
|
-
profile.is_a? Spaceship::Portal::ProvisioningProfile::Development
|
|
18
|
-
end
|
|
16
|
+
.grep(Spaceship::Portal::ProvisioningProfile::Development)
|
|
19
17
|
.tap do |profiles|
|
|
20
18
|
UI.important "Warning: Unable to find any profiles associated with #{identifier}" if profiles.empty?
|
|
21
19
|
end
|
|
@@ -9,7 +9,7 @@ module Fastlane
|
|
|
9
9
|
# :maybe_block_comment_end, :in_quoted_key,
|
|
10
10
|
# :after_quoted_key_before_eq, :after_quoted_key_and_equal,
|
|
11
11
|
# :in_quoted_value, :after_quoted_value
|
|
12
|
-
State = Struct.new(:context, :buffer, :in_escaped_ctx, :found_key
|
|
12
|
+
State = Struct.new(:context, :buffer, :in_escaped_ctx, :found_key)
|
|
13
13
|
|
|
14
14
|
TRANSITIONS = {
|
|
15
15
|
root: {
|
metadata
CHANGED
|
@@ -1,35 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-wpmreleasetoolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 14.3.
|
|
4
|
+
version: 14.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Automattic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: activesupport
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - ">="
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: 6.1.7.1
|
|
20
|
-
- - "<"
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: '8'
|
|
23
|
-
type: :runtime
|
|
24
|
-
prerelease: false
|
|
25
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
-
requirements:
|
|
27
|
-
- - ">="
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: 6.1.7.1
|
|
30
|
-
- - "<"
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: '8'
|
|
33
13
|
- !ruby/object:Gem::Dependency
|
|
34
14
|
name: buildkit
|
|
35
15
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -261,33 +241,33 @@ dependencies:
|
|
|
261
241
|
- !ruby/object:Gem::Version
|
|
262
242
|
version: '1.31'
|
|
263
243
|
- !ruby/object:Gem::Dependency
|
|
264
|
-
name:
|
|
244
|
+
name: activesupport
|
|
265
245
|
requirement: !ruby/object:Gem::Requirement
|
|
266
246
|
requirements:
|
|
267
247
|
- - "~>"
|
|
268
248
|
- !ruby/object:Gem::Version
|
|
269
|
-
version: '
|
|
249
|
+
version: '8.1'
|
|
270
250
|
type: :development
|
|
271
251
|
prerelease: false
|
|
272
252
|
version_requirements: !ruby/object:Gem::Requirement
|
|
273
253
|
requirements:
|
|
274
254
|
- - "~>"
|
|
275
255
|
- !ruby/object:Gem::Version
|
|
276
|
-
version: '
|
|
256
|
+
version: '8.1'
|
|
277
257
|
- !ruby/object:Gem::Dependency
|
|
278
|
-
name:
|
|
258
|
+
name: bundler
|
|
279
259
|
requirement: !ruby/object:Gem::Requirement
|
|
280
260
|
requirements:
|
|
281
261
|
- - "~>"
|
|
282
262
|
- !ruby/object:Gem::Version
|
|
283
|
-
version: '
|
|
263
|
+
version: '2.0'
|
|
284
264
|
type: :development
|
|
285
265
|
prerelease: false
|
|
286
266
|
version_requirements: !ruby/object:Gem::Requirement
|
|
287
267
|
requirements:
|
|
288
268
|
- - "~>"
|
|
289
269
|
- !ruby/object:Gem::Version
|
|
290
|
-
version: '
|
|
270
|
+
version: '2.0'
|
|
291
271
|
- !ruby/object:Gem::Dependency
|
|
292
272
|
name: fastlane
|
|
293
273
|
requirement: !ruby/object:Gem::Requirement
|