kettle-family 1.2.81 → 1.2.82
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 -27
- 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: 30f24abb8d6167fc028b11ee8a675b9aefeb7268690bc70f6d016e5dcc43d65f
|
|
4
|
+
data.tar.gz: a46437f03a8571fa67b059dad4148a82de5c8707f94bcedd355c55a52dfcfddf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: deb096f7906dc799b1c83c9d4a4e7bf2adbf37704318da50e080d5ecf92b7d3728cdf34cc3e5e9e1c618045f5846994ebdd780017925e081fe6e2f9e9b87902c
|
|
7
|
+
data.tar.gz: 2e40c9f326e2481d12143676aa14596741a33eb4a8567defe153e521d6195f6b68ff54456f360b5d9467facf5aa9628a91d9ba892d1ab76e26f5c6875544ad70
|
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.82] - 2026-09-01
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.2.82][1.2.82t]
|
|
36
|
+
- COVERAGE: 93.26% -- 5655/6064 lines in 33 files
|
|
37
|
+
- BRANCH COVERAGE: 76.34% -- 2310/3026 branches in 33 files
|
|
38
|
+
- 30.69% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Keep the configured family local dependency graph active throughout template bootstrap and preparation; release-only lockfile cleanup remains isolated to release commands.
|
|
43
|
+
|
|
33
44
|
## [1.2.81] - 2026-09-01
|
|
34
45
|
|
|
35
46
|
- TAG: [v1.2.81][1.2.81t]
|
|
@@ -2477,7 +2488,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
2477
2488
|
- Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
|
|
2478
2489
|
- Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
|
|
2479
2490
|
|
|
2480
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.
|
|
2491
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.82...HEAD
|
|
2492
|
+
[1.2.82]: https://github.com/kettle-dev/kettle-family/compare/v1.2.81...v1.2.82
|
|
2493
|
+
[1.2.82t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.82
|
|
2481
2494
|
[1.2.81]: https://github.com/kettle-dev/kettle-family/compare/v1.2.80...v1.2.81
|
|
2482
2495
|
[1.2.81t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.81
|
|
2483
2496
|
[1.2.80]: https://github.com/kettle-dev/kettle-family/compare/v1.2.79...v1.2.80
|
data/README.md
CHANGED
|
@@ -1049,7 +1049,7 @@ Thanks for RTFM. ☺️
|
|
|
1049
1049
|
[📌gitmoji]: https://gitmoji.dev
|
|
1050
1050
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
1051
1051
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
1052
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-6.
|
|
1052
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-6.064-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
1053
1053
|
[🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
|
|
1054
1054
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
1055
1055
|
[📄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.82"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
@@ -822,34 +822,13 @@ module Kettle
|
|
|
822
822
|
versions.max
|
|
823
823
|
end
|
|
824
824
|
|
|
825
|
-
def template_bootstrap_dependency_env(
|
|
826
|
-
env =
|
|
827
|
-
env.each_key do |key|
|
|
828
|
-
env[key] = "false" if key.end_with?("_DEV") && !local_path_env_requested?(key)
|
|
829
|
-
end
|
|
825
|
+
def template_bootstrap_dependency_env(_member)
|
|
826
|
+
env = template_prepare_env
|
|
830
827
|
env["K_JEM_TEMPLATING"] = "false"
|
|
831
828
|
env["BUNDLE_DISABLE_CHECKSUM_VALIDATION"] = "true"
|
|
832
|
-
family_env_name = config.family_local_path_env_name
|
|
833
|
-
env[family_env_name] = "false" if family_env_name && !local_path_env_requested?(family_env_name)
|
|
834
|
-
env.merge!(template_bootstrap_direct_sibling_env(member))
|
|
835
829
|
env
|
|
836
830
|
end
|
|
837
831
|
|
|
838
|
-
# The bootstrap refreshes nomono before the template bundle is available,
|
|
839
|
-
# but a sibling member can itself require an unreleased family gem. Keep
|
|
840
|
-
# that direct dependency local without enabling the full template context.
|
|
841
|
-
def template_bootstrap_direct_sibling_env(member)
|
|
842
|
-
return {} unless config.family_mode == "sibling_repos"
|
|
843
|
-
|
|
844
|
-
direct_sibling_env = "#{config.family_name.gsub(/[^A-Za-z0-9]+/, "_").upcase}_DEV"
|
|
845
|
-
return {} if local_path_env_requested?(direct_sibling_env)
|
|
846
|
-
|
|
847
|
-
family_names = family_members.map(&:name)
|
|
848
|
-
return {} if (Array(member.dependencies) & family_names).empty?
|
|
849
|
-
|
|
850
|
-
{direct_sibling_env => config.family_local_path_root}
|
|
851
|
-
end
|
|
852
|
-
|
|
853
832
|
def template_results_for_member(member, progress: nil)
|
|
854
833
|
progress&.start_member(member, total: template_phase_total(member), status: template_initial_status(member))
|
|
855
834
|
runner = CommandRunner.new(execute: execute, accept: accept)
|
|
@@ -4377,10 +4356,10 @@ module Kettle
|
|
|
4377
4356
|
end
|
|
4378
4357
|
|
|
4379
4358
|
def template_prepare_env
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4359
|
+
# Templating is development work. It must resolve the configured
|
|
4360
|
+
# family graph exactly as template application does; release-only
|
|
4361
|
+
# lockfile cleanup owns disabling local path sources.
|
|
4362
|
+
workflow_env
|
|
4384
4363
|
end
|
|
4385
4364
|
|
|
4386
4365
|
def local_path_env_requested?(name)
|
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.82
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -91,7 +91,7 @@ dependencies:
|
|
|
91
91
|
requirements:
|
|
92
92
|
- - ">="
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
|
-
version: 3.0.
|
|
94
|
+
version: 3.0.28
|
|
95
95
|
- - "<"
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
97
|
version: 4.0.0
|
|
@@ -101,7 +101,7 @@ dependencies:
|
|
|
101
101
|
requirements:
|
|
102
102
|
- - ">="
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 3.0.
|
|
104
|
+
version: 3.0.28
|
|
105
105
|
- - "<"
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
107
|
version: 4.0.0
|
|
@@ -441,10 +441,10 @@ licenses:
|
|
|
441
441
|
- AGPL-3.0-only
|
|
442
442
|
metadata:
|
|
443
443
|
homepage_uri: https://kettle-family.galtzo.com
|
|
444
|
-
source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.
|
|
445
|
-
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.
|
|
444
|
+
source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.82
|
|
445
|
+
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.82/CHANGELOG.md
|
|
446
446
|
bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
|
|
447
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.
|
|
447
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.82
|
|
448
448
|
funding_uri: https://github.com/sponsors/pboling
|
|
449
449
|
wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
|
|
450
450
|
news_uri: https://www.railsbling.com/tags/kettle-family
|
metadata.gz.sig
CHANGED
|
Binary file
|