fastlane-plugin-wpmreleasetoolkit 1.3.1 → 1.4.0
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/android/android_bump_version_hotfix.rb +11 -14
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_hotifx_prechecks.rb +4 -4
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_bump_version_hotfix.rb +30 -15
- data/lib/fastlane/plugin/wpmreleasetoolkit/helper/filesystem_helper.rb +3 -1
- data/lib/fastlane/plugin/wpmreleasetoolkit/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '042749ed354718f17fb9634635f8e3c06a8917d5c69ae3850ea7efd32b8b8725'
|
4
|
+
data.tar.gz: 3682297f8d2420dab3ecd457214f9ac9675efe13c5abb80673eb748ff6d71c49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b3f91303cf1b3deff289a87f64fe92e99b71d7f78526ae4e4645691a1e8d6b224b94a66c557adca1989bc6f454d530750c7bb264ad5c0a7278d8bd963b50cbd
|
7
|
+
data.tar.gz: 91ecfd2fd9ddc7a8fe18823ab23055f708817c3cf9dcfb93e32739b008c737d195ea09035d6f9315eca96cdcc3d3f563da7697e2d086a59ffb0190e35741f9fc
|
@@ -10,17 +10,17 @@ module Fastlane
|
|
10
10
|
app = params[:app]
|
11
11
|
|
12
12
|
current_version = Fastlane::Helper::Android::VersionHelper.get_release_version(product_name: app)
|
13
|
-
|
14
|
-
|
15
|
-
new_short_version = new_version_name
|
16
|
-
new_release_branch = "release/#{new_short_version}"
|
13
|
+
new_version = Fastlane::Helper::Android::VersionHelper.calc_next_hotfix_version(params[:version_name], params[:version_code]) # NOTE: this just puts the name/code values in a tuple, unchanged (no actual calc/bumping)
|
14
|
+
new_release_branch = "release/#{params[:version_name]}"
|
17
15
|
|
18
|
-
|
19
|
-
|
16
|
+
name_key = Fastlane::Helper::Android::VersionHelper::VERSION_NAME
|
17
|
+
code_key = Fastlane::Helper::Android::VersionHelper::VERSION_CODE
|
18
|
+
UI.message("Current version [#{app}]: #{current_version[name_key]} (#{current_version[code_key]})")
|
19
|
+
UI.message("New hotfix version[#{app}]: #{new_version[name_key]} (#{new_version[code_key]})")
|
20
20
|
UI.message("Release branch: #{new_release_branch}")
|
21
21
|
|
22
22
|
UI.message 'Updating app version...'
|
23
|
-
Fastlane::Helper::Android::VersionHelper.update_versions(app, new_version,
|
23
|
+
Fastlane::Helper::Android::VersionHelper.update_versions(app, new_version, nil)
|
24
24
|
UI.message 'Done!'
|
25
25
|
|
26
26
|
Fastlane::Helper::Android::GitHelper.commit_version_bump()
|
@@ -41,25 +41,22 @@ module Fastlane
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def self.available_options
|
44
|
-
# Define all options your action supports.
|
45
|
-
|
46
|
-
# Below a few examples
|
47
44
|
[
|
48
45
|
FastlaneCore::ConfigItem.new(key: :version_name,
|
49
46
|
env_name: 'FL_ANDROID_BUMP_VERSION_HOTFIX_VERSION',
|
50
|
-
description: 'The version
|
47
|
+
description: 'The version name for the hotfix',
|
51
48
|
is_string: true),
|
52
49
|
FastlaneCore::ConfigItem.new(key: :version_code,
|
53
50
|
env_name: 'FL_ANDROID_BUMP_VERSION_HOTFIX_CODE',
|
54
|
-
description: 'The version
|
51
|
+
description: 'The version code for the hotfix'),
|
55
52
|
FastlaneCore::ConfigItem.new(key: :previous_version_name,
|
56
53
|
env_name: 'FL_ANDROID_BUMP_VERSION_HOTFIX_PREVIOUS_VERSION',
|
57
54
|
description: 'The version to branch from',
|
58
|
-
is_string: true),
|
55
|
+
is_string: true),
|
59
56
|
FastlaneCore::ConfigItem.new(key: :app,
|
60
57
|
env_name: 'PROJECT_NAME',
|
61
58
|
description: 'The name of the app to get the release version for',
|
62
|
-
is_string: true),
|
59
|
+
is_string: true),
|
63
60
|
]
|
64
61
|
end
|
65
62
|
|
@@ -14,7 +14,7 @@ module Fastlane
|
|
14
14
|
|
15
15
|
# Confirm
|
16
16
|
message = "Requested Hotfix version: #{new_ver}\n"
|
17
|
-
message << "Branching from: #{prev_ver}\n"
|
17
|
+
message << "Branching from tag: #{prev_ver}\n"
|
18
18
|
|
19
19
|
if params[:skip_confirm]
|
20
20
|
UI.message(message)
|
@@ -50,13 +50,13 @@ module Fastlane
|
|
50
50
|
[
|
51
51
|
FastlaneCore::ConfigItem.new(key: :version_name,
|
52
52
|
env_name: 'FL_ANDROID_HOTFIX_PRECHECKS_VERSION',
|
53
|
-
description: 'The version to
|
53
|
+
description: 'The hotfix version number to create',
|
54
54
|
is_string: true),
|
55
55
|
FastlaneCore::ConfigItem.new(key: :skip_confirm,
|
56
56
|
env_name: 'FL_ANDROID_HOTFIX_PRECHECKS_SKIPCONFIRM',
|
57
57
|
description: 'Skips confirmation',
|
58
|
-
is_string: false, #
|
59
|
-
default_value: false),
|
58
|
+
is_string: false, # Boolean
|
59
|
+
default_value: false),
|
60
60
|
]
|
61
61
|
end
|
62
62
|
|
@@ -9,14 +9,18 @@ module Fastlane
|
|
9
9
|
create_config(params[:previous_version], params[:version])
|
10
10
|
show_config()
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
update_deliverfile = params[:skip_deliver] == false
|
13
|
+
if update_deliverfile
|
14
|
+
UI.message 'Updating Fastlane deliver file...'
|
15
|
+
Fastlane::Helper::Ios::VersionHelper.update_fastlane_deliver(@new_short_version)
|
16
|
+
UI.message 'Done!'
|
17
|
+
end
|
18
|
+
|
15
19
|
UI.message 'Updating XcConfig...'
|
16
20
|
Fastlane::Helper::Ios::VersionHelper.update_xc_configs(@new_version, @new_short_version, @new_version_internal)
|
17
21
|
UI.message 'Done!'
|
18
22
|
|
19
|
-
Fastlane::Helper::Ios::GitHelper.commit_version_bump(include_deliverfile:
|
23
|
+
Fastlane::Helper::Ios::GitHelper.commit_version_bump(include_deliverfile: update_deliverfile, include_metadata: false)
|
20
24
|
|
21
25
|
UI.message 'Done.'
|
22
26
|
end
|
@@ -34,18 +38,29 @@ module Fastlane
|
|
34
38
|
end
|
35
39
|
|
36
40
|
def self.available_options
|
37
|
-
# Define all options your action supports.
|
38
|
-
|
39
|
-
# Below a few examples
|
40
41
|
[
|
41
|
-
FastlaneCore::ConfigItem.new(
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
42
|
+
FastlaneCore::ConfigItem.new(
|
43
|
+
key: :version,
|
44
|
+
env_name: 'FL_IOS_BUMP_VERSION_HOTFIX_VERSION',
|
45
|
+
description: 'The version of the hotfix',
|
46
|
+
is_string: true
|
47
|
+
),
|
48
|
+
FastlaneCore::ConfigItem.new(
|
49
|
+
key: :previous_version,
|
50
|
+
env_name: 'FL_IOS_BUMP_VERSION_HOTFIX_PREVIOUS_VERSION',
|
51
|
+
description: 'The version to branch from',
|
52
|
+
is_string: true
|
53
|
+
),
|
54
|
+
FastlaneCore::ConfigItem.new(
|
55
|
+
key: :skip_deliver,
|
56
|
+
env_name: 'FL_IOS_BUMP_VERSION_HOTFIX_SKIP_DELIVER',
|
57
|
+
description: 'Skips Deliverfile key update',
|
58
|
+
is_string: false, # Boolean parameter
|
59
|
+
optional: true,
|
60
|
+
# Don't skip the Deliverfile by default. At the time of writing, 2 out of 3 consumers
|
61
|
+
# still have a Deliverfile.
|
62
|
+
default_value: false
|
63
|
+
),
|
49
64
|
]
|
50
65
|
end
|
51
66
|
|
@@ -36,7 +36,9 @@ module Fastlane
|
|
36
36
|
while continue
|
37
37
|
child_filenames = dir.children.map! { |x| File.basename(x) }
|
38
38
|
|
39
|
-
|
39
|
+
# The first case is for development – where the `.gemspec` is present in the project root
|
40
|
+
# The second case is for production – where there's no `.gemspec`, but the root dir of the plugin is named `fastlane-plugin-wpmreleasetoolkit-{version}`.
|
41
|
+
if child_filenames.include?('fastlane-plugin-wpmreleasetoolkit.gemspec') || File.basename(dir).start_with?('fastlane-plugin-wpmreleasetoolkit-')
|
40
42
|
continue = false
|
41
43
|
else
|
42
44
|
dir = dir.parent
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-wpmreleasetoolkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lorenzo Mattei
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diffy
|
@@ -318,6 +318,20 @@ dependencies:
|
|
318
318
|
- - "~>"
|
319
319
|
- !ruby/object:Gem::Version
|
320
320
|
version: '4.1'
|
321
|
+
- !ruby/object:Gem::Dependency
|
322
|
+
name: cocoapods
|
323
|
+
requirement: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - "~>"
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '1.10'
|
328
|
+
type: :development
|
329
|
+
prerelease: false
|
330
|
+
version_requirements: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - "~>"
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: '1.10'
|
321
335
|
description:
|
322
336
|
email: lore.mattei@gmail.com
|
323
337
|
executables:
|