gitaly 16.7.0.pre.rc1 → 16.7.0.pre.rc43

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: ef986f86ebb85b5aa4128f82188232750c781ecd830976dec304f71d73c558ac
4
+ data.tar.gz: 0ee58077ce6be379eb52a021a1a24b950cee0ec6db7673a8d4ef119272a12418
5
5
  SHA512:
6
- metadata.gz: 5aa43343d9cdc783bdce334b538b912966fa1bd0a2204a48b24fc541a3a6e11ea7b5a45c1ea4cf2f4c7ef728ed7bd8b5c20e7a2fd52251cd348678d6a3070487
7
- data.tar.gz: 13bb491666b06f0ccf18ffd411c1f015f1986a99ee848119a0fe61d8501d1512ef0a842f4d505ba92d9cb5463dbc6d76a6edb72a72466531a8a5ad5ecdb0e0c9
6
+ metadata.gz: e63aa21195ab067f816af7c5cc583ebf55a7e76b72851ed0bf68bc34d3688a3919d6b2a84bab4bd56ccd2180080fc0ecd37340755bcad6327cc022f452f98c42
7
+ data.tar.gz: 842a212d2b860d364ac4ad46ab60858160295def0e3db0f93f72d84c710710a37bce655a86040b4d465c2d4788d0cc897282ce6ad3cffba4021b78e0746a4079
@@ -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-rc43'
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.rc43
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