kettle-family 1.2.47 → 1.2.48

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: c628becd2f2b6b83516a9e8a4eaca11802e8080cb0bbbd38eede2cc609d5ef3f
4
- data.tar.gz: bb7cb06c355256f93d0acceef553ac25b2ccc6a42c2890c3beb094bd2be4a795
3
+ metadata.gz: 93c01e2b68636f1592c6d7db043f4b733a3eb755caabd0d87ae9ffcb9fcd83cc
4
+ data.tar.gz: 04a4d9fe0ab9716ae4ef096d69430f36c6810ded657b550e10f01378cd7c6017
5
5
  SHA512:
6
- metadata.gz: 2e439b1c7f07dff944bf25a14c4827c4ca82645324cd84cce424ebb3cb0070080c647fb8571aa3f4666e1e05d91d4edfc634300eef70c5a990386428fc2bc20b
7
- data.tar.gz: 419731e66a639aa39874168a2defa4a49b18c0cfa0decd07252c464dbddc85838c84169e668cc5897de61374ef6c831e2f163900167c1e06cd46fd247f2b8e7b
6
+ metadata.gz: a099005db334b512abaac80df84c47f1965036fcb0ceea0fdbf14aa57786c34a38b1f2b2ad8df955ae5f14e2b716f4aa669d4556ae7178349179819d301c1262
7
+ data.tar.gz: 55c04739530546e6f8e1775fffaa11729d2c6faf1380b7eedbf16a7407dd321e94fd89956d37ed16d6784a468d15c5bfdcc71c4ff194a603df06571defa4d9cb
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.48] - 2026-08-10
34
+
35
+ - TAG: [v1.2.48][1.2.48t]
36
+ - COVERAGE: 93.55% -- 5164/5520 lines in 33 files
37
+ - BRANCH COVERAGE: 76.09% -- 2069/2719 branches in 33 files
38
+ - 29.86% documented
39
+
40
+ ### Fixed
41
+
42
+ - Let kettle-release own release lockfile normalization to prevent competing Bundler platform rewrites during family releases.
43
+
33
44
  ## [1.2.47] - 2026-08-10
34
45
 
35
46
  - TAG: [v1.2.47][1.2.47t]
@@ -2020,7 +2031,9 @@ Please file a bug if you notice a violation of semantic versioning.
2020
2031
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
2021
2032
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
2022
2033
 
2023
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.47...HEAD
2034
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.48...HEAD
2035
+ [1.2.48]: https://github.com/kettle-dev/kettle-family/compare/v1.2.47...v1.2.48
2036
+ [1.2.48t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.48
2024
2037
  [1.2.47]: https://github.com/kettle-dev/kettle-family/compare/v1.2.46...v1.2.47
2025
2038
  [1.2.47t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.47
2026
2039
  [1.2.46]: https://github.com/kettle-dev/kettle-family/compare/v1.2.45...v1.2.46
data/README.md CHANGED
@@ -850,7 +850,7 @@ Thanks for RTFM. ☺️
850
850
  [📌gitmoji]: https://gitmoji.dev
851
851
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
852
852
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
853
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.515-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
853
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.520-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
854
854
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
855
855
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
856
856
  [📄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.47"
8
+ VERSION = "1.2.48"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -2736,8 +2736,13 @@ module Kettle
2736
2736
 
2737
2737
  def release_phase_total(member = nil)
2738
2738
  total = 3
2739
- total += 2 if config.release_normalize_lockfiles?
2740
- total += 1 if execute && member && normalize_release_lockfiles?(member)
2739
+ if member
2740
+ normalize = normalize_release_lockfiles?(member)
2741
+ total += 2 if normalize
2742
+ total += 1 if execute && normalize
2743
+ elsif config.release_normalize_lockfiles?
2744
+ total += 2
2745
+ end
2741
2746
  total += 1 if tag
2742
2747
  total += 1 if push
2743
2748
  total
@@ -3596,6 +3601,11 @@ module Kettle
3596
3601
  end
3597
3602
 
3598
3603
  def normalize_release_lockfiles?(member)
3604
+ # kettle-release owns its release lockfile reset and runs it before
3605
+ # setup, checks, and publishing. Running the family-level reset too
3606
+ # makes two Bundler processes rewrite the same platform set.
3607
+ return false if kettle_release_command?(raw_release_command)
3608
+
3599
3609
  config.release_normalize_lockfiles? || release_lockfile_has_local_path_remote?(member)
3600
3610
  end
3601
3611
 
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.47
4
+ version: 1.2.48
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -361,10 +361,10 @@ licenses:
361
361
  - AGPL-3.0-only
362
362
  metadata:
363
363
  homepage_uri: https://kettle-family.galtzo.com
364
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.47
365
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.47/CHANGELOG.md
364
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.48
365
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.48/CHANGELOG.md
366
366
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
367
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.47
367
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.48
368
368
  funding_uri: https://github.com/sponsors/pboling
369
369
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
370
370
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file