kettle-family 1.2.69 → 1.2.70
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/lib/kettle/family/version.rb +1 -1
- data/lib/kettle/family/workflow.rb +21 -10
- 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: c2288af511fb1a4739aaa21048c246fc943f37121fade2508036d3ab99118a23
|
|
4
|
+
data.tar.gz: dd96a3071d396abca33e2dc05747ed84d5b4071833e6397d18262e7b67a8ac8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55c143def3d82260a48d92eb2a790d451b0870639f0824b8995acbf066111b5fb43f9522fb94d7a79de4fccc64f4a786fdd553621512316f0b51ffe81ed6f49c
|
|
7
|
+
data.tar.gz: e405c86386fd311f126a473fd7c2410626f1763ae739892c923fd03ea69a8bbff9251e6cb9f08504a3ad0189ec4b50d43b67cf74b5ecd3689fea6614ad15a086
|
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
|
+
## [1.2.70] - 2026-08-30
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.2.70][1.2.70t]
|
|
36
|
+
- COVERAGE: 93.22% -- 5502/5902 lines in 33 files
|
|
37
|
+
- BRANCH COVERAGE: 76.41% -- 2258/2955 branches in 33 files
|
|
38
|
+
- 30.50% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Allow monorepo bundle updates to retain configured in-repository path dependencies.
|
|
43
|
+
|
|
44
|
+
- Launch monorepo member release tools from the family bundle so configured in-repository dependencies remain available across release waves.
|
|
45
|
+
|
|
33
46
|
## [1.2.69] - 2026-08-30
|
|
34
47
|
|
|
35
48
|
- TAG: [v1.2.69][1.2.69t]
|
|
@@ -2333,7 +2346,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
2333
2346
|
- Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
|
|
2334
2347
|
- Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
|
|
2335
2348
|
|
|
2336
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.
|
|
2349
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.70...HEAD
|
|
2350
|
+
[1.2.70]: https://github.com/kettle-dev/kettle-family/compare/v1.2.69...v1.2.70
|
|
2351
|
+
[1.2.70t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.70
|
|
2337
2352
|
[1.2.69]: https://github.com/kettle-dev/kettle-family/compare/v1.2.68...v1.2.69
|
|
2338
2353
|
[1.2.69t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.69
|
|
2339
2354
|
[1.2.68]: https://github.com/kettle-dev/kettle-family/compare/v1.2.67...v1.2.68
|
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-5.
|
|
1052
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-5.902-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.70"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
@@ -2425,8 +2425,8 @@ module Kettle
|
|
|
2425
2425
|
local_kettle_dev = ENV.fetch("KETTLE_DEV_DEV", "").to_s.strip
|
|
2426
2426
|
env["KETTLE_DEV_DEV"] = local_kettle_dev if kettle_release_command?(raw_release_command) && local_path_env_value?(local_kettle_dev)
|
|
2427
2427
|
if kettle_release_command?(raw_release_command)
|
|
2428
|
-
|
|
2429
|
-
env["BUNDLE_GEMFILE"] =
|
|
2428
|
+
release_tool_gemfile = release_tool_gemfile_path(local_kettle_dev)
|
|
2429
|
+
env["BUNDLE_GEMFILE"] = release_tool_gemfile if release_tool_gemfile
|
|
2430
2430
|
end
|
|
2431
2431
|
if config.family_mode == "monorepo"
|
|
2432
2432
|
# Monorepo members release from subdirectories, while CI workflows
|
|
@@ -2471,6 +2471,20 @@ module Kettle
|
|
|
2471
2471
|
candidates.find { |path| File.file?(path) }
|
|
2472
2472
|
end
|
|
2473
2473
|
|
|
2474
|
+
# A member's development lockfile can pin an older kettle-dev than the
|
|
2475
|
+
# family runner. That older release tool may not understand the current
|
|
2476
|
+
# family policy, notably configured monorepo PATH dependencies. Launch
|
|
2477
|
+
# kettle-release from the family bundle instead; the release tool still
|
|
2478
|
+
# runs member project commands from the member checkout.
|
|
2479
|
+
def release_tool_gemfile_path(local_kettle_dev)
|
|
2480
|
+
local_kettle_dev_gemfile = local_kettle_dev_gemfile_path(local_kettle_dev)
|
|
2481
|
+
return local_kettle_dev_gemfile if local_kettle_dev_gemfile
|
|
2482
|
+
return unless config.configured_monorepo_release?
|
|
2483
|
+
|
|
2484
|
+
family_gemfile = File.join(config.root, "Gemfile")
|
|
2485
|
+
family_gemfile if File.file?(family_gemfile)
|
|
2486
|
+
end
|
|
2487
|
+
|
|
2474
2488
|
# A release task may start with local sibling paths so a member can
|
|
2475
2489
|
# consume a selected dependency that has not been published yet. Once
|
|
2476
2490
|
# that dependency is complete in an earlier wave, use its registry
|
|
@@ -4319,14 +4333,11 @@ module Kettle
|
|
|
4319
4333
|
end
|
|
4320
4334
|
|
|
4321
4335
|
def bundle_update_lockfile_diagnostics(member)
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
"release lockfile has local path remote at Gemfile.lock:#{index}"
|
|
4329
|
-
end
|
|
4336
|
+
ReadinessCheck.call(
|
|
4337
|
+
member: member,
|
|
4338
|
+
config: config,
|
|
4339
|
+
allowed_local_path_roots: release_allowed_local_path_roots
|
|
4340
|
+
).stdout.lines.grep(/^release lockfile has local path remote at /).map(&:chomp)
|
|
4330
4341
|
end
|
|
4331
4342
|
|
|
4332
4343
|
def commit_bex_changes(member:, runner:, memo:)
|
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.70
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -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.70
|
|
445
|
+
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.70/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.70
|
|
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
|