Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify that filters are additive #114

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buf/registry/module/v1/commit_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ message ListCommitsRequest {
//
// See the documentation on Ref for resource resolution details.
//
// Once the resource is resolved, the following Commits are listed:
// Once the resource is resolved, the following Commits are listed (subject to any additional filters in the request):
// - If a Module is referenced, all Commits for the Module are returned.
// - If a Label is referenced, the Commit the Label points to is returned.
// Use ListLabelHistory to get the history of Commits for a Label.
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/module/v1/label_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ message ListLabelsRequest {
//
// See the documentation on Ref for resource resolution details.
//
// Once the resource is resolved, the following Labels are listed:
// Once the resource is resolved, the following Labels are listed (subject to any additional filters in the request):
// - If a Module is referenced, all Labels for the Module are returned.
// - If a Label is referenced, this Label is returned.
// - If a Commit is referenced, all Labels that currently point to the Commit are returned. Note that
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/module/v1beta1/commit_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ message ListCommitsRequest {
//
// See the documentation on Ref for resource resolution details.
//
// Once the resource is resolved, the following Commits are listed:
// Once the resource is resolved, the following Commits are listed (subject to any additional filters in the request):
// - If a Module is referenced, all Commits for the Module are returned.
// - If a Label is referenced, the Commit the Label points to is returned.
// Use ListLabelHistory to get the history of Commits for a Label.
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/module/v1beta1/label_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ message ListLabelsRequest {
//
// See the documentation on Ref for resource resolution details.
//
// Once the resource is resolved, the following Labels are listed:
// Once the resource is resolved, the following Labels are listed (subject to any additional filters in the request):
// - If a Module is referenced, all Labels for the Module are returned.
// - If a Label is referenced, this Label is returned.
// - If a Commit is referenced, all Labels that currently point to the Commit are returned. Note that
Expand Down
Loading