gitaly 15.9.0.pre.rc1 → 15.9.0.pre.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/commit_pb.rb +1 -0
- data/ruby/proto/gitaly/diff_pb.rb +7 -0
- data/ruby/proto/gitaly/repository_pb.rb +8 -0
- data/ruby/proto/gitaly/repository_services_pb.rb +2 -0
- data/ruby/proto/gitaly/shared_pb.rb +1 -0
- data/ruby/proto/gitaly/smarthttp_pb.rb +0 -11
- data/ruby/proto/gitaly/smarthttp_services_pb.rb +0 -2
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91520831086001bd325638013178f38e853519ad047d26539c3ac0a2933d013c
|
4
|
+
data.tar.gz: f2583226fccb73f93bb3efd31f3cff68ac10a160407e1824a00db67a55601f60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b6072f2d87fe115eabaf17624438e53f51c477a425ac730d3ef6239b3653a99df9fb4963cc0f935ec2e2df6c0821f431d974fc4ec1d2117239a4bc733b1bf1b
|
7
|
+
data.tar.gz: 46ae6d409dce37d54d2f17b171984d6ae8e4df1acc1d9fd529696fc541fdaafab2569ba54678a692c35f5546082670305c4bfdbd31d788b139daa11869a92545
|
@@ -196,6 +196,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
196
196
|
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
197
197
|
optional :trailers, :bool, 16
|
198
198
|
optional :include_shortstat, :bool, 17
|
199
|
+
repeated :include_referenced_by, :bytes, 18
|
199
200
|
end
|
200
201
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
201
202
|
value :NONE, 0
|
@@ -24,11 +24,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
24
24
|
optional :safe_max_bytes, :int32, 13
|
25
25
|
optional :diff_mode, :enum, 15, "gitaly.CommitDiffRequest.DiffMode"
|
26
26
|
map :max_patch_bytes_for_file_extension, :string, :int32, 16
|
27
|
+
optional :whitespace_changes, :enum, 17, "gitaly.CommitDiffRequest.WhitespaceChanges"
|
27
28
|
end
|
28
29
|
add_enum "gitaly.CommitDiffRequest.DiffMode" do
|
29
30
|
value :DEFAULT, 0
|
30
31
|
value :WORDDIFF, 1
|
31
32
|
end
|
33
|
+
add_enum "gitaly.CommitDiffRequest.WhitespaceChanges" do
|
34
|
+
value :WHITESPACE_CHANGES_UNSPECIFIED, 0
|
35
|
+
value :WHITESPACE_CHANGES_IGNORE, 1
|
36
|
+
value :WHITESPACE_CHANGES_IGNORE_ALL, 2
|
37
|
+
end
|
32
38
|
add_message "gitaly.CommitDiffResponse" do
|
33
39
|
optional :from_path, :bytes, 1
|
34
40
|
optional :to_path, :bytes, 2
|
@@ -139,6 +145,7 @@ end
|
|
139
145
|
module Gitaly
|
140
146
|
CommitDiffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest").msgclass
|
141
147
|
CommitDiffRequest::DiffMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest.DiffMode").enummodule
|
148
|
+
CommitDiffRequest::WhitespaceChanges = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest.WhitespaceChanges").enummodule
|
142
149
|
CommitDiffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffResponse").msgclass
|
143
150
|
CommitDeltaRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaRequest").msgclass
|
144
151
|
CommitDelta = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDelta").msgclass
|
@@ -56,6 +56,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
56
56
|
add_message "gitaly.RepositorySizeResponse" do
|
57
57
|
optional :size, :int64, 1
|
58
58
|
end
|
59
|
+
add_message "gitaly.ObjectFormatRequest" do
|
60
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
61
|
+
end
|
62
|
+
add_message "gitaly.ObjectFormatResponse" do
|
63
|
+
optional :format, :enum, 1, "gitaly.ObjectFormat"
|
64
|
+
end
|
59
65
|
add_message "gitaly.ApplyGitattributesRequest" do
|
60
66
|
optional :repository, :message, 1, "gitaly.Repository"
|
61
67
|
optional :revision, :bytes, 2
|
@@ -364,6 +370,8 @@ module Gitaly
|
|
364
370
|
CleanupResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
365
371
|
RepositorySizeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
|
366
372
|
RepositorySizeResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeResponse").msgclass
|
373
|
+
ObjectFormatRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectFormatRequest").msgclass
|
374
|
+
ObjectFormatResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectFormatResponse").msgclass
|
367
375
|
ApplyGitattributesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
|
368
376
|
ApplyGitattributesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesResponse").msgclass
|
369
377
|
FetchBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchBundleRequest").msgclass
|
@@ -29,6 +29,8 @@ module Gitaly
|
|
29
29
|
rpc :WriteCommitGraph, ::Gitaly::WriteCommitGraphRequest, ::Gitaly::WriteCommitGraphResponse
|
30
30
|
# This comment is left unintentionally blank.
|
31
31
|
rpc :RepositorySize, ::Gitaly::RepositorySizeRequest, ::Gitaly::RepositorySizeResponse
|
32
|
+
# ObjectFormat determines the object format that is being used by the repository.
|
33
|
+
rpc :ObjectFormat, ::Gitaly::ObjectFormatRequest, ::Gitaly::ObjectFormatResponse
|
32
34
|
# This comment is left unintentionally blank.
|
33
35
|
rpc :ApplyGitattributes, ::Gitaly::ApplyGitattributesRequest, ::Gitaly::ApplyGitattributesResponse
|
34
36
|
# FetchRemote fetches references from a remote repository into the local
|
@@ -36,6 +36,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
36
36
|
optional :tree_id, :string, 9
|
37
37
|
repeated :trailers, :message, 10, "gitaly.CommitTrailer"
|
38
38
|
optional :short_stats, :message, 11, "gitaly.CommitStatInfo"
|
39
|
+
repeated :referenced_by, :bytes, 12
|
39
40
|
end
|
40
41
|
add_message "gitaly.CommitAuthor" do
|
41
42
|
optional :name, :bytes, 1
|
@@ -15,15 +15,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
15
15
|
add_message "gitaly.InfoRefsResponse" do
|
16
16
|
optional :data, :bytes, 1
|
17
17
|
end
|
18
|
-
add_message "gitaly.PostUploadPackRequest" do
|
19
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
20
|
-
optional :data, :bytes, 2
|
21
|
-
repeated :git_config_options, :string, 3
|
22
|
-
optional :git_protocol, :string, 4
|
23
|
-
end
|
24
|
-
add_message "gitaly.PostUploadPackResponse" do
|
25
|
-
optional :data, :bytes, 1
|
26
|
-
end
|
27
18
|
add_message "gitaly.PostUploadPackWithSidechannelRequest" do
|
28
19
|
optional :repository, :message, 1, "gitaly.Repository"
|
29
20
|
repeated :git_config_options, :string, 2
|
@@ -49,8 +40,6 @@ end
|
|
49
40
|
module Gitaly
|
50
41
|
InfoRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InfoRefsRequest").msgclass
|
51
42
|
InfoRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InfoRefsResponse").msgclass
|
52
|
-
PostUploadPackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackRequest").msgclass
|
53
|
-
PostUploadPackResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackResponse").msgclass
|
54
43
|
PostUploadPackWithSidechannelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackWithSidechannelRequest").msgclass
|
55
44
|
PostUploadPackWithSidechannelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackWithSidechannelResponse").msgclass
|
56
45
|
PostReceivePackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceivePackRequest").msgclass
|
@@ -24,8 +24,6 @@ module Gitaly
|
|
24
24
|
# Will be invoked when the user executes a `git push`, but only advertises
|
25
25
|
# references to the user.
|
26
26
|
rpc :InfoRefsReceivePack, ::Gitaly::InfoRefsRequest, stream(::Gitaly::InfoRefsResponse)
|
27
|
-
# Request and response body for POST /upload-pack
|
28
|
-
rpc :PostUploadPack, stream(::Gitaly::PostUploadPackRequest), stream(::Gitaly::PostUploadPackResponse)
|
29
27
|
# Request and response body for POST /upload-pack using sidechannel protocol
|
30
28
|
rpc :PostUploadPackWithSidechannel, ::Gitaly::PostUploadPackWithSidechannelRequest, ::Gitaly::PostUploadPackWithSidechannelResponse
|
31
29
|
# Request and response body for POST /receive-pack
|
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: 15.9.0.pre.
|
4
|
+
version: 15.9.0.pre.rc3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|