kettle-dev 3.0.10 → 3.0.11

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: 1e670b2a9da64f848886da0112d47c757607895c073ae8e0063583f9893c05a8
4
- data.tar.gz: 9c395946450a91ee862b55922a1f5bf9bce6208c700098093d7c6050c535488b
3
+ metadata.gz: 8705b505fb67483562906f08b0f5b0364b1ca70b29dd280aa43b8d8253462c9c
4
+ data.tar.gz: b50dcb48986f104a45ca91ede2e689c93b4fba14488a78ab040e2697f74e3800
5
5
  SHA512:
6
- metadata.gz: a9fd3e50a9f6315eec633c43dabd4447f0d2507e6b74ad9b17b3eb03497d4194895c65aa56010098e9a229e01115b4e0d3c1b3beefbaad26c76f4a6862e883c9
7
- data.tar.gz: e493aa3febc35c6840001eca3b7f7ec127784b83c57e42feac1ab791a0aaac272e9094fb4589c18ba5e7e98cafb9d3fc256f059147c06f23f687768cb8191e52
6
+ metadata.gz: 8cc4266eb73a959dee5394c22662632d7da905329221b3ac18d12b5b670eab11b96a6228f39a5280423b3fe8b5f1067c5aa8a0982c3306d3bfef85b39d647488
7
+ data.tar.gz: bc3e6ff554d12422ccdd5c8a3381ca8756020556466afcef1b2fa34a5e54aceba1ba8310348d0dd36927fbd391197b05306a118fb128236518f6828c546c6cbb
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,19 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [3.0.11] - 2026-08-24
34
+
35
+ - TAG: [v3.0.11][3.0.11t]
36
+ - COVERAGE: 91.27% -- 5699/6244 lines in 47 files
37
+ - BRANCH COVERAGE: 76.11% -- 2176/2859 branches in 47 files
38
+ - 51.11% documented
39
+
40
+ ### Fixed
41
+
42
+ - Run release changelog coverage against the registry-backed dependency graph instead of inheriting local templating paths.
43
+
44
+ - Reset dynamic Bundler parent markers before switching a child process to another Gemfile, so release changelog coverage runs the target project specs.
45
+
33
46
  ## [3.0.10] - 2026-08-23
34
47
 
35
48
  - TAG: [v3.0.10][3.0.10t]
@@ -3529,7 +3542,9 @@ Please file a bug if you notice a violation of semantic versioning.
3529
3542
  - Selecting will run the selected workflow via `act`
3530
3543
  - This may move to its own gem in the future.
3531
3544
 
3532
- [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.10...HEAD
3545
+ [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.11...HEAD
3546
+ [3.0.11]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.10...v3.0.11
3547
+ [3.0.11t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v3.0.11
3533
3548
  [3.0.10]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.9...v3.0.10
3534
3549
  [3.0.10t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v3.0.10
3535
3550
  [3.0.9]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.8...v3.0.9
data/README.md CHANGED
@@ -1012,7 +1012,7 @@ Thanks for RTFM. ☺️
1012
1012
  [📌gitmoji]: https://gitmoji.dev
1013
1013
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
1014
1014
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
1015
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-6.240-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1015
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-6.244-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1016
1016
  [🔐security]: https://github.com/kettle-dev/kettle-dev/blob/main/SECURITY.md
1017
1017
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
1018
1018
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -12,6 +12,14 @@ module Kettle
12
12
  BUNDLER_VERSION
13
13
  ].freeze
14
14
 
15
+ # Bundler uses these markers to restore the environment of the parent
16
+ # bundle. They are not inert when a child explicitly selects another
17
+ # Gemfile: Bundler can use BUNDLER_ORIG_BUNDLE_GEMFILE to reselect the
18
+ # parent bundle. Clear the dynamic keys along with RESET_ENV_KEYS.
19
+ RESET_ENV_PREFIXES = %w[
20
+ BUNDLER_ORIG_
21
+ ].freeze
22
+
15
23
  INERT_ENV_KEYS = %w[
16
24
  BUNDLE_DEBUG
17
25
  BUNDLE_QUIET
@@ -22,16 +30,18 @@ module Kettle
22
30
  BUNDLER_DEBUG
23
31
  ].freeze
24
32
 
25
- INERT_ENV_PREFIXES = %w[
26
- BUNDLER_ORIG_
27
- ].freeze
28
-
29
33
  module_function
30
34
 
31
35
  def unbundled_env
32
- RESET_ENV_KEYS.each_with_object({}) do |key, env|
36
+ env = RESET_ENV_KEYS.each_with_object({}) do |key, result|
37
+ result[key] = nil
38
+ end
39
+ ENV.each_key do |key|
40
+ next unless RESET_ENV_PREFIXES.any? { |prefix| key.start_with?(prefix) }
41
+
33
42
  env[key] = nil
34
43
  end
44
+ env
35
45
  end
36
46
 
37
47
  def warn_unexpected_env!(stream: $stderr)
@@ -45,6 +55,7 @@ module Kettle
45
55
  )
46
56
  end
47
57
 
58
+ # rubocop:disable ThreadSafety/ClassInstanceVariable -- warning state is intentionally shared by module functions.
48
59
  def reset_warning_cache!
49
60
  @warned_unexpected_env_keys = {}
50
61
  end
@@ -56,7 +67,7 @@ module Kettle
56
67
  def expected_env_key?(key)
57
68
  RESET_ENV_KEYS.include?(key) ||
58
69
  INERT_ENV_KEYS.include?(key) ||
59
- INERT_ENV_PREFIXES.any? { |prefix| key.start_with?(prefix) }
70
+ RESET_ENV_PREFIXES.any? { |prefix| key.start_with?(prefix) }
60
71
  end
61
72
 
62
73
  def warned_unexpected_env?(keys)
@@ -67,6 +78,7 @@ module Kettle
67
78
  @warned_unexpected_env_keys[signature] = true
68
79
  false
69
80
  end
81
+ # rubocop:enable ThreadSafety/ClassInstanceVariable
70
82
  end
71
83
  end
72
84
  end
@@ -902,7 +902,10 @@ module Kettle
902
902
  escaped_gemfile = Shellwords.escape(gemfile)
903
903
  command = +"env -u BUNDLE_GEMFILE -u BUNDLE_LOCKFILE"
904
904
  if (local_root = release_changelog_local_root)
905
- command << " KETTLE_DEV_DEV=false KETTLE_CHANGELOG_DEV_ROOT=#{Shellwords.escape(local_root)}"
905
+ # Changelog coverage runs before the release lockfile reset. Keep it
906
+ # on the registry-backed release graph instead of reintroducing local
907
+ # sibling paths through the inherited templating switch.
908
+ command << " KETTLE_DEV_DEV=false K_JEM_TEMPLATING=false KETTLE_CHANGELOG_DEV_ROOT=#{Shellwords.escape(local_root)}"
906
909
  end
907
910
  command << " BUNDLE_GEMFILE=#{escaped_gemfile} bundle exec kettle-changelog"
908
911
  command
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "3.0.10"
8
+ VERSION = "3.0.11"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.10
4
+ version: 3.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -400,10 +400,10 @@ licenses:
400
400
  - AGPL-3.0-only
401
401
  metadata:
402
402
  homepage_uri: https://kettle-dev.galtzo.com
403
- source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v3.0.10
404
- changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v3.0.10/CHANGELOG.md
403
+ source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v3.0.11
404
+ changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v3.0.11/CHANGELOG.md
405
405
  bug_tracker_uri: https://github.com/kettle-dev/kettle-dev/issues
406
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/3.0.10
406
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/3.0.11
407
407
  funding_uri: https://github.com/sponsors/pboling
408
408
  wiki_uri: https://github.com/kettle-dev/kettle-dev/wiki
409
409
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file