gitaly 14.2.0.pre.rc1 → 14.2.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: c4a301ad2f193abcc808f9f5df49d038e49862c0918f270f5d99d3332ef76b53
4
- data.tar.gz: 9737e05d41137e60414ff5e1b45df7e81ab85ccb9406e0e5084707285adc1a38
3
+ metadata.gz: d396caff6463ef3e2d351df6b432888699054e5b3d887207821a19cd5d80a1e2
4
+ data.tar.gz: 6ceef41e531f4099b07ac27acc20fc59cf193709d5973c68558191315e1e1d33
5
5
  SHA512:
6
- metadata.gz: 1664e5402d23121bbdb0f57fa01c87a7037d930bf2e73d94d794b5ca5842e01fb7705a6e17cbd296bcee23ad4705d81d137fbcd739a6b4c4f48d7a1fe28bcab5
7
- data.tar.gz: 392512130a045102032203532136e0a1f2f5482485d10120944452455b67498ffe7f85779066ebcbb09c88d2a6901dbbb935f62e28854fc6cc3b869d5011cc49
6
+ metadata.gz: 7729a104bf14a7b95d42b375ec31969e7a738de48ea9abec3f06a3125bd936996b2dac45fd4649d364f0fff2db3f29d168249d02886503ca0f8e2ab020d1ac8d
7
+ data.tar.gz: f13afc8c8c0a4a70016646d4fed3541c28a429bf2e071d5bff8fd3cd9a87b99a63593ee09420e039fb1b3a1bcc5c746cfd6757ca2c3e778f815fc151022c6f34
@@ -50,6 +50,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
50
50
  optional :size, :int64, 2
51
51
  optional :data, :bytes, 3
52
52
  end
53
+ add_message "gitaly.ListAllBlobsRequest" do
54
+ optional :repository, :message, 1, "gitaly.Repository"
55
+ optional :limit, :uint32, 2
56
+ optional :bytes_limit, :int64, 3
57
+ end
58
+ add_message "gitaly.ListAllBlobsResponse" do
59
+ repeated :blobs, :message, 1, "gitaly.ListAllBlobsResponse.Blob"
60
+ end
61
+ add_message "gitaly.ListAllBlobsResponse.Blob" do
62
+ optional :oid, :string, 1
63
+ optional :size, :int64, 2
64
+ optional :data, :bytes, 3
65
+ end
53
66
  add_message "gitaly.LFSPointer" do
54
67
  optional :size, :int64, 1
55
68
  optional :data, :bytes, 2
@@ -94,6 +107,9 @@ module Gitaly
94
107
  ListBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsRequest").msgclass
95
108
  ListBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsResponse").msgclass
96
109
  ListBlobsResponse::Blob = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsResponse.Blob").msgclass
110
+ ListAllBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllBlobsRequest").msgclass
111
+ ListAllBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllBlobsResponse").msgclass
112
+ ListAllBlobsResponse::Blob = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllBlobsResponse.Blob").msgclass
97
113
  LFSPointer = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
98
114
  NewBlobObject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NewBlobObject").msgclass
99
115
  GetLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
@@ -23,6 +23,9 @@ module Gitaly
23
23
  # doing a graph walk. It is not valid to pass revisions which do not resolve
24
24
  # to an existing object.
25
25
  rpc :ListBlobs, ::Gitaly::ListBlobsRequest, stream(::Gitaly::ListBlobsResponse)
26
+ # ListAllBlobs retrieves all blobs pointers in the repository, including
27
+ # those not reachable by any reference.
28
+ rpc :ListAllBlobs, ::Gitaly::ListAllBlobsRequest, stream(::Gitaly::ListAllBlobsResponse)
26
29
  # GetLFSPointers retrieves LFS pointers from a given set of object IDs.
27
30
  # This RPC filters all requested objects and only returns those which refer
28
31
  # to a valid LFS pointer.
@@ -341,6 +341,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
341
341
  end
342
342
  add_message "gitaly.OptimizeRepositoryResponse" do
343
343
  end
344
+ add_message "gitaly.SetFullPathRequest" do
345
+ optional :repository, :message, 1, "gitaly.Repository"
346
+ optional :path, :string, 2
347
+ end
348
+ add_message "gitaly.SetFullPathResponse" do
349
+ end
344
350
  end
345
351
  end
346
352
 
@@ -437,4 +443,6 @@ module Gitaly
437
443
  ReplicateRepositoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryResponse").msgclass
438
444
  OptimizeRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryRequest").msgclass
439
445
  OptimizeRepositoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryResponse").msgclass
446
+ SetFullPathRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetFullPathRequest").msgclass
447
+ SetFullPathResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetFullPathResponse").msgclass
440
448
  end
@@ -66,6 +66,11 @@ module Gitaly
66
66
  rpc :RenameRepository, ::Gitaly::RenameRepositoryRequest, ::Gitaly::RenameRepositoryResponse
67
67
  rpc :ReplicateRepository, ::Gitaly::ReplicateRepositoryRequest, ::Gitaly::ReplicateRepositoryResponse
68
68
  rpc :OptimizeRepository, ::Gitaly::OptimizeRepositoryRequest, ::Gitaly::OptimizeRepositoryResponse
69
+ # SetFullPath writes the "gitlab.fullpath" configuration into the
70
+ # repository's gitconfig. This is mainly to help debugging purposes in case
71
+ # an admin inspects the repository's gitconfig such that he can easily see
72
+ # what the repository name is.
73
+ rpc :SetFullPath, ::Gitaly::SetFullPathRequest, ::Gitaly::SetFullPathResponse
69
74
  end
70
75
 
71
76
  Stub = Service.rpc_stub_class
@@ -2,5 +2,5 @@
2
2
  # (https://gitlab.com/gitlab-org/release-tools/), and should not be
3
3
  # modified.
4
4
  module Gitaly
5
- VERSION = '14.2.0-rc1'
5
+ VERSION = '14.2.0-rc2'
6
6
  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: 14.2.0.pre.rc1
4
+ version: 14.2.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-07-22 00:00:00.000000000 Z
11
+ date: 2021-07-27 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.1.4
97
- signing_key:
96
+ rubygems_version: 3.2.21
97
+ signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly
100
100
  test_files: []