kettle-dev 2.5.7 → 2.5.8
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +16 -1
- data/README.md +1 -1
- data/exe/kettle-changelog +2 -0
- data/lib/kettle/dev/changelog_cli.rb +10 -2
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a64570e4708ff8533684d3debf4ffd01aa075cbb207b3fe7d628af1253535e0c
|
|
4
|
+
data.tar.gz: 2d259b12a389c915b64cfdbbb13db0c4f1713d34b13223ddfdda38266ff2d952
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4172c5b3643271baac8cbfff5d32a1c0b4a2404359e8685f3fc5bc5e58040d72f53888722cf20ffcb7b806c151984835b8c650d530b2fd8acd9d8d307c9f2075
|
|
7
|
+
data.tar.gz: ba8611aed5d2d310d7e4ab78b1cd9e608b4f925e6068092d52fb620bccff4fa740f577dd3dd4d456ba848811186bdb7e897bcd02e7b739e68d0a6381514b226b
|
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.8] - 2026-07-30
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.5.8][2.5.8t]
|
|
36
|
+
- COVERAGE: 92.10% -- 4733/5139 lines in 44 files
|
|
37
|
+
- BRANCH COVERAGE: 76.48% -- 1785/2334 branches in 44 files
|
|
38
|
+
- 54.41% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- `kettle-changelog` now accepts `K_CHANGELOG_COVERAGE_ROOT` so monorepo release
|
|
43
|
+
flows can collect aggregate coverage from a family bundle without running the
|
|
44
|
+
changelog command from the family root.
|
|
45
|
+
|
|
33
46
|
## [2.5.7] - 2026-07-30
|
|
34
47
|
|
|
35
48
|
- TAG: [v2.5.7][2.5.7t]
|
|
@@ -3018,7 +3031,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
3018
3031
|
- Selecting will run the selected workflow via `act`
|
|
3019
3032
|
- This may move to its own gem in the future.
|
|
3020
3033
|
|
|
3021
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.
|
|
3034
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.8...HEAD
|
|
3035
|
+
[2.5.8]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.7...v2.5.8
|
|
3036
|
+
[2.5.8t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.5.8
|
|
3022
3037
|
[2.5.7]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.6...v2.5.7
|
|
3023
3038
|
[2.5.7t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.5.7
|
|
3024
3039
|
[2.5.6]: https://github.com/kettle-dev/kettle-dev/compare/v2.5.5...v2.5.6
|
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.
|
|
1008
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-5.139-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
|
data/exe/kettle-changelog
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
# kettle-changelog: Generate a CHANGELOG.md entry for the current VERSION.
|
|
7
7
|
# - Reads VERSION from lib/**/version.rb (must be unique across files)
|
|
8
8
|
# - Set K_CHANGELOG_PATH to read/write a changelog outside the current gem root
|
|
9
|
+
# - Set K_CHANGELOG_COVERAGE_ROOT to collect coverage from another bundle root
|
|
9
10
|
# - Set K_CHANGELOG_VERSION_FILE to use a specific version.rb for monorepo roots
|
|
10
11
|
# - Set K_CHANGELOG_GEM_NAME to use a specific gem name for root changelogs
|
|
11
12
|
# - Moves entries from the "Unreleased" section into a new versioned section
|
|
@@ -88,6 +89,7 @@ if ARGV.include?("-h") || ARGV.include?("--help")
|
|
|
88
89
|
K_CHANGELOG_STRICT=false Disable strict mode (equivalent to --no-strict flag)
|
|
89
90
|
K_CHANGELOG_COVERAGE_HARD=false Disable coverage threshold hard-failure
|
|
90
91
|
K_CHANGELOG_PATH=path Read and write this changelog instead of ./CHANGELOG.md
|
|
92
|
+
K_CHANGELOG_COVERAGE_ROOT=path Run/read coverage from this root instead of the gem root
|
|
91
93
|
K_CHANGELOG_VERSION_FILE=path Read VERSION from this file instead of lib/**/version.rb
|
|
92
94
|
K_CHANGELOG_GEM_NAME=name Read live release data as this gem instead of root .gemspec
|
|
93
95
|
KETTLE_GEM_COOP_REFRESH=true Bypass cached gem.coop version data
|
|
@@ -31,7 +31,8 @@ module Kettle
|
|
|
31
31
|
def initialize(strict: true, enforce_coverage_thresholds: true, update_prep: false, version: nil, root: Kettle::Dev::CIHelpers.project_root, refresh_cache: false, yes: false)
|
|
32
32
|
@root = root
|
|
33
33
|
@changelog_path = resolved_changelog_path
|
|
34
|
-
@
|
|
34
|
+
@coverage_root = resolved_coverage_root
|
|
35
|
+
@coverage_path = File.join(@coverage_root, "coverage", "coverage.json")
|
|
35
36
|
@strict = strict
|
|
36
37
|
@enforce_coverage_thresholds = enforce_coverage_thresholds
|
|
37
38
|
@update_prep = update_prep
|
|
@@ -671,7 +672,7 @@ module Kettle
|
|
|
671
672
|
|
|
672
673
|
puts "Generating fresh coverage data by running: bundle exec kettle-test"
|
|
673
674
|
|
|
674
|
-
success = system(changelog_coverage_env, "bundle", "exec", "kettle-test", chdir: @
|
|
675
|
+
success = system(changelog_coverage_env, "bundle", "exec", "kettle-test", chdir: @coverage_root)
|
|
675
676
|
|
|
676
677
|
unless success
|
|
677
678
|
raise "bundle exec kettle-test failed with exit status #{$?.exitstatus || "unknown"}"
|
|
@@ -844,6 +845,13 @@ module Kettle
|
|
|
844
845
|
File.expand_path(path, @root)
|
|
845
846
|
end
|
|
846
847
|
|
|
848
|
+
def resolved_coverage_root
|
|
849
|
+
path = ENV.fetch("K_CHANGELOG_COVERAGE_ROOT", "").to_s.strip
|
|
850
|
+
return @root if path.empty?
|
|
851
|
+
|
|
852
|
+
File.expand_path(path, @root)
|
|
853
|
+
end
|
|
854
|
+
|
|
847
855
|
def prepare_yard_fence_tmp_files
|
|
848
856
|
yardopts = File.join(@root, ".yardopts")
|
|
849
857
|
return unless File.file?(yardopts)
|
data/lib/kettle/dev/version.rb
CHANGED
|
@@ -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.
|
|
8
|
+
VERSION = "2.5.8"
|
|
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.
|
|
4
|
+
version: 2.5.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -397,10 +397,10 @@ licenses:
|
|
|
397
397
|
- AGPL-3.0-only
|
|
398
398
|
metadata:
|
|
399
399
|
homepage_uri: https://kettle-dev.galtzo.com
|
|
400
|
-
source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v2.5.
|
|
401
|
-
changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v2.5.
|
|
400
|
+
source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v2.5.8
|
|
401
|
+
changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v2.5.8/CHANGELOG.md
|
|
402
402
|
bug_tracker_uri: https://github.com/kettle-dev/kettle-dev/issues
|
|
403
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.5.
|
|
403
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.5.8
|
|
404
404
|
funding_uri: https://github.com/sponsors/pboling
|
|
405
405
|
wiki_uri: https://github.com/kettle-dev/kettle-dev/wiki
|
|
406
406
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|