kettle-family 1.2.36 → 1.2.37
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 +14 -1
- data/README.md +1 -1
- data/lib/kettle/family/version.rb +1 -1
- data/lib/kettle/family/workflow.rb +6 -0
- data.tar.gz.sig +0 -0
- metadata +6 -6
- 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: 4ac267ede795f210291cb65f5a44cbc3176159e20eb4c3791cda61a8e80a9e34
|
|
4
|
+
data.tar.gz: 6176b34ed826f1c9efba411954892d3c1d63ead38292c9c69555c53668ddbd80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc3c5732806d5147dbac4725970dda7c3fc8dd8b630f0eaa232d712eb0c54afcf090f9ae949f7d34d417023a0fe74d8be3464cc34ceb73416324ecc980c773ac
|
|
7
|
+
data.tar.gz: 765779cab4e8581a4c1db20a6fece06543c9b08600256f9ddf3b93018bd1f7c781a71c27683ca28c45581f888b161648a9ba8aae511058b899fb46b201c55e73
|
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.37] - 2026-08-07
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.2.37][1.2.37t]
|
|
36
|
+
- COVERAGE: 93.68% -- 5011/5349 lines in 32 files
|
|
37
|
+
- BRANCH COVERAGE: 76.09% -- 1999/2627 branches in 32 files
|
|
38
|
+
- 29.81% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Monorepo member releases now monitor the shared root GitHub Actions workflow.
|
|
43
|
+
|
|
33
44
|
## [1.2.36] - 2026-08-07
|
|
34
45
|
|
|
35
46
|
- TAG: [v1.2.36][1.2.36t]
|
|
@@ -1855,7 +1866,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1855
1866
|
- Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
|
|
1856
1867
|
- Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
|
|
1857
1868
|
|
|
1858
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.
|
|
1869
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.37...HEAD
|
|
1870
|
+
[1.2.37]: https://github.com/kettle-dev/kettle-family/compare/v1.2.36...v1.2.37
|
|
1871
|
+
[1.2.37t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.37
|
|
1859
1872
|
[1.2.36]: https://github.com/kettle-dev/kettle-family/compare/v1.2.35...v1.2.36
|
|
1860
1873
|
[1.2.36t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.36
|
|
1861
1874
|
[1.2.35]: https://github.com/kettle-dev/kettle-family/compare/v1.2.34...v1.2.35
|
data/README.md
CHANGED
|
@@ -837,7 +837,7 @@ Thanks for RTFM. ☺️
|
|
|
837
837
|
[📌gitmoji]: https://gitmoji.dev
|
|
838
838
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
839
839
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
840
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-5.
|
|
840
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-5.349-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
841
841
|
[🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
|
|
842
842
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
843
843
|
[📄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.
|
|
8
|
+
VERSION = "1.2.37"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
@@ -1911,6 +1911,12 @@ module Kettle
|
|
|
1911
1911
|
# member release phase as well as to the separate family phase.
|
|
1912
1912
|
def release_env_for_member(member)
|
|
1913
1913
|
env = release_env
|
|
1914
|
+
if config.family_mode == "monorepo"
|
|
1915
|
+
# Monorepo members release from subdirectories, while CI workflows
|
|
1916
|
+
# live at the shared repository root.
|
|
1917
|
+
env["K_RELEASE_CI_ROOT"] = config.root
|
|
1918
|
+
env["K_RELEASE_CI_WORKFLOWS"] ||= "current.yml"
|
|
1919
|
+
end
|
|
1914
1920
|
return env unless config.shared_changelog?
|
|
1915
1921
|
if config.member_local_changelog?(member)
|
|
1916
1922
|
return env.merge(
|
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.
|
|
4
|
+
version: 1.2.37
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -74,7 +74,7 @@ dependencies:
|
|
|
74
74
|
version: '2.3'
|
|
75
75
|
- - ">="
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: 2.5.
|
|
77
|
+
version: 2.5.22
|
|
78
78
|
type: :runtime
|
|
79
79
|
prerelease: false
|
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -84,7 +84,7 @@ dependencies:
|
|
|
84
84
|
version: '2.3'
|
|
85
85
|
- - ">="
|
|
86
86
|
- !ruby/object:Gem::Version
|
|
87
|
-
version: 2.5.
|
|
87
|
+
version: 2.5.22
|
|
88
88
|
- !ruby/object:Gem::Dependency
|
|
89
89
|
name: kettle-test
|
|
90
90
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -360,10 +360,10 @@ licenses:
|
|
|
360
360
|
- AGPL-3.0-only
|
|
361
361
|
metadata:
|
|
362
362
|
homepage_uri: https://kettle-family.galtzo.com
|
|
363
|
-
source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.
|
|
364
|
-
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.
|
|
363
|
+
source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.37
|
|
364
|
+
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.37/CHANGELOG.md
|
|
365
365
|
bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
|
|
366
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.
|
|
366
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.37
|
|
367
367
|
funding_uri: https://github.com/sponsors/pboling
|
|
368
368
|
wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
|
|
369
369
|
news_uri: https://www.railsbling.com/tags/kettle-family
|
metadata.gz.sig
CHANGED
|
Binary file
|