Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bufdev committed Feb 28, 2024
1 parent e607282 commit 2bbc844
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions buf/registry/module/v1/label_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ syntax = "proto3";
package buf.registry.module.v1;

import "buf/registry/module/v1/commit.proto";
import "buf/registry/module/v1/digest.proto";
import "buf/registry/module/v1/label.proto";
import "buf/registry/module/v1/resource.proto";
import "buf/validate/validate.proto";
Expand Down Expand Up @@ -157,13 +156,6 @@ message ListLabelHistoryRequest {
// TODO: We are purposefully not making the default the zero enum value, however
// we may want to consider this.
Order order = 4 [(buf.validate.field).enum.defined_only = true];
// The DigestType to use for Digests returned on Commits.
//
// If this DigestType is not available, an error is returned.
// Note that certain DigestTypes may be deprecated over time.
//
// If not set, the latest DigestType is used, currently B5.
DigestType digest_type = 5 [(buf.validate.field).enum.defined_only = true];
}

message ListLabelHistoryResponse {
Expand Down
8 changes: 0 additions & 8 deletions buf/registry/module/v1beta1/graph_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,18 @@ import "buf/validate/validate.proto";
option go_package = "buf.build/gen/go/bufbuild/registry/protocolbuffers/go/buf/registry/module/v1beta1";

// Get dependency graphs.
//
// See the package documentation for more details. You should likely use buf.registry.module.v1beta1
// and not this package.
service GraphService {
// Get a dependency graph that includes the given Commits.
//
// Commits will be resolved via the given ResourceRefs, and all Commits will be included in the
// graph, along with their dependencies.
//
// A dependency graph is a directed acyclic graph.
//
// See the package documentation for more details. You should likely use buf.registry.module.v1beta1
// and not this package.
rpc GetGraph(GetGraphRequest) returns (GetGraphResponse) {
option idempotency_level = NO_SIDE_EFFECTS;
}
}

// See the package documentation for more details. You should likely use buf.registry.module.v1beta1
// and not this package.
message GetGraphRequest {
// The references to resolve to Commits to include in the graph.
//
Expand Down

0 comments on commit 2bbc844

Please sign in to comment.