kettle-family 1.2.83 → 1.2.84

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: 4597b93884181bec791afb1965da15957f01eec43876c13835191eb9419ff0fe
4
- data.tar.gz: 57e1d3dd4799d826baed78d1fb258ce8fe658eae94d163681b20d1af718b4151
3
+ metadata.gz: 9d60e9fc61486c0ac3adcbbd20df98c09cab7c9758e9eb5caa3a95c4308bb168
4
+ data.tar.gz: 0bb55d3a77da5d9fdf94c73d4295ae8f5a772b8f9a07e5da4108970135b690c2
5
5
  SHA512:
6
- metadata.gz: dabdf35f9aa98339e0443282e1bd5ed26c61ec9ebdb9a71b7238c8b4282cf26b87a54888e0cf853874cb6becf165050e218d6ac11708bcea0306dbf9d97a8ff6
7
- data.tar.gz: 0da1b0a6fb5f9f4391613c7431d4b4e54827e90c137f87df16b06399fbfe009236d4dbbc9bc20bef450930be11dcf78f13f76f18e121b9a658fe1c8596f4e632
6
+ metadata.gz: f868bb0dbf6665ea261cb0011a04b33125c8bf794a51e2b4092359993a6ab5d35fa19ed2d006279f0c1d13694aedd439caf913c3918763d0c03304808a2649cc
7
+ data.tar.gz: 8fe0c820e3b2b2d17c627b0a6fb7d44e28b8f885c4daa1d379fed8b45fac134b9b84e6b9037829bdfb22026d17e0e74b183f3c4067ecc90b57433189ac583fe1
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.84] - 2026-09-05
34
+
35
+ - TAG: [v1.2.84][1.2.84t]
36
+ - COVERAGE: 93.08% -- 5783/6213 lines in 33 files
37
+ - BRANCH COVERAGE: 76.04% -- 2345/3084 branches in 33 files
38
+ - 30.69% documented
39
+
40
+ ### Fixed
41
+
42
+ - Keep changelog tooling out of nomono-only template bootstrap resolution.
43
+
33
44
  ## [1.2.83] - 2026-09-02
34
45
 
35
46
  - TAG: [v1.2.83][1.2.83t]
@@ -2499,7 +2510,9 @@ Please file a bug if you notice a violation of semantic versioning.
2499
2510
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
2500
2511
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
2501
2512
 
2502
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.83...HEAD
2513
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.84...HEAD
2514
+ [1.2.84]: https://github.com/kettle-dev/kettle-family/compare/v1.2.83...v1.2.84
2515
+ [1.2.84t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.84
2503
2516
  [1.2.83]: https://github.com/kettle-dev/kettle-family/compare/v1.2.82...v1.2.83
2504
2517
  [1.2.83t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.83
2505
2518
  [1.2.82]: https://github.com/kettle-dev/kettle-family/compare/v1.2.81...v1.2.82
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-6.212-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1052
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-6.213-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.83"
8
+ VERSION = "1.2.84"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -824,6 +824,9 @@ module Kettle
824
824
 
825
825
  def template_bootstrap_dependency_env(_member)
826
826
  env = template_prepare_env
827
+ # This refresh only activates nomono. Changelog tooling is not needed
828
+ # and can pin a previously released monorepo dependency graph.
829
+ env["KETTLE_DEV_SKIP_CHANGELOG_DEPENDENCY"] = "true"
827
830
  env["K_JEM_TEMPLATING"] = "false"
828
831
  env["BUNDLE_DISABLE_CHECKSUM_VALIDATION"] = "true"
829
832
  env
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.83
4
+ version: 1.2.84
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.83
445
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.83/CHANGELOG.md
444
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.84
445
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.84/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.83
447
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.84
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