gitaly 13.8.0.pre.rc1 → 13.8.0.pre.rc2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d972ca5f6684796f316fe21716dbc24eb3e582451952cbdf93e4bc27f0bb3a83
|
4
|
+
data.tar.gz: f7e02f047fc410f059245325bf9cbb0d806114f2b4d8525d5baa4785cb068ed5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 473a5c1a669b0b25ddf0ac2e79c71e1f97f62c97f34b0799b2089152a9f45970d0b064353eebc472e0cd78777f3241c77556ebc12cd056e97021feb72fb775e4
|
7
|
+
data.tar.gz: e19c93a33c380ff335ccb53f9773ff22fa8fe0840f32baf96872dfc16b43c74d4cf38ceb96cdb19c8180e06e50aa1e6e8142820517fe8b70a13ba7ca81f22aef
|
@@ -68,8 +68,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
68
68
|
optional :known_hosts, :string, 7
|
69
69
|
optional :no_prune, :bool, 9
|
70
70
|
optional :remote_params, :message, 10, "gitaly.Remote"
|
71
|
+
optional :check_tags_changed, :bool, 11
|
71
72
|
end
|
72
73
|
add_message "gitaly.FetchRemoteResponse" do
|
74
|
+
optional :tags_changed, :bool, 1
|
73
75
|
end
|
74
76
|
add_message "gitaly.CreateRepositoryRequest" do
|
75
77
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -26,6 +26,8 @@ module Gitaly
|
|
26
26
|
rpc :CreateRepository, Gitaly::CreateRepositoryRequest, Gitaly::CreateRepositoryResponse
|
27
27
|
rpc :GetArchive, Gitaly::GetArchiveRequest, stream(Gitaly::GetArchiveResponse)
|
28
28
|
rpc :HasLocalBranches, Gitaly::HasLocalBranchesRequest, Gitaly::HasLocalBranchesResponse
|
29
|
+
# FetchSourceBranch fetches a branch from a second (potentially remote)
|
30
|
+
# repository into the given repository.
|
29
31
|
rpc :FetchSourceBranch, Gitaly::FetchSourceBranchRequest, Gitaly::FetchSourceBranchResponse
|
30
32
|
rpc :Fsck, Gitaly::FsckRequest, Gitaly::FsckResponse
|
31
33
|
rpc :WriteRef, Gitaly::WriteRefRequest, Gitaly::WriteRefResponse
|
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: 13.8.0.pre.
|
4
|
+
version: 13.8.0.pre.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -78,7 +78,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
|
|
78
78
|
licenses:
|
79
79
|
- MIT
|
80
80
|
metadata: {}
|
81
|
-
post_install_message:
|
81
|
+
post_install_message:
|
82
82
|
rdoc_options: []
|
83
83
|
require_paths:
|
84
84
|
- ruby/proto
|
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: 1.3.1
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
-
signing_key:
|
96
|
+
rubygems_version: 3.1.4
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|
100
100
|
test_files: []
|