kettle-family 1.2.15 → 1.2.16

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ccc9063ef81ee8d6b8bee27424903371b47863d9fb2903b4461c2e132b757d9
4
- data.tar.gz: ec46a0708e899590fb95d67d1f8e9dbe002195b21cf9a635c2c8b4a726a693c9
3
+ metadata.gz: 8b8259b472f99ca594e7956ac519a565fc7aa0fbab0ac70c27f04e23859aff81
4
+ data.tar.gz: a07e5341f564dff2585318124c8967f20bda0fff30367d267ddcba6a4a758814
5
5
  SHA512:
6
- metadata.gz: 883955e631cd8b19ee2219a98267465307dec049d35c7f209f61ce23465eeb05665a88954b0dcac39e70f980aa39a02bdc6f2539c4897ef6418412a7d5ad1054
7
- data.tar.gz: 8c584b648f8fe2914ac5077b8b181f398b2fe1507eb30278927c13408f5b3b7e6c4a7b1beba417f1dcc1a0ae80a0e7a460d433bb1336615a6ccb3759e2abee34
6
+ metadata.gz: 9b9cc51b230513a0c2e68429525ec18536079e9bbfd380add869fb141fa030d234a6a1768dfe80a5b54b73889b8272e730fc50594dae66bdc775d887415792fe
7
+ data.tar.gz: ae21a58c95d2b3300fdf9c4b1f8c45b1698c32602038f2afcff5d836fa21949734acfdc525fe96d7aec05af080e1d1c80d81b498ffc51800d42f9c52e93fe681
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.16] - 2026-07-31
34
+
35
+ - TAG: [v1.2.16][1.2.16t]
36
+ - COVERAGE: 94.03% -- 4193/4459 lines in 28 files
37
+ - BRANCH COVERAGE: 76.46% -- 1634/2137 branches in 28 files
38
+ - 28.88% documented
39
+
40
+ ### Fixed
41
+
42
+ - Configured per-member branch-target workflows now preserve the parent
43
+ family's local dependency root, preventing sibling local gems from resolving
44
+ beneath the target member checkout.
45
+
33
46
  ## [1.2.15] - 2026-07-31
34
47
 
35
48
  - TAG: [v1.2.15][1.2.15t]
@@ -1512,7 +1525,9 @@ Please file a bug if you notice a violation of semantic versioning.
1512
1525
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
1513
1526
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
1514
1527
 
1515
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.15...HEAD
1528
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.16...HEAD
1529
+ [1.2.16]: https://github.com/kettle-dev/kettle-family/compare/v1.2.15...v1.2.16
1530
+ [1.2.16t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.16
1516
1531
  [1.2.15]: https://github.com/kettle-dev/kettle-family/compare/v1.2.14...v1.2.15
1517
1532
  [1.2.15t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.15
1518
1533
  [1.2.14]: https://github.com/kettle-dev/kettle-family/compare/v1.2.13...v1.2.14
data/README.md CHANGED
@@ -819,7 +819,7 @@ Thanks for RTFM. ☺️
819
819
  [📌gitmoji]: https://gitmoji.dev
820
820
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
821
821
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
822
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-4.458-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
822
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-4.459-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
823
823
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
824
824
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
825
825
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -27,7 +27,11 @@ module Kettle
27
27
  branches = config.member_release_target_branches.fetch(member.name, nil)
28
28
  return if branches.nil? || branches.empty?
29
29
 
30
+ family_data = config.data.fetch("family", {}).merge(
31
+ "local_path_root" => config.family_local_path_root
32
+ )
30
33
  data = config.data.merge(
34
+ "family" => family_data,
31
35
  "members" => config.data.fetch("members", {}).merge("roots" => ["."]),
32
36
  "release" => config.data.fetch("release", {}).merge("target_branches" => branches)
33
37
  )
@@ -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.15"
8
+ VERSION = "1.2.16"
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-family
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.15
4
+ version: 1.2.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -342,10 +342,10 @@ licenses:
342
342
  - AGPL-3.0-only
343
343
  metadata:
344
344
  homepage_uri: https://kettle-family.galtzo.com
345
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.15
346
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.15/CHANGELOG.md
345
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.16
346
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.16/CHANGELOG.md
347
347
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
348
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.15
348
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.16
349
349
  funding_uri: https://github.com/sponsors/pboling
350
350
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
351
351
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file