fastlane-plugin-apadmi_grout 2.8.0 → 2.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9397da8fe04e38df3b4ff721527bac589bd938ad59557d6ece613f62c189a683
4
- data.tar.gz: 139364021cba351f0aa6d4d716e01d5e89d8f69b72820d93dc532e12aa553bd9
3
+ metadata.gz: '080aea62fc2cdba28b3ecf32db1508cd9d3cced2514e905c6dc0247154401596'
4
+ data.tar.gz: 5e0e38669931c4c48b1e8fc106fc7372cc5c38f0bf613fe80dc1d82a91fbdec6
5
5
  SHA512:
6
- metadata.gz: e6d7711a8fb05950cb5b2702d01331c987c08029e1ee5103edb389486644bac836e0a3603ad5f007a52f34326bdf78aeb2efc75705629dcb5484353a1ea1a2e0
7
- data.tar.gz: 5eca2e4b596e2e255ff40564b0f8eed8bd24062a1ced55305585bc7fffd16681615b50f26770b20a796ef6a6cdac3efe1960d0ca75dad0cae609de62bcabdba8
6
+ metadata.gz: 65aac4b75889df7e54adbf6177ea1ba01093e3cc4dc61a99625425f622577bb074e9c8c9419d62b4d5db7ed9f8f72c2f3ee45a4f6e2be9775b80d0ccf08b583c
7
+ data.tar.gz: 8efb241fd39a726c10d2f8d3ea40ee26a2a928fcc6da7b8adfc8d222c26b5a7a82d9049f14fd0d260d3453b8d10a9910c8d526761945030b1a94a2ee1b61143d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Fastlane Plugin Changelog
2
2
 
3
+ ## [2.10.0] - 2025-09-11
4
+ * Bump library version
5
+
6
+ ## [2.9.0] - 2025-05-28
7
+ * Add git util for getting the last tag of a given pattern which is on an ancestor commit of HEAD
8
+
3
9
  ## [2.8.0] - 2025-05-22
4
10
  * Add ability to disable use of the undocumented JIRA apis
5
11
 
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "fastlane/action"
4
+ require "apadmi_grout"
5
+
6
+ module Fastlane
7
+ module Actions
8
+ # Get the most recent git tag which is on an ancestor commit of HEAD
9
+ class LastAncestorGitTagAction < Action
10
+ def self.run(params)
11
+ Apadmi::Grout::GitUtils.last_ancestor_tag_hash(params[:pattern])
12
+ end
13
+
14
+ def self.authors
15
+ ["samdc@apadmi.com"]
16
+ end
17
+
18
+ def self.description
19
+ "Get the most recent git tag which is on an ancestor commit of HEAD"
20
+ end
21
+
22
+ def self.details
23
+ "Designed to mimic https://docs.fastlane.tools/actions/last_git_tag/ except only include tags that are on ancestor commits"
24
+ end
25
+
26
+ def self.available_options
27
+ [
28
+ FastlaneCore::ConfigItem.new(key: :pattern,
29
+ description: %(Pattern to filter tags when looking for last one. Limit tags to ones
30
+ matching given shell glob. If pattern lacks ?, *, or [, * at
31
+ the end is implied),
32
+ default_value: nil,
33
+ optional: true)
34
+ ]
35
+ end
36
+
37
+ def self.is_supported?(_platform)
38
+ true
39
+ end
40
+ end
41
+ end
42
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module ApadmiGrout
5
- VERSION = "2.8.0"
5
+ VERSION = "2.10.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.8.0
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apadmi
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-22 00:00:00.000000000 Z
11
+ date: 2025-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apadmi_grout
@@ -150,7 +150,7 @@ dependencies:
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
- description:
153
+ description:
154
154
  email:
155
155
  - samdc@apadmi.com
156
156
  executables: []
@@ -166,6 +166,7 @@ files:
166
166
  - lib/fastlane/plugin/apadmi_grout/actions/find_tickets_to_move_action.rb
167
167
  - lib/fastlane/plugin/apadmi_grout/actions/generate_release_notes_action.rb
168
168
  - lib/fastlane/plugin/apadmi_grout/actions/get_deployment_target_action.rb
169
+ - lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb
169
170
  - lib/fastlane/plugin/apadmi_grout/actions/move_tickets_action.rb
170
171
  - lib/fastlane/plugin/apadmi_grout/utils/common_options.rb
171
172
  - lib/fastlane/plugin/apadmi_grout/utils/di_wrapper.rb
@@ -175,7 +176,7 @@ homepage: https://bitbucket.org/apadmi/apadmi-grout-ruby/
175
176
  licenses:
176
177
  - MIT
177
178
  metadata: {}
178
- post_install_message:
179
+ post_install_message:
179
180
  rdoc_options: []
180
181
  require_paths:
181
182
  - lib
@@ -190,8 +191,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
191
  - !ruby/object:Gem::Version
191
192
  version: '0'
192
193
  requirements: []
193
- rubygems_version: 3.2.3
194
- signing_key:
194
+ rubygems_version: 3.5.22
195
+ signing_key:
195
196
  specification_version: 4
196
197
  summary: A fastlane wrapper for the apadmi build tools plugin
197
198
  test_files: []