fastlane-plugin-apadmi_grout 2.4.0 → 2.6.0

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: 776e97752fbc36aa5a41cf966536b83f2f0106c149554b69a71cd1dd8618f994
4
- data.tar.gz: 79994e13a8ac5e19ebc2c2cc7ef54ee1ce791cfe7314dd5356245fd7baa6eed1
3
+ metadata.gz: 5dc2c373a820abfa36ddda6823d18c1a3fb5f64ea5d471c25d384c6026673f62
4
+ data.tar.gz: 361b22737e6c5070759248ede9bd58fb06489564908ce4a5497b32f826442e3a
5
5
  SHA512:
6
- metadata.gz: 02c9b2f34592546df0671485c2c32955f9f5992e426283cfe26d04cfcf1d85af50428228dfe44e3153229f6b42e52f210cbe85dd5a8d7aa4dfae288e1d29830a
7
- data.tar.gz: 574511769eb9ff5b14740b794572525d285846dbc14eaa44971561e778e7641f98a3e9e0617af55066b172c938c97ab2209be97ce8f673b233aa6978e6ba204d
6
+ metadata.gz: 95d49ccc966a09331eed2121cfc80c2573f356d025fb9cb19dc8d7b8a7edf7a9cb5c0d7fc9dfb6ed2f8302384f83647acf0d9fb440488f4c3da9ff31448cebed
7
+ data.tar.gz: 4351523aa41e3335e3385c009b44c190b4b0434d12260e859f23fbbbdde2cf349c3f8029e24e0951f0937beabcdd9588e8ba4fcb33ab12be8eab245ca9aa4ea5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Fastlane Plugin Changelog
2
2
 
3
+ ## [2.6.0] - 2023-09-20
4
+ * Add option to expand ADO tickets with additional information
5
+ * Add ability to assign users to ADO tickets
6
+
7
+ ## [2.5.0] - 2023-09-20
8
+ * Added more options to the ADO queries for more in granular filtering.
9
+ * Save path to Android mapping file in lane context for easier access
10
+
3
11
  ## [2.4.0] - 2023-09-04
4
12
  * Copy the android mapping files as well as binaries after a build.
5
13
  * Bump core library version dependency
@@ -9,6 +9,10 @@ require_relative "../utils/fastlane_logger"
9
9
  # Be very very careful before making any changes.
10
10
  module Fastlane
11
11
  module Actions
12
+ module SharedValues
13
+ ANDROID_MAPPING_FILE_PATH = :ANDROID_MAPPING_FILE_PATH
14
+ end
15
+
12
16
  # Build an APK or AAB binary
13
17
  class BuildApkOrAabAction < Action
14
18
  def self.run(params)
@@ -62,8 +66,10 @@ module Fastlane
62
66
  if File.exist?(mapping_path)
63
67
  File.rename(mapping_path, new_mapping_path)
64
68
  logger.success("Generated #{mapping_filename} in #{params[:output_directory]}")
69
+ lane_context[SharedValues::ANDROID_MAPPING_FILE_PATH] = new_mapping_path
65
70
  else
66
71
  logger.message("No mapping file found")
72
+ lane_context[SharedValues::ANDROID_MAPPING_FILE_PATH] = nil
67
73
  end
68
74
 
69
75
  new_artifact_path
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module ApadmiGrout
5
- VERSION = "2.4.0"
5
+ VERSION = "2.6.0"
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.4.0
4
+ version: 2.6.0
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-04 00:00:00.000000000 Z
11
+ date: 2023-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apadmi_grout