kettle-dev 2.5.21 → 2.5.22

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: 75484cde250c1d87c9c5b85180972c7eb9596874b2d04ec1901d0bf9b60313cc
4
- data.tar.gz: f71c7e5bfcf8411b2545d3a6d0875c323a8f90f6374d8a21a839ecafa6389b5b
3
+ metadata.gz: 7e6a1bce4c78ca5c41546d1a2462d657b84be80e0823174a52f30b5a92f54a3a
4
+ data.tar.gz: 827a02785c64b65637322c9d9c32bf7d6cee54204852dc3a7d06ce030d7cd564
5
5
  SHA512:
6
- metadata.gz: 7418829b37e194a8a248e9ea7a2a4e2e48040d55d0008b0e0f86e939815576b3c6715b364f4f2c686031c644c41a80306e24f46cbc9ced3771ab0de2e60e8f48
7
- data.tar.gz: f6910b5d7315bd82a8cfea7cc07aa581b6cf654b994ad6463d07952bfec95cb427e2ba225fd3fce009ad6083ed7cc133c875c056a5872c15a4664ce0701a1b4e
6
+ metadata.gz: df4f0435dddecc497fefea20034de8125d51893532839d70ff5d1ba1e717576d5909c9a0c6b4b7c51e4cd720519c7524e4c4390a67c011aa91bd82dd0ee3c839
7
+ data.tar.gz: 4b9a904a68bbe3d750feba530dcd5a326427690dc93e20efd9f857659cce2f7cb717e0ae418f52cdfff745acf1c42bf324ee244900dce34c163362a417973ecd
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [2.5.22] - 2026-08-07
34
+
35
+ - TAG: [v2.5.22][2.5.22t]
36
+ - COVERAGE: 91.88% -- 5464/5947 lines in 47 files
37
+ - BRANCH COVERAGE: 76.10% -- 2057/2703 branches in 47 files
38
+ - 50.90% documented
39
+
40
+ ### Fixed
41
+
42
+ - CI monitoring can use an explicit repository root for monorepo release workflows.
43
+
33
44
  ## [2.5.21] - 2026-08-07
34
45
 
35
46
  - TAG: [v2.5.21][2.5.21t]
@@ -3285,7 +3296,9 @@ Please file a bug if you notice a violation of semantic versioning.
3285
3296
  - Selecting will run the selected workflow via `act`
3286
3297
  - This may move to its own gem in the future.
3287
3298
 
3288
- [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.21...HEAD
3299
+ [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.22...HEAD
3300
+ [2.5.22]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.21...v2.5.22
3301
+ [2.5.22t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.5.22
3289
3302
  [2.5.21]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.20...v2.5.21
3290
3303
  [2.5.21t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.5.21
3291
3304
  [2.5.20]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.19...v2.5.20
data/README.md CHANGED
@@ -1007,7 +1007,7 @@ Thanks for RTFM. ☺️
1007
1007
  [📌gitmoji]: https://gitmoji.dev
1008
1008
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
1009
1009
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
1010
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.945-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1010
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.947-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1011
1011
  [🔐security]: https://github.com/kettle-dev/kettle-dev/blob/main/SECURITY.md
1012
1012
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
1013
1013
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -28,6 +28,14 @@ module Kettle
28
28
  dir || Dir.pwd
29
29
  end
30
30
 
31
+ # Return the repository root used by release CI monitoring. Monorepo
32
+ # member releases execute from a subdirectory but monitor workflows
33
+ # stored at the shared repository root.
34
+ # @return [String] absolute CI project root
35
+ def ci_project_root
36
+ ENV.fetch("K_RELEASE_CI_ROOT", project_root)
37
+ end
38
+
31
39
  # Parse the GitHub owner/repo from the configured origin remote.
32
40
  # Supports SSH and HTTPS remote URL forms.
33
41
  # @return [Array(String, String), nil] [owner, repo] or nil when unavailable
@@ -165,7 +165,7 @@ module Kettle
165
165
 
166
166
  # --- Collectors ---
167
167
  def collect_github
168
- root = Kettle::Dev::CIHelpers.project_root
168
+ root = Kettle::Dev::CIHelpers.ci_project_root
169
169
  workflows = Kettle::Dev::CIHelpers.workflows_list(root)
170
170
  gh_remote = preferred_github_remote
171
171
  return unless gh_remote && !workflows.empty?
@@ -223,7 +223,7 @@ module Kettle
223
223
  module_function :collect_github
224
224
 
225
225
  def collect_gitlab
226
- root = Kettle::Dev::CIHelpers.project_root
226
+ root = Kettle::Dev::CIHelpers.ci_project_root
227
227
  gitlab_ci = File.exist?(File.join(root, ".gitlab-ci.yml"))
228
228
  gl_remote = gitlab_remote_candidates.first
229
229
  return unless gitlab_ci && gl_remote
@@ -269,7 +269,7 @@ module Kettle
269
269
  module_function :collect_gitlab
270
270
 
271
271
  def monitor_github_internal!(restart_hint:, workflows: nil, keepalive: nil, event_recorder: nil)
272
- root = Kettle::Dev::CIHelpers.project_root
272
+ root = Kettle::Dev::CIHelpers.ci_project_root
273
273
  workflows = Array(workflows).empty? ? Kettle::Dev::CIHelpers.workflows_list(root) : Array(workflows)
274
274
  gh_remote = preferred_github_remote
275
275
  return false unless gh_remote && !workflows.empty?
@@ -503,7 +503,7 @@ module Kettle
503
503
  module_function :keepalive_interval
504
504
 
505
505
  def monitor_gitlab_internal!(restart_hint:, keepalive: nil, event_recorder: nil)
506
- root = Kettle::Dev::CIHelpers.project_root
506
+ root = Kettle::Dev::CIHelpers.ci_project_root
507
507
  gitlab_ci = File.exist?(File.join(root, ".gitlab-ci.yml"))
508
508
  gl_remote = gitlab_remote_candidates.first
509
509
  return false unless gitlab_ci && gl_remote
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "2.5.21"
8
+ VERSION = "2.5.22"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.21
4
+ version: 2.5.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -402,10 +402,10 @@ licenses:
402
402
  - AGPL-3.0-only
403
403
  metadata:
404
404
  homepage_uri: https://kettle-dev.galtzo.com
405
- source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v2.5.21
406
- changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v2.5.21/CHANGELOG.md
405
+ source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v2.5.22
406
+ changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v2.5.22/CHANGELOG.md
407
407
  bug_tracker_uri: https://github.com/kettle-dev/kettle-dev/issues
408
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.5.21
408
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.5.22
409
409
  funding_uri: https://github.com/sponsors/pboling
410
410
  wiki_uri: https://github.com/kettle-dev/kettle-dev/wiki
411
411
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file