kettle-family 1.2.78 → 1.2.79
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 +4 -0
- 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: de4d61b6ce08f508328ee4b060eb64c15e0d6fab02a2be03a09c0a373ee7f975
|
|
4
|
+
data.tar.gz: e31c6e4f532a22f4fcb08606bc619986d83ef44f12302986ce087be914536cf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84c2e9ac41a1d3da7cafb586952a9d2a3e218c774a1a71640fb9d1c334336b91d12a33b00bff6615911830e3bde06efb29bbe7fa9c9ae57291cdad324027b288
|
|
7
|
+
data.tar.gz: bb2ccf29a236cb2e8e601a8f767dfb342347ca52a6d99446a03983011e1b5b7e2da628498abc34c47562c3f63de3940ec4aa30c15701ff10cc7e009dc51752db
|
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.79] - 2026-09-01
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.2.79][1.2.79t]
|
|
36
|
+
- COVERAGE: 93.34% -- 5576/5974 lines in 33 files
|
|
37
|
+
- BRANCH COVERAGE: 76.67% -- 2294/2992 branches in 33 files
|
|
38
|
+
- 30.69% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Skip sibling-repository dependency-floor reconciliation for configured monorepo releases, which intentionally retain family path dependencies.
|
|
43
|
+
|
|
33
44
|
## [1.2.78] - 2026-09-01
|
|
34
45
|
|
|
35
46
|
- TAG: [v1.2.78][1.2.78t]
|
|
@@ -2438,7 +2449,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
2438
2449
|
- Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
|
|
2439
2450
|
- Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
|
|
2440
2451
|
|
|
2441
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.
|
|
2452
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.79...HEAD
|
|
2453
|
+
[1.2.79]: https://github.com/kettle-dev/kettle-family/compare/v1.2.78...v1.2.79
|
|
2454
|
+
[1.2.79t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.79
|
|
2442
2455
|
[1.2.78]: https://github.com/kettle-dev/kettle-family/compare/v1.2.77...v1.2.78
|
|
2443
2456
|
[1.2.78t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.78
|
|
2444
2457
|
[1.2.77]: https://github.com/kettle-dev/kettle-family/compare/v1.2.76...v1.2.77
|
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.974-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.79"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
@@ -1485,6 +1485,10 @@ module Kettle
|
|
|
1485
1485
|
|
|
1486
1486
|
def release_dependency_floor_reconciliation_results(release_members)
|
|
1487
1487
|
return [] unless execute && auto_dependency_floors
|
|
1488
|
+
# Monorepo members intentionally keep their family dependencies as
|
|
1489
|
+
# paths in the canonical development lockfile. Registry reconciliation
|
|
1490
|
+
# is for sibling repositories resuming after an earlier wave published.
|
|
1491
|
+
return [] if config.configured_monorepo_release?
|
|
1488
1492
|
|
|
1489
1493
|
published_members = published_family_dependencies_for(release_members)
|
|
1490
1494
|
return [] if published_members.empty?
|
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.79
|
|
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.79
|
|
445
|
+
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.79/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.79
|
|
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
|