kettle-family 1.2.73 → 1.2.74

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: e1dcea43bfc300c3aefd69feccb2b76b532c32999d0f6ef753a8e60018ec50fe
4
- data.tar.gz: f03a4dd05afd1a36e431808ab9b654f75d2f5147a6705e678539a183530f1695
3
+ metadata.gz: 7be7ab5d418e657e0da7272a46b2725e68ff8042a44875edda3f49b0fa5e53d3
4
+ data.tar.gz: f95c1046814dcec472dd0ef3daf85b471b86c6fde589b9fc8e7fec878aa17159
5
5
  SHA512:
6
- metadata.gz: 9f75f271224c4e5bf6f10259d576f2b0ca3d8e12fea53a249cf21d154b7fca476491ff13dc58f7c98e6f8681bd212d62f7a82861c0f66a61d107968ac0e19568
7
- data.tar.gz: e44c17034b47825c4a9b5ddf7b5769e13bd19cd8d86268752c269e2e15da90138d525c365157f4a4e9e74897b2d8943caecf95c7a1ee3b3418676801391e09ab
6
+ metadata.gz: 2add7602ea8b5ec1b28ad47aa9e83b6cab6592cc79dd8e7dbf8b233eacc0b0639591abc4731c370be387757a898de8c584e1fba8ad129796d81077aeb253ce3f
7
+ data.tar.gz: 8cb1a3425743d37a25a023c9ee68c689da44902dc9076e404fab3a7fd76a1b8b2b7a5c1d4bcc8c51fa32570e34936f4b59d4d125137e9b6c0bc6b78ebcb379d3
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
+ ## [1.2.74] - 2026-08-31
34
+
35
+ - TAG: [v1.2.74][1.2.74t]
36
+ - COVERAGE: 93.32% -- 5548/5945 lines in 33 files
37
+ - BRANCH COVERAGE: 76.73% -- 2279/2970 branches in 33 files
38
+ - 30.50% documented
39
+
40
+ ### Fixed
41
+
42
+ - Merge configured and generated child release skip steps.
43
+
33
44
  ## [1.2.73] - 2026-08-31
34
45
 
35
46
  - TAG: [v1.2.73][1.2.73t]
@@ -2381,7 +2392,9 @@ Please file a bug if you notice a violation of semantic versioning.
2381
2392
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
2382
2393
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
2383
2394
 
2384
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.73...HEAD
2395
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.74...HEAD
2396
+ [1.2.74]: https://github.com/kettle-dev/kettle-family/compare/v1.2.73...v1.2.74
2397
+ [1.2.74t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.74
2385
2398
  [1.2.73]: https://github.com/kettle-dev/kettle-family/compare/v1.2.72...v1.2.73
2386
2399
  [1.2.73t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.73
2387
2400
  [1.2.72]: https://github.com/kettle-dev/kettle-family/compare/v1.2.71...v1.2.72
data/README.md CHANGED
@@ -1049,7 +1049,7 @@ Thanks for RTFM. ☺️
1049
1049
  [📌gitmoji]: https://gitmoji.dev
1050
1050
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
1051
1051
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
1052
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.931-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1052
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.945-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1053
1053
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
1054
1054
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
1055
1055
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "1.2.73"
8
+ VERSION = "1.2.74"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -2302,7 +2302,8 @@ module Kettle
2302
2302
  command = replace_kettle_release_provider(command) if @release_secrets_broker
2303
2303
  args = []
2304
2304
  effective_start_step = release_start_step_for(member)
2305
- effective_skip_steps = release_skip_steps_for(member)
2305
+ command, configured_skip_steps = extract_kettle_release_skip_steps(command)
2306
+ effective_skip_steps = (configured_skip_steps + release_skip_steps_for(member).split(",")).uniq.join(",")
2306
2307
  args << "start_step=#{effective_start_step}" if effective_start_step
2307
2308
  args << "skip_steps=#{effective_skip_steps}" unless effective_skip_steps.empty?
2308
2309
  args << "--skip-changelog" if skip_changelog || aggregate_validation_member?(member)
@@ -2323,6 +2324,27 @@ module Kettle
2323
2324
  command.is_a?(Array) ? [*command, *args] : "#{command} #{args.join(" ")}"
2324
2325
  end
2325
2326
 
2327
+ def extract_kettle_release_skip_steps(command)
2328
+ configured_steps = []
2329
+ case command
2330
+ when Array
2331
+ filtered_command = command.reject do |argument|
2332
+ match = argument.to_s.match(/\A(?:skip_steps|--skip-steps)=(.+)\z/)
2333
+ configured_steps.concat(match[1].split(",")) if match
2334
+ match
2335
+ end
2336
+ [filtered_command, configured_steps.map(&:strip).reject(&:empty?)]
2337
+ when String
2338
+ filtered_command = command.gsub(/(?:\A|\s)(?:skip_steps|--skip-steps)=([^\s]+)/) do
2339
+ configured_steps.concat(Regexp.last_match(1).split(","))
2340
+ ""
2341
+ end
2342
+ [filtered_command.strip, configured_steps.map(&:strip).reject(&:empty?)]
2343
+ else
2344
+ [command, configured_steps]
2345
+ end
2346
+ end
2347
+
2326
2348
  def release_start_step_for(member)
2327
2349
  return start_step unless fast_recovery_for?(member)
2328
2350
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-family
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.73
4
+ version: 1.2.74
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -441,10 +441,10 @@ licenses:
441
441
  - AGPL-3.0-only
442
442
  metadata:
443
443
  homepage_uri: https://kettle-family.galtzo.com
444
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.73
445
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.73/CHANGELOG.md
444
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.74
445
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.74/CHANGELOG.md
446
446
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
447
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.73
447
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.74
448
448
  funding_uri: https://github.com/sponsors/pboling
449
449
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
450
450
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file