kettle-family 0.1.25 → 0.1.26

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: a56514048ce983a5757c83aa5f2b5022cebe2c84b2f584e21631eebe048474ba
4
- data.tar.gz: fc0ab83467cc94d10b71b5eb4ea214ae2002bee6298847d84d8ea9ffc65267a0
3
+ metadata.gz: 19ca7e62279303fb49a70e0f20282369460c9f57209de5a3d76ffe40f06c91d9
4
+ data.tar.gz: c9c0a6f497f51997c83fcf02a83c7878ccf9a0dee5cfd821cf6068f3fddc35c5
5
5
  SHA512:
6
- metadata.gz: 5779061f5b0e9a66323d7c5dae83e8d91b1aa5821c7b9184128e248deec7db7e8aecd69f0570ce4943dac9f2ddee638f4b8286a9412fed05cec277b33cb2e6fd
7
- data.tar.gz: 1667d4b9b1b8fb3018a483c279b74789fc705aa5e1d717350a71851dc5c466202fcb19be04a12dac2a631fbcfa5c3a211000965da8a3f106b78d4b448d9ac456
6
+ metadata.gz: ece5ecc423f749383cd783683a36f5a04d5c4695a7dbd5e21a448b23f36362100be375e533b25fb063fe0fad217015f64e377f9bccb2a64c6318e9b1b8b34cc1
7
+ data.tar.gz: 4a6c0aa7cdf54f3e8ee36819632cb95e3f59b57ab8e1f82b216bab60a4f1dba78d0b6ba4f602940631b8dab008075ab2f5611c70dc21e435b7fa35e4ec49650d
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,18 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [0.1.26] - 2026-06-27
34
+
35
+ - TAG: [v0.1.26][0.1.26t]
36
+ - COVERAGE: 95.08% -- 1836/1931 lines in 21 files
37
+ - BRANCH COVERAGE: 74.47% -- 627/842 branches in 21 files
38
+ - 38.60% documented
39
+
40
+ ### Added
41
+
42
+ - `kettle-family release --skip-steps LIST` now passes `skip_steps=LIST`
43
+ through to `kettle-release` commands for recovery releases.
44
+
33
45
  ## [0.1.25] - 2026-06-27
34
46
 
35
47
  - TAG: [v0.1.25][0.1.25t]
@@ -453,7 +465,9 @@ Please file a bug if you notice a violation of semantic versioning.
453
465
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
454
466
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
455
467
 
456
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v0.1.25...HEAD
468
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v0.1.26...HEAD
469
+ [0.1.26]: https://github.com/kettle-dev/kettle-family/compare/v0.1.25...v0.1.26
470
+ [0.1.26t]: https://github.com/kettle-dev/kettle-family/releases/tag/v0.1.26
457
471
  [0.1.25]: https://github.com/kettle-dev/kettle-family/compare/v0.1.24...v0.1.25
458
472
  [0.1.25t]: https://github.com/kettle-dev/kettle-family/releases/tag/v0.1.25
459
473
  [0.1.24]: https://github.com/kettle-dev/kettle-family/compare/v0.1.23...v0.1.24
data/README.md CHANGED
@@ -571,7 +571,7 @@ Thanks for RTFM. ☺️
571
571
  [📌gitmoji]: https://gitmoji.dev
572
572
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
573
573
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
574
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-1.928-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
574
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-1.931-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
575
575
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
576
576
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
577
577
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -92,6 +92,7 @@ module Kettle
92
92
  --publish Use publish release command instead of build command
93
93
  --build-only Use build release command (default)
94
94
  --start-step N Pass start_step=N through to kettle-release commands
95
+ --skip-steps LIST Pass skip_steps=LIST through to kettle-release commands
95
96
  --local-ci Pass --local-ci through to kettle-release commands
96
97
  --continue-ci-failures
97
98
  Set K_RELEASE_CI_CONTINUE=true for release commands
@@ -126,6 +127,7 @@ module Kettle
126
127
  gha_sha_pins_upgrade: "patch",
127
128
  publish: false,
128
129
  release_start_step: nil,
130
+ release_skip_steps: nil,
129
131
  release_local_ci: false,
130
132
  release_continue_ci_failures: false,
131
133
  accept: true,
@@ -154,6 +156,7 @@ module Kettle
154
156
  parser.on("--publish") { options[:publish] = true }
155
157
  parser.on("--build-only") { options[:publish] = false }
156
158
  parser.on("--start-step N", Integer) { |value| options[:release_start_step] = value }
159
+ parser.on("--skip-steps LIST") { |value| options[:release_skip_steps] = value }
157
160
  parser.on("--local-ci") { options[:release_local_ci] = true }
158
161
  parser.on("--continue-ci-failures") { options[:release_continue_ci_failures] = true }
159
162
  parser.on("--accept") { options[:accept] = true }
@@ -230,6 +233,7 @@ module Kettle
230
233
  push: options[:push],
231
234
  tag: options[:tag],
232
235
  start_step: options[:release_start_step],
236
+ skip_steps: options[:release_skip_steps],
233
237
  local_ci: options[:release_local_ci],
234
238
  continue_ci_failures: options[:release_continue_ci_failures],
235
239
  gha_sha_pins_upgrade: options[:gha_sha_pins_upgrade],
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Family
7
7
  class GitStatus
8
8
  def self.dirty?(root)
9
- stdout, _stderr, status = Open3.capture3("git", "status", "--short", :chdir => root)
9
+ stdout, _stderr, status = Open3.capture3("git", "status", "--short", chdir: root)
10
10
  status.success? && !stdout.empty?
11
11
  end
12
12
  end
@@ -3,7 +3,7 @@
3
3
  module Kettle
4
4
  module Family
5
5
  module Version
6
- VERSION = "0.1.25"
6
+ VERSION = "0.1.26"
7
7
  end
8
8
  VERSION = Version::VERSION # Traditional Constant Location
9
9
  end
@@ -43,7 +43,7 @@ module Kettle
43
43
  "BUNDLE_SUPPRESS_INSTALL_USING_MESSAGES" => "true"
44
44
  }.freeze
45
45
 
46
- def initialize(command:, config:, members:, execute: false, accept: true, commit: true, allow_dirty: false, publish: false, push: false, tag: false, start_step: nil, local_ci: false, continue_ci_failures: false, gha_sha_pins_upgrade: "patch", gha_sha_pins_check: false, env_overrides: {}, debug: false, gem_signing_password: nil, jobs: nil, progress_io: nil)
46
+ def initialize(command:, config:, members:, execute: false, accept: true, commit: true, allow_dirty: false, publish: false, push: false, tag: false, start_step: nil, skip_steps: nil, local_ci: false, continue_ci_failures: false, gha_sha_pins_upgrade: "patch", gha_sha_pins_check: false, env_overrides: {}, debug: false, gem_signing_password: nil, jobs: nil, progress_io: nil)
47
47
  @command = command
48
48
  @config = config
49
49
  @members = members
@@ -55,6 +55,7 @@ module Kettle
55
55
  @push = push
56
56
  @tag = tag
57
57
  @start_step = start_step
58
+ @skip_steps = skip_steps
58
59
  @local_ci = local_ci
59
60
  @continue_ci_failures = continue_ci_failures
60
61
  @gha_sha_pins_upgrade = gha_sha_pins_upgrade
@@ -76,7 +77,7 @@ module Kettle
76
77
 
77
78
  private
78
79
 
79
- attr_reader :command, :config, :members, :execute, :accept, :commit, :allow_dirty, :publish, :push, :tag, :start_step, :local_ci, :continue_ci_failures, :gha_sha_pins_upgrade, :gha_sha_pins_check, :env_overrides, :debug, :jobs, :progress_io
80
+ attr_reader :command, :config, :members, :execute, :accept, :commit, :allow_dirty, :publish, :push, :tag, :start_step, :skip_steps, :local_ci, :continue_ci_failures, :gha_sha_pins_upgrade, :gha_sha_pins_check, :env_overrides, :debug, :jobs, :progress_io
80
81
 
81
82
  def current_branch_results(workflow_members)
82
83
  return check_results(workflow_members) if command == "check"
@@ -223,6 +224,7 @@ module Kettle
223
224
  push: push,
224
225
  tag: tag,
225
226
  start_step: start_step,
227
+ skip_steps: skip_steps,
226
228
  local_ci: local_ci,
227
229
  continue_ci_failures: continue_ci_failures,
228
230
  gha_sha_pins_upgrade: gha_sha_pins_upgrade,
@@ -452,6 +454,7 @@ module Kettle
452
454
  def append_kettle_release_args(command)
453
455
  args = []
454
456
  args << "start_step=#{start_step}" if start_step
457
+ args << "skip_steps=#{skip_steps}" if skip_steps && !skip_steps.to_s.empty?
455
458
  args << "--local-ci" if local_ci
456
459
  return command if args.empty?
457
460
 
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: 0.1.25
4
+ version: 0.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -80,7 +80,7 @@ dependencies:
80
80
  version: '2.2'
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: 2.2.19
83
+ version: 2.2.20
84
84
  type: :development
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
@@ -90,7 +90,7 @@ dependencies:
90
90
  version: '2.2'
91
91
  - - ">="
92
92
  - !ruby/object:Gem::Version
93
- version: 2.2.19
93
+ version: 2.2.20
94
94
  - !ruby/object:Gem::Dependency
95
95
  name: bundler-audit
96
96
  requirement: !ruby/object:Gem::Requirement
@@ -310,10 +310,10 @@ licenses:
310
310
  - AGPL-3.0-only
311
311
  metadata:
312
312
  homepage_uri: https://kettle-family.galtzo.com
313
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v0.1.25
314
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v0.1.25/CHANGELOG.md
313
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v0.1.26
314
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v0.1.26/CHANGELOG.md
315
315
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
316
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/0.1.25
316
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/0.1.26
317
317
  funding_uri: https://github.com/sponsors/pboling
318
318
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
319
319
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file