kettle-family 1.2.1 → 1.2.2

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: 32b1ff960e0e144e10aecb3030c729660728827d69923dd054d923f8e58e8022
4
- data.tar.gz: fe44fdcc8270d30c80294ed13464e5289b2182612e9af2d252137d4f08260cb3
3
+ metadata.gz: ddcf479118174c5d73c7e38cb2302228892c6839d03f92470f9c10dd6709ec02
4
+ data.tar.gz: 0ad307c778e0f8d5b717a65fdc4bc9c37c335c9c209a31666b5749dc1405b870
5
5
  SHA512:
6
- metadata.gz: 32b3a41cab5ad9c73ff7ddbea85871fb2ee111db1cc1b2b0af20672b49cd2c29ef0ba8c14e5c1eb9ff07d296f8b3ada17f07236bbca829aa233eed7586396ac5
7
- data.tar.gz: eb3c14717ad2c6715653c9749931b3403cc41740ec0b5cb25f7b359febce2d7652e2cd8f2ad793dcf80d5c24ae5d2c3d0765d21113a1648c8377c5a4ea07305b
6
+ metadata.gz: 3f2342cbfa65d51517bbb7325a743e7b48f40b1c8af410685f61ec0e9e76c747576d8454070835127db94217454372a8ad2c6dbddb48ca21740aab62a6e36290
7
+ data.tar.gz: 289dd394d9566713f7bc6b1718b944344d353c92b2377bfc588b0045453b1ee3f0af693b75129636d2bfd0cee17585afaeaef2076bb20284b5e7e7dac309123e
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,21 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.2.2] - 2026-07-28
34
+
35
+ - TAG: [v1.2.2][1.2.2t]
36
+ - COVERAGE: 93.87% -- 3569/3802 lines in 27 files
37
+ - BRANCH COVERAGE: 76.29% -- 1345/1763 branches in 27 files
38
+ - 28.10% documented
39
+
40
+ ### Fixed
41
+
42
+ - `kettle-family template` now runs the `kettle-jem prepare` phase through the
43
+ same member bundle shape as `kettle-jem install`, so local template-stack
44
+ overrides are honored during preparation.
45
+ - Failed template preparation event streams are now summarized instead of being
46
+ dumped raw into the final text report.
47
+
33
48
  ## [1.2.1] - 2026-07-28
34
49
 
35
50
  - TAG: [v1.2.1][1.2.1t]
@@ -1176,7 +1191,9 @@ Please file a bug if you notice a violation of semantic versioning.
1176
1191
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
1177
1192
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
1178
1193
 
1179
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.1...HEAD
1194
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.2...HEAD
1195
+ [1.2.2]: https://github.com/kettle-dev/kettle-family/compare/v1.2.1...v1.2.2
1196
+ [1.2.2t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.2
1180
1197
  [1.2.1]: https://github.com/kettle-dev/kettle-family/compare/v1.2.0...v1.2.1
1181
1198
  [1.2.1t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.1
1182
1199
  [1.2.0]: https://github.com/kettle-dev/kettle-family/compare/v1.1.9...v1.2.0
data/README.md CHANGED
@@ -813,7 +813,7 @@ Thanks for RTFM. ☺️
813
813
  [📌gitmoji]: https://gitmoji.dev
814
814
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
815
815
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
816
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-3.794-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
816
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-3.802-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
817
817
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
818
818
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
819
819
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -193,7 +193,7 @@ module Kettle
193
193
  end
194
194
 
195
195
  def template_event_stdout?(result)
196
- command == "template" && result.phase == "template" && template_events(result.stdout).any?
196
+ command == "template" && template_events(result.stdout).any?
197
197
  end
198
198
 
199
199
  def release_event_stdout?(result)
@@ -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.1"
8
+ VERSION = "1.2.2"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -1305,11 +1305,24 @@ module Kettle
1305
1305
  end
1306
1306
 
1307
1307
  def template_prepare_command(member)
1308
- command_text = "kettle-jem prepare"
1308
+ command_text = template_prepare_command_from(config.template_command || default_template_command(member))
1309
1309
  command_text = append_template_family_args(command_text)
1310
1310
  append_template_skip_commit(command_text)
1311
1311
  end
1312
1312
 
1313
+ def template_prepare_command_from(command_text)
1314
+ if command_text.is_a?(Array)
1315
+ argv = command_text.map(&:to_s)
1316
+ index = argv.index("install")
1317
+ return argv unless index
1318
+
1319
+ argv[index] = "prepare"
1320
+ argv
1321
+ else
1322
+ command_text.to_s.sub(/\bkettle-jem\s+install\b/, "kettle-jem prepare")
1323
+ end
1324
+ end
1325
+
1313
1326
  def append_template_skip_commit(command_text)
1314
1327
  return command_text if commit
1315
1328
  return command_text if command_text.is_a?(Array) && command_text.include?("--skip-commit")
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.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -341,10 +341,10 @@ licenses:
341
341
  - AGPL-3.0-only
342
342
  metadata:
343
343
  homepage_uri: https://kettle-family.galtzo.com
344
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.1
345
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.1/CHANGELOG.md
344
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.2
345
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.2/CHANGELOG.md
346
346
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
347
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.1
347
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.2
348
348
  funding_uri: https://github.com/sponsors/pboling
349
349
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
350
350
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file