kettle-dev 2.5.13 → 2.5.14

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: 76cf339458385418bcf752559dbb9c6278f3b95ebfa27b26781591564179f263
4
- data.tar.gz: 66cae3bfb62ecd922bf2b6ecc16049389a860a20dbaa8492fd6578bdcf3b4922
3
+ metadata.gz: fd42849120d31c48755d543918cd96ea2abb0f61d550983853ae6827940099f6
4
+ data.tar.gz: 5bfc7a99f63937031b7999db6d6a35aa9583f7fc3547db425196fb18d3819458
5
5
  SHA512:
6
- metadata.gz: 0ae8aa5d0113e226dab9dbb332b42328bfe738c84ce88a21d919c3a0249d2ad3f70d905aa4cbd76c903608846da8a485a6e68c710934e7eac2443517d71d6a96
7
- data.tar.gz: 4470d0bd47c7c95a616b8513a6b590911a4086e6d6f31330e96c45059774ac4d172a0c98ccf5aad53384208cf40fb02de237c68c6326a430acaf89adfe9a89c2
6
+ metadata.gz: 91ae2809e3092c93f6feaa5b20f4dbc562497917244f95f388ababfe72403f9af76f924314a561c85dc39f8e0f987ed4d19580675612bb01c117fa1e8f1be58e
7
+ data.tar.gz: 0c77a71e021fe4657903384d45ecf8da00c136b78bc0a6cb7531ecc584606bb9fa7abd0ad7a683ea844ee6d3a0be59ecfe388c3cdce1dafbf65989a72b4b6063
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
+ ## [2.5.14] - 2026-07-31
34
+
35
+ - TAG: [v2.5.14][2.5.14t]
36
+ - COVERAGE: 91.94% -- 5146/5597 lines in 46 files
37
+ - BRANCH COVERAGE: 76.13% -- 1946/2556 branches in 46 files
38
+ - 50.41% documented
39
+
40
+ ### Fixed
41
+
42
+ - `kettle-reset release-lockfiles` now requires SHA-256 checksums only for
43
+ registry-sourced gems, allowing valid Git-sourced dependencies such as the
44
+ `simplecov` fork to remain checksumless.
45
+
33
46
  ## [2.5.13] - 2026-07-31
34
47
 
35
48
  - TAG: [v2.5.13][2.5.13t]
@@ -3160,7 +3173,9 @@ Please file a bug if you notice a violation of semantic versioning.
3160
3173
  - Selecting will run the selected workflow via `act`
3161
3174
  - This may move to its own gem in the future.
3162
3175
 
3163
- [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.13...HEAD
3176
+ [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.14...HEAD
3177
+ [2.5.14]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.13...v2.5.14
3178
+ [2.5.14t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.5.14
3164
3179
  [2.5.13]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.12...v2.5.13
3165
3180
  [2.5.13t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.5.13
3166
3181
  [2.5.12]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.11...v2.5.12
data/README.md CHANGED
@@ -1005,7 +1005,7 @@ Thanks for RTFM. ☺️
1005
1005
  [📌gitmoji]: https://gitmoji.dev
1006
1006
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
1007
1007
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
1008
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.595-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1008
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.597-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1009
1009
  [🔐security]: https://github.com/kettle-dev/kettle-dev/blob/main/SECURITY.md
1010
1010
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
1011
1011
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -221,7 +221,7 @@ module Kettle
221
221
  end
222
222
 
223
223
  def empty_registry_checksums(path)
224
- path_gems = path_source_gems(path) | path_dependency_gems(path) | self_path_source_gems(path)
224
+ non_registry_gems = non_registry_source_gems(path) | path_dependency_gems(path)
225
225
  in_checksums = false
226
226
  entries = File.readlines(path).filter_map.with_index(1) do |line, index|
227
227
  stripped = line.strip
@@ -239,7 +239,7 @@ module Kettle
239
239
  name = match[1]
240
240
  checksum = match[3].to_s
241
241
  next unless checksum.empty?
242
- next if path_gems.include?(name)
242
+ next if non_registry_gems.include?(name)
243
243
 
244
244
  [name, match[2], index]
245
245
  end
@@ -282,6 +282,12 @@ module Kettle
282
282
  end
283
283
  end
284
284
 
285
+ def non_registry_source_gems(path)
286
+ lockfile_parser(path).specs.each_with_object(Set.new) do |spec, gems|
287
+ gems << spec.name unless registry_source?(spec.source)
288
+ end
289
+ end
290
+
285
291
  def path_dependency_gems(path)
286
292
  lockfile_parser(path).dependencies.each_value.each_with_object(Set.new) do |dependency, gems|
287
293
  source = dependency.source
@@ -289,12 +295,6 @@ module Kettle
289
295
  end
290
296
  end
291
297
 
292
- def self_path_source_gems(path)
293
- lockfile_parser(path).specs.each_with_object(Set.new) do |spec, gems|
294
- gems << spec.name if self_path_source?(spec.source)
295
- end
296
- end
297
-
298
298
  def display_path(path)
299
299
  Kettle::Dev.display_path(path)
300
300
  end
@@ -332,6 +332,10 @@ module Kettle
332
332
  source.instance_of?(::Bundler::Source::Path)
333
333
  end
334
334
 
335
+ def registry_source?(source)
336
+ source.instance_of?(::Bundler::Source::Rubygems)
337
+ end
338
+
335
339
  def self_path_source?(source)
336
340
  path_source?(source) && source.path.to_s == "."
337
341
  end
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "2.5.13"
8
+ VERSION = "2.5.14"
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: 2.5.13
4
+ version: 2.5.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -401,10 +401,10 @@ licenses:
401
401
  - AGPL-3.0-only
402
402
  metadata:
403
403
  homepage_uri: https://kettle-dev.galtzo.com
404
- source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v2.5.13
405
- changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v2.5.13/CHANGELOG.md
404
+ source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v2.5.14
405
+ changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v2.5.14/CHANGELOG.md
406
406
  bug_tracker_uri: https://github.com/kettle-dev/kettle-dev/issues
407
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.5.13
407
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.5.14
408
408
  funding_uri: https://github.com/sponsors/pboling
409
409
  wiki_uri: https://github.com/kettle-dev/kettle-dev/wiki
410
410
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file