kettle-family 1.2.56 → 1.2.57

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: 34b36ee55d171d1e9132e82d5df605e2e56c619ffa1ebb71a7c066681a691b68
4
- data.tar.gz: 1b2ff2457c6c84226919f6772fc365daa5083fbeb2b66b005f4132cd17efcaca
3
+ metadata.gz: 52aa49a65290b1653f400046c8d546cc2df665a4bdc84caf8b0340263d1cb690
4
+ data.tar.gz: e24c1ec35cfe71dbbad12d18c58a9f8ef9806074bf4047e615012791d0559c99
5
5
  SHA512:
6
- metadata.gz: cb03a78962298730c27ce7e56cf5cdfd332de42bde594b3de1da00f323a14f5a1f7051baab7d9f3a24797bcfb3f5abe4259db7b6fe803aff7c6648d2abeba5a4
7
- data.tar.gz: 0c83a56da0fca5dea3a7d33f43a00bfc4b5b7302bb37c989399e5a38205a936e5e3e13e18b566df236faa0c6a33cba947237540c8183c992e34a546edea7484c
6
+ metadata.gz: 0f33b6e0dac6143695041e5ca5de53dff3855b7bbfbbbe3750426dc140171464d4ae5ee0f97a42636362fed3ace79ff20e82320b72a16030003a2847ec1d4f15
7
+ data.tar.gz: d65b31d38b3585bed66c85499e97f98f0f0a6998a55cb73b167a991f0cd111af482399d44b1c64d3dbf838932b0b96b3e26a9ac0a806bc496b167926661a4cc6
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.57] - 2026-08-23
34
+
35
+ - TAG: [v1.2.57][1.2.57t]
36
+ - COVERAGE: 93.65% -- 5307/5667 lines in 33 files
37
+ - BRANCH COVERAGE: 76.42% -- 2142/2803 branches in 33 files
38
+ - 29.78% documented
39
+
40
+ ### Fixed
41
+
42
+ - Release secret brokers now choose a compact repository-local Unix socket path when deep checkout paths exceed the platform socket limit.
43
+
33
44
  ## [1.2.56] - 2026-08-18
34
45
 
35
46
  - TAG: [v1.2.56][1.2.56t]
@@ -2131,7 +2142,9 @@ Please file a bug if you notice a violation of semantic versioning.
2131
2142
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
2132
2143
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
2133
2144
 
2134
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.56...HEAD
2145
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.57...HEAD
2146
+ [1.2.57]: https://github.com/kettle-dev/kettle-family/compare/v1.2.56...v1.2.57
2147
+ [1.2.57t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.57
2135
2148
  [1.2.56]: https://github.com/kettle-dev/kettle-family/compare/v1.2.55...v1.2.56
2136
2149
  [1.2.56t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.56
2137
2150
  [1.2.55]: https://github.com/kettle-dev/kettle-family/compare/v1.2.54...v1.2.55
data/README.md CHANGED
@@ -836,7 +836,7 @@ Thanks for RTFM. ☺️
836
836
  [📌gitmoji]: https://gitmoji.dev
837
837
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
838
838
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
839
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.660-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
839
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-5.667-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
840
840
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
841
841
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
842
842
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -13,14 +13,27 @@ module Kettle
13
13
  # one release session is shared across sequential and parallel waves.
14
14
  class Broker
15
15
  OPERATIONS = %w[gem_signing_passphrase rubygems_otp].freeze
16
+ UNIX_SOCKET_PATH_MAX = 108
16
17
 
17
18
  attr_reader :path
18
19
 
19
20
  def initialize(provider:, root:)
20
21
  @provider = provider
21
22
  directory = File.join(root, "tmp", "kettle-family")
23
+ basename = "secrets-#{SecureRandom.hex(8)}.sock"
24
+ @path = File.join(directory, basename)
25
+
26
+ if @path.bytesize > UNIX_SOCKET_PATH_MAX
27
+ directory = File.join(root, "tmp", "kf")
28
+ @path = File.join(directory, "s-#{SecureRandom.hex(8)}")
29
+ end
30
+
31
+ if @path.bytesize > UNIX_SOCKET_PATH_MAX
32
+ raise Error,
33
+ "release secrets broker socket path is too long (#{@path.bytesize} bytes; Unix sockets allow #{UNIX_SOCKET_PATH_MAX})"
34
+ end
35
+
22
36
  FileUtils.mkdir_p(directory, mode: 0o700)
23
- @path = File.join(directory, "secrets-#{SecureRandom.hex(8)}.sock")
24
37
  @mutex = Mutex.new
25
38
  @closed = false
26
39
  end
@@ -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.56"
8
+ VERSION = "1.2.57"
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.56
4
+ version: 1.2.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -71,7 +71,7 @@ dependencies:
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
- version: 3.0.7
74
+ version: 3.0.8
75
75
  - - "<"
76
76
  - !ruby/object:Gem::Version
77
77
  version: 4.0.0
@@ -81,7 +81,7 @@ dependencies:
81
81
  requirements:
82
82
  - - ">="
83
83
  - !ruby/object:Gem::Version
84
- version: 3.0.7
84
+ version: 3.0.8
85
85
  - - "<"
86
86
  - !ruby/object:Gem::Version
87
87
  version: 4.0.0
@@ -361,10 +361,10 @@ licenses:
361
361
  - AGPL-3.0-only
362
362
  metadata:
363
363
  homepage_uri: https://kettle-family.galtzo.com
364
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.56
365
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.56/CHANGELOG.md
364
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.57
365
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.57/CHANGELOG.md
366
366
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
367
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.56
367
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.57
368
368
  funding_uri: https://github.com/sponsors/pboling
369
369
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
370
370
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file