kettle-dev 2.3.9 → 2.3.10
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 +30 -1
- data/README.md +3 -1
- data/exe/kettle-gha-sha-pins +5 -31
- data/lib/kettle/dev/gha_sha_pins_cli.rb +12 -1357
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +27 -7
- 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: 043a73e1a2fb35f02748261dc4d5f81865e233a982c10b73d6b957ef7a7ce66d
|
|
4
|
+
data.tar.gz: 4695065e3a9a9ce34f586fb4baeb76064b59048914a7c12e5e1590435dfe5862
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 555075c8b24c72b0a3ae955d790d0af6b97f265a5fcd00dd3aad16bf3c46ca315081b64d6a39553039e70c438774553826eb7e2a7ecc358e441fa1a066cadeb1
|
|
7
|
+
data.tar.gz: 896b19afe31b86aaed964605cf63767ec1d8bc4d8c214e1599835781c2f86919d1510d1601a7597cb53cf57713812779b07de550d710e0d7ac40c3c4f7d28d4b
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,33 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.3.10] - 2026-07-23
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.3.10][2.3.10t]
|
|
36
|
+
- COVERAGE: 92.35% -- 3790/4104 lines in 37 files
|
|
37
|
+
- BRANCH COVERAGE: 75.95% -- 1500/1975 branches in 37 files
|
|
38
|
+
- 60.00% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Local development tooling now uses `kettle-gha-pins` 0.2.0 or newer on
|
|
43
|
+
Ruby 3.2+, while keeping older supported Ruby bundles solvable.
|
|
44
|
+
- `kettle-gha-sha-pins` now delegates GitHub Actions release-tag parsing,
|
|
45
|
+
canonicalization, cache persistence, GitHub release/tag/commit resolution,
|
|
46
|
+
and upgrade-target selection to the shared
|
|
47
|
+
`kettle-gha-pins` gem.
|
|
48
|
+
- `kettle-gha-sha-pins` is now a compatibility wrapper around the
|
|
49
|
+
`kettle-gha-pins` executable.
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
|
|
53
|
+
- Restored `kettle-gha-pins` as a normal runtime dependency now that 0.2.1
|
|
54
|
+
supports the full `kettle-dev` Ruby floor.
|
|
55
|
+
|
|
56
|
+
- Appraisal rake task specs now rely on kettle-test's `silent_stream`
|
|
57
|
+
integration instead of stubbing `Object#warn`, which is not supported under
|
|
58
|
+
JRuby 9.4.
|
|
59
|
+
|
|
33
60
|
## [2.3.9] - 2026-07-21
|
|
34
61
|
|
|
35
62
|
- TAG: [v2.3.9][2.3.9t]
|
|
@@ -2586,7 +2613,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
2586
2613
|
- Selecting will run the selected workflow via `act`
|
|
2587
2614
|
- This may move to its own gem in the future.
|
|
2588
2615
|
|
|
2589
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.3.
|
|
2616
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v2.3.10...HEAD
|
|
2617
|
+
[2.3.10]: https://github.com/kettle-dev/kettle-dev/compare/v2.3.9...v2.3.10
|
|
2618
|
+
[2.3.10t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.3.10
|
|
2590
2619
|
[2.3.9]: https://github.com/kettle-dev/kettle-dev/compare/v2.3.8...v2.3.9
|
|
2591
2620
|
[2.3.9t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v2.3.9
|
|
2592
2621
|
[2.3.8]: https://github.com/kettle-dev/kettle-dev/compare/v2.3.7...v2.3.8
|
data/README.md
CHANGED
|
@@ -470,6 +470,8 @@ What it does:
|
|
|
470
470
|
### Pre-release checks
|
|
471
471
|
|
|
472
472
|
- Script: `exe/kettle-gha-sha-pins` (run as `kettle-gha-sha-pins`)
|
|
473
|
+
- New projects should install `kettle-gha-pins` and run `kettle-gha-pins`
|
|
474
|
+
directly; this `kettle-dev` command remains as a compatibility wrapper.
|
|
473
475
|
- Purpose: Validate and optionally update GitHub Actions `uses:` refs to pinned
|
|
474
476
|
SHAs and current allowed release versions.
|
|
475
477
|
- Usage:
|
|
@@ -889,7 +891,7 @@ Thanks for RTFM. ☺️
|
|
|
889
891
|
[📌gitmoji]: https://gitmoji.dev
|
|
890
892
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
891
893
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
892
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-4.
|
|
894
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-4.104-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
893
895
|
[🔐security]: https://github.com/kettle-dev/kettle-dev/blob/main/SECURITY.md
|
|
894
896
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
895
897
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/exe/kettle-gha-sha-pins
CHANGED
|
@@ -3,38 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
# vim: set syntax=ruby
|
|
5
5
|
|
|
6
|
-
$stdout.sync = true
|
|
7
|
-
$stderr.sync = true
|
|
8
|
-
|
|
9
|
-
# Do not rely on Bundler; allow running in repos that do not depend on kettle-dev
|
|
10
|
-
begin
|
|
11
|
-
require "rubygems"
|
|
12
|
-
rescue LoadError
|
|
13
|
-
# Older Rubies always have rubygems; continue anyway
|
|
14
|
-
end
|
|
15
|
-
|
|
16
6
|
script_basename = File.basename(__FILE__)
|
|
17
7
|
|
|
18
8
|
begin
|
|
19
|
-
|
|
20
|
-
rescue LoadError
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
require "kettle/dev"
|
|
25
|
-
rescue LoadError => e
|
|
26
|
-
warn("#{script_basename}: could not load dependency: #{e.class}: #{e.message}")
|
|
27
|
-
warn("Hint: Install the kettle-dev gem (`gem install kettle-dev`) or add it to your Gemfile. Bundler is not required for this script.")
|
|
28
|
-
exit(1)
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
begin
|
|
33
|
-
cli = Kettle::Dev::GhaShaPinsCLI.new(ARGV)
|
|
34
|
-
status = cli.run!
|
|
35
|
-
Kettle::Dev::ExitAdapter.exit(status)
|
|
36
|
-
rescue => e
|
|
37
|
-
warn("#{script_basename}: unexpected error: #{e.class}: #{e.message}")
|
|
38
|
-
warn(e.backtrace.join("\n"))
|
|
39
|
-
Kettle::Dev::ExitAdapter.exit(1)
|
|
9
|
+
Kernel.exec(Gem.ruby, Gem.bin_path("kettle-gha-pins", "kettle-gha-pins"), *ARGV)
|
|
10
|
+
rescue Gem::Exception, LoadError => e
|
|
11
|
+
warn("#{script_basename}: could not load kettle-gha-pins executable: #{e.class}: #{e.message}")
|
|
12
|
+
warn("Hint: Install the kettle-gha-pins gem (`gem install kettle-gha-pins`) or add it to your Gemfile.")
|
|
13
|
+
exit(1)
|
|
40
14
|
end
|