gitaly 16.7.0.pre.rc1 → 16.7.0.pre.rc44

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65b03c2c3469cfe01660620b956586c4329068b9f86735a058b1796f979f9fa2
4
- data.tar.gz: 788de89922d889ee95fab918a4c836650020556bed4b9a3917e4c700fd4dd816
3
+ metadata.gz: 10e88f1a7aeeb4c907f4aec713f2b5974df59e1f8a125f38d7d962921efd1464
4
+ data.tar.gz: a0fd6ecfe877b4ab3f4d2f1e4686116eff2dca2bf77f5f1a6d3027d23d479a6a
5
5
  SHA512:
6
- metadata.gz: 5aa43343d9cdc783bdce334b538b912966fa1bd0a2204a48b24fc541a3a6e11ea7b5a45c1ea4cf2f4c7ef728ed7bd8b5c20e7a2fd52251cd348678d6a3070487
7
- data.tar.gz: 13bb491666b06f0ccf18ffd411c1f015f1986a99ee848119a0fe61d8501d1512ef0a842f4d505ba92d9cb5463dbc6d76a6edb72a72466531a8a5ad5ecdb0e0c9
6
+ metadata.gz: b0b008d39912a0706f0919bd9de24f0b0751901ee4cdcb5682d7f180498a72c5c36db2081dd99feccec870f48d3a235685ca0e0da3c0cbbcf3e5756c6bfe2d1e
7
+ data.tar.gz: 9eaeb3f3349bf3ec6b188db7e658a2ed987f3b0cb837c786d63ad1ce2589a508ba2833c1af41178848ffe85f561238d43a48284cf897281b8ce26543b2787886
@@ -15,13 +15,22 @@ module Gitaly
15
15
  self.unmarshal_class_method = :decode
16
16
  self.service_name = 'gitaly.SSHService'
17
17
 
18
- # SSHUploadPack is an RPC to forward 'git upload-pack' to Gitaly for SSH sessions.
18
+ # SSHUploadPack is an RPC to forward git-upload-pack(1) to Gitaly for SSH sessions. The RPC uses
19
+ # bidirectional streaming so the client can stream stdin and the server can stream stdout and
20
+ # stderr for git-upload-pack(1).
19
21
  rpc :SSHUploadPack, stream(::Gitaly::SSHUploadPackRequest), stream(::Gitaly::SSHUploadPackResponse)
20
- # SSHUploadPackWithSidechannel is an RPC to forward 'git upload-pack' to Gitaly for SSH sessions, via sidechannels.
22
+ # SSHUploadPackWithSidechannel is an RPC to forward git-upload-pack(1) to Gitaly for SSH
23
+ # sessions, via sidechannels. Sidechannel connections sidestep gRPC Protobuf message overhead and
24
+ # allow higher throughput of bulk data transfers. The stdin, stdout, and stderr for the
25
+ # git-upload-pack(1) are streamed through the sidechannel connection.
21
26
  rpc :SSHUploadPackWithSidechannel, ::Gitaly::SSHUploadPackWithSidechannelRequest, ::Gitaly::SSHUploadPackWithSidechannelResponse
22
- # SSHReceivePack is an RPC to forward 'git receive-pack' to Gitaly for SSH sessions.
27
+ # SSHReceivePack is an RPC to forward git-receive-pack(1) to Gitaly for SSH sessions. The RPC uses
28
+ # bidirectional streaming so the client can stream stdin and the server can stream stdout and
29
+ # stderr for git-receive-pack(1).
23
30
  rpc :SSHReceivePack, stream(::Gitaly::SSHReceivePackRequest), stream(::Gitaly::SSHReceivePackResponse)
24
- # SSHUploadArchive is an RPC to forward 'git upload-archive' to Gitaly for SSH sessions.
31
+ # SSHUploadArchive is an RPC to forward git-upload-archive(1) to Gitaly for SSH sessions. The RPC
32
+ # uses bidirectional streaming so the client can stream stdin and the server can stream stdout
33
+ # and stderr for git-upload-archive(1).
25
34
  rpc :SSHUploadArchive, stream(::Gitaly::SSHUploadArchiveRequest), stream(::Gitaly::SSHUploadArchiveResponse)
26
35
  end
27
36
 
@@ -1,4 +1,4 @@
1
1
  # This file is generated by build-proto-gem. Do not edit.
2
2
  module Gitaly
3
- VERSION = '16.7.0-rc1'
3
+ VERSION = '16.7.0-rc44'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 16.7.0.pre.rc1
4
+ version: 16.7.0.pre.rc44
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitLab Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-07 00:00:00.000000000 Z
11
+ date: 2023-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc