kettle-family 1.2.87 → 1.2.88
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/lib/kettle/family/version.rb +1 -1
- data/lib/kettle/family/workflow.rb +1 -1
- 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: a9b95d2b24bf470a2e06463f6b5e00bd2dce34a5e0f76d74a6d59f2498fe47ec
|
|
4
|
+
data.tar.gz: 71fb081d31ddca6f76200d40acc2366663106887462dd1b6d0ab86832575489c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 222b0141cbf3976a418be61cf78bac4f3982be572bec6097033a74d798e597ffb01e45b82d634a96a4a586089dfdc9d5dc155e7fc741863755427c097a344318
|
|
7
|
+
data.tar.gz: 8369b700b9e6c9899140a1eb008f5863a1c80b21136eec721f951418ca3c989161a585f987ac1d463bd2792b5d88aa89267996f3f144ce548c0724824ec21f42
|
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.88] - 2026-09-06
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.2.88][1.2.88t]
|
|
36
|
+
- COVERAGE: 93.10% -- 5813/6244 lines in 34 files
|
|
37
|
+
- BRANCH COVERAGE: 76.17% -- 2356/3093 branches in 34 files
|
|
38
|
+
- 31.79% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Autostash managed template outputs while rebasing a template checkout.
|
|
43
|
+
|
|
33
44
|
## [1.2.87] - 2026-09-06
|
|
34
45
|
|
|
35
46
|
- TAG: [v1.2.87][1.2.87t]
|
|
@@ -2549,7 +2560,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
2549
2560
|
- Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
|
|
2550
2561
|
- Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
|
|
2551
2562
|
|
|
2552
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.
|
|
2563
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.88...HEAD
|
|
2564
|
+
[1.2.88]: https://github.com/kettle-dev/kettle-family/compare/v1.2.87...v1.2.88
|
|
2565
|
+
[1.2.88t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.88
|
|
2553
2566
|
[1.2.87]: https://github.com/kettle-dev/kettle-family/compare/v1.2.86...v1.2.87
|
|
2554
2567
|
[1.2.87t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.87
|
|
2555
2568
|
[1.2.86]: https://github.com/kettle-dev/kettle-family/compare/v1.2.85...v1.2.86
|
|
@@ -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.88"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
@@ -289,7 +289,7 @@ module Kettle
|
|
|
289
289
|
upstream = git_upstream_for(member)
|
|
290
290
|
next unless upstream
|
|
291
291
|
|
|
292
|
-
results << runner.call(member: member, phase: "template_sync", command: ["git", "pull", "--rebase"])
|
|
292
|
+
results << runner.call(member: member, phase: "template_sync", command: ["git", "pull", "--rebase", "--autostash"])
|
|
293
293
|
break unless results.last.ok?
|
|
294
294
|
end
|
|
295
295
|
[results, stashes]
|
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.88
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -442,10 +442,10 @@ licenses:
|
|
|
442
442
|
- AGPL-3.0-only
|
|
443
443
|
metadata:
|
|
444
444
|
homepage_uri: https://kettle-family.galtzo.com
|
|
445
|
-
source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.
|
|
446
|
-
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.
|
|
445
|
+
source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.88
|
|
446
|
+
changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.88/CHANGELOG.md
|
|
447
447
|
bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
|
|
448
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.
|
|
448
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.88
|
|
449
449
|
funding_uri: https://github.com/sponsors/pboling
|
|
450
450
|
wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
|
|
451
451
|
news_uri: https://www.railsbling.com/tags/kettle-family
|
metadata.gz.sig
CHANGED
|
Binary file
|