fastlane-plugin-apadmi_grout 2.5.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86cfa4fb9bc65be0157bbe76e86c92e12de0a5c5bcee980e7f11b20756e3111c
4
- data.tar.gz: 81fa5a10df528654efce7457c8acf03fdd3e84a0dc7ead79f2cab29cd0798378
3
+ metadata.gz: 8110274f40e2962a9c7b5606cdc60105b4d60ceeb24bf55669eff48356019a19
4
+ data.tar.gz: 6c81966bbee8bd96a3874815f83c4e02df9fc4243ede03d6ff61db5903a24aa6
5
5
  SHA512:
6
- metadata.gz: afdfd6505713801d13585582bd63af68049e442412b5b0038d9ae7ed6283feebd70663efb740d59e89a0ac7af9ef38be965abdc54c46d046a84b66c07c35c67d
7
- data.tar.gz: e0e597f3f312cd4ba5ad8c70bac2d084c71a4d378e61a67f98bac080cef5a9366243bf6b7cb275a909ec2368c556998f00ed9c84292753d398c59d8e8e86ad3f
6
+ metadata.gz: 90418046b878b4c8c175deb16827fce872d1d0c782ccb51a39c913cdbcce5b164c926eadc2817b39937b17f10853740d2418881825efee9168fbce35c7281334
7
+ data.tar.gz: 1d6be7709401d0723d04ffa75f026b4ba7a23a04776677085b55baecd2c4c0752076d2230dced217af727754cdd8a4d59c002dfdeeaada8a3af8169581002342
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Fastlane Plugin Changelog
2
2
 
3
+ ## [2.6.1] - 2024-01-09
4
+ * Fix: missing blank? method because ActiveSupport requires you to load the extensions explicitly from 7.1
5
+ * Fix: Add null check to mapping path before file check
6
+
7
+ ## [2.6.0] - 2023-09-20
8
+ * Add option to expand ADO tickets with additional information
9
+ * Add ability to assign users to ADO tickets
10
+
3
11
  ## [2.5.0] - 2023-09-20
4
12
  * Added more options to the ADO queries for more in granular filtering.
5
13
  * Save path to Android mapping file in lane context for easier access
@@ -63,7 +63,7 @@ module Fastlane
63
63
  ) + ".txt"
64
64
  # rubocop:enable Style/StringConcatenation
65
65
  new_mapping_path = "#{params[:output_directory]}/#{mapping_filename}"
66
- if File.exist?(mapping_path)
66
+ if !mapping_path.nil? && File.exist?(mapping_path)
67
67
  File.rename(mapping_path, new_mapping_path)
68
68
  logger.success("Generated #{mapping_filename} in #{params[:output_directory]}")
69
69
  lane_context[SharedValues::ANDROID_MAPPING_FILE_PATH] = new_mapping_path
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module ApadmiGrout
5
- VERSION = "2.5.0"
5
+ VERSION = "2.6.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-apadmi_grout
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apadmi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-20 00:00:00.000000000 Z
11
+ date: 2024-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apadmi_grout