-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Revert 4c79b45386348459926176911cb6b35f6f53dcdc #3856
Conversation
WalkthroughThe changes encompass the removal of the Changes
Assessment against linked issues
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChat with CodeRabbit Bot (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 5
Configuration used: CodeRabbit UI
Files ignored due to filter (14)
- examples/internal/clients/echo/api/swagger.yaml
- examples/internal/clients/unannotatedecho/api/swagger.yaml
- examples/internal/helloworld/helloworld.pb.gw.go
- examples/internal/proto/examplepb/a_bit_of_everything.pb.gw.go
- examples/internal/proto/examplepb/echo_service.pb.go
- examples/internal/proto/examplepb/echo_service.pb.gw.go
- examples/internal/proto/examplepb/echo_service.swagger.json
- examples/internal/proto/examplepb/flow_combination.pb.gw.go
- examples/internal/proto/examplepb/non_standard_names.pb.gw.go
- examples/internal/proto/examplepb/unannotated_echo_service.pb.go
- examples/internal/proto/examplepb/unannotated_echo_service.pb.gw.go
- examples/internal/proto/examplepb/unannotated_echo_service.swagger.json
- examples/internal/proto/examplepb/visibility_rule_echo_service.pb.gw.go
- examples/internal/proto/standalone/unannotated_echo_service.pb.gw.go
Files selected for processing (8)
- examples/internal/clients/echo/api_echo_service.go (25 hunks)
- examples/internal/clients/echo/model_examplepb_simple_message.go (1 hunks)
- examples/internal/clients/unannotatedecho/api_unannotated_echo_service.go (9 hunks)
- examples/internal/clients/unannotatedecho/model_examplepb_unannotated_simple_message.go (1 hunks)
- examples/internal/integration/integration_test.go (3 hunks)
- examples/internal/proto/examplepb/echo_service.proto (3 hunks)
- examples/internal/proto/examplepb/unannotated_echo_service.proto (1 hunks)
- protoc-gen-grpc-gateway/internal/gengateway/template.go (1 hunks)
Files skipped from review due to trivial changes (4)
- examples/internal/clients/echo/model_examplepb_simple_message.go
- examples/internal/clients/unannotatedecho/api_unannotated_echo_service.go
- examples/internal/clients/unannotatedecho/model_examplepb_unannotated_simple_message.go
- examples/internal/proto/examplepb/unannotated_echo_service.proto
Additional comments: 17
examples/internal/proto/examplepb/echo_service.proto (3)
- 34-37: The removal of the
resource_id
field from theSimpleMessage
message is consistent with the PR's objective to revert a previous change that introduced a regression. Ensure that this field is not referenced anywhere else in the codebase.Verification successful
The search for references to the
resource_id
field in.proto
files did not yield any results. This suggests that theresource_id
field is not referenced in any.proto
files in the codebase, which aligns with the PR's objective to remove this field.* 61-65: The changes to the `additional_bindings` in the `EchoService` service reflect the removal of the `resource_id` field. Verify that the new bindings are correctly implemented and do not conflict with existing API routes.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Search for references to the removed `resource_id` field in the proto files. rg --type proto 'resource_id'Length of output: 59
Script:
#!/bin/bash # Search for references to the removed `resource_id` field in .proto files. rg 'resource_id' --glob '*.proto'Length of output: 33
Verification successful
The search results show various
additional_bindings
across different.proto
files. The bindings inecho_service.proto
do not seem to conflict with each other or with those in other files such asflow_combination.proto
anda_bit_of_everything.proto
. There are no overlapping paths that would suggest a conflict with the new bindings.Based on the information provided, there are no apparent conflicts with the new
additional_bindings
in theecho_service.proto
file. The changes seem to be correctly implemented with respect to the removal of theresource_id
field and the update of the API routes.* 72-76: The `EchoBody` method's `additional_bindings` have been updated. Confirm that the new binding for the `PUT` method on `/v1/example/echo_body/{id}` with the body mapped to the `no` field is intended and that the `no` field is properly defined and used within the service.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Search for potential conflicts with the new additional_bindings in the proto files. rg --type proto 'additional_bindings'Length of output: 67
Script:
#!/bin/bash # Search for potential conflicts with the new additional_bindings in all .proto files. rg 'additional_bindings' --glob '*.proto'Length of output: 3601
protoc-gen-grpc-gateway/internal/gengateway/template.go (1)
- 69-76: The logic for constructing the
seqs
slice in theQueryParamFilter
function seems correct. It appends the field paths of the body and path parameters, splitting them by "." to handle nested fields. This is consistent with the expected behavior for handling query parameters in the grpc-gateway.examples/internal/clients/echo/api_echo_service.go (10)
- 58-58: The
EchoServiceEcho
function signature has been modified to remove theResourceId
parameter. Confirm that all calls to this function have been updated to reflect this change.Verification successful
The search results from
ripgrep
show multiple occurrences ofEchoServiceEcho
and related functions. The specific call toEchoServiceEcho
inclient_test.go
does not include aResourceId
parameter, which aligns with the updated function signature. The other references toEchoServiceEcho
and similar functions in various files also do not show aResourceId
parameter being passed.Based on the provided output, it appears that all calls to the
EchoServiceEcho
function have been updated to reflect the change in the function signature, with no remaining references to aResourceId
parameter.Therefore, the review comment regarding the removal of the
ResourceId
parameter and the need to confirm that all calls to theEchoServiceEcho
function have been updated is consistent with the codebase.* 96-98: The addition of the `NoNote` query parameter in the `EchoServiceEcho` function should be verified for correct implementation and usage across the codebase.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Search for any remaining references to the old function signature with the `ResourceId` parameter. ast-grep --lang go --pattern $'EchoServiceEcho($_, $_, $_)'Length of output: 60
Script:
#!/bin/bash # Search for calls to EchoServiceEcho with two arguments to ensure the second argument is not a struct containing ResourceId. ast-grep --lang go --pattern $'EchoServiceEcho($_, $_)'Length of output: 56
Script:
#!/bin/bash # Search for any occurrence of EchoServiceEcho to confirm it is being used correctly without the ResourceId parameter. rg 'EchoServiceEcho' --goLength of output: 454
Script:
#!/bin/bash # Correcting the previous script to search for any occurrence of EchoServiceEcho without specifying a language flag. rg 'EchoServiceEcho'Length of output: 7758
Verification successful
The
NoNote
query parameter is correctly implemented in theEchoServiceEcho
function, as indicated by the search results showing the parameter being added tolocalVarQueryParams
with the appropriate value conversion.
* 238-240: The `NoNote` query parameter addition in the `EchoServiceEcho2` function should be verified for correct implementation and usage across the codebase.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check for correct implementation of the `NoNote` parameter in the EchoServiceEcho function. ast-grep --lang go --pattern $'EchoServiceEcho($_, $_, $_) { $$$ localVarQueryParams.Add("no.note", $_) $$$ }'Length of output: 624
Script:
#!/bin/bash # Check for correct implementation of the `NoNote` parameter in the EchoServiceEcho function. ast-grep --lang go --pattern $'func ($_ EchoServiceEcho)($_, $_, $_) { $$$ if $_ { $_.Add("no.note", $_) } $$$ }'Length of output: 126
Script:
#!/bin/bash # Check for the usage of `NoNote` parameter in the EchoServiceEcho function. ast-grep --lang go --pattern $'func ($_ EchoServiceEcho)($$$) { $$$ localVarQueryParams.Add("no.note", $_) $$$ }'Length of output: 120
Script:
#!/bin/bash # Search for the usage of `NoNote` parameter in the EchoServiceEcho function using ripgrep. rg "localVarQueryParams.Add\(\"no.note\","Length of output: 1271
327-329: The
En
,NoProgress
, andNoNote
parameters have been added to theEchoServiceEcho3Opts
struct. Verify that these additions are properly documented and used consistently.377-379: The
NoNote
query parameter addition in theEchoServiceEcho3
function should be verified for correct implementation and usage across the codebase.Verification successful
The
ast-grep
search successfully located theEchoServiceEcho3
function within theapi_echo_service.go
file. The function includes logic to add theNoNote
query parameter if it is set within thelocalVarOptionals
:if localVarOptionals != nil && localVarOptionals.NoNote.IsSet() { localVarQueryParams.Add("no.note", parameterToString(localVarOptionals.NoNote.Value(), "")) }This confirms that the
NoNote
query parameter is being handled correctly within theEchoServiceEcho3
function. The review comment asking to verify the correct implementation and usage of theNoNote
query parameter in theEchoServiceEcho3
function is consistent with the codebase.* 511-513: The `NoProgress` query parameter addition in the `EchoServiceEcho4` function should be verified for correct implementation and usage across the codebase.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check for correct implementation of the `NoNote` parameter in the EchoServiceEcho3 function. ast-grep --lang go --pattern $'EchoServiceEcho3($_, $_, $_, $_, $_) { $$$ localVarQueryParams.Add("no.note", $_) $$$ }'Length of output: 642
Script:
#!/bin/bash # Refine the ast-grep pattern to correctly match the EchoServiceEcho3 function in Go. ast-grep --lang go --pattern $'func ($_ *EchoServiceApiService) EchoServiceEcho3($_, $_, $_, $_, $_) { $$$ localVarQueryParams.Add("no.note", $_) $$$ }'Length of output: 159
Script:
#!/bin/bash # Search for the EchoServiceEcho3 function definition to confirm its existence and structure. ast-grep --lang go --pattern $'func ($_ *EchoServiceApiService) EchoServiceEcho3($$$)'Length of output: 10837
Verification successful
I will attempt to correct the ast-grep pattern to properly match the
EchoServiceEcho4
function and the usage of theNoProgress
parameter within it.
I will use the
rg
command to search for the usage ofNoProgress
within theEchoServiceEcho4
function to verify its correct implementation.
I will perform a broader search for the
NoProgress
parameter across the entire codebase to gather more information about its usage.
The search results indicate that the
NoProgress
parameter is indeed used in the codebase, specifically within theapi_unannotated_echo_service.go
andapi_echo_service.go
files. It is referenced as an optional query parameter that is set and added tolocalVarQueryParams
. The usage pattern is consistent across multiple functions within these files.Based on the information provided by the search results, the
NoProgress
parameter is implemented correctly in the context of theapi_echo_service.go
file, as it is checked for being set and then added to the query parameters. This aligns with the review comment that asked for verification of the correct implementation and usage of theNoProgress
query parameter in theEchoServiceEcho4
function.Given the consistency of the implementation across various functions and the presence of the parameter in the
swagger.yaml
files, it can be inferred that theNoProgress
parameter is likely to be correctly implemented.* 651-653: The `NoProgress` query parameter addition in the `EchoServiceEcho5` function should be verified for correct implementation and usage across the codebase.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check for correct implementation of the `NoProgress` parameter in the EchoServiceEcho4 function. ast-grep --lang go --pattern $'EchoServiceEcho4($_, $_, $_, $_, $_) { $$$ localVarQueryParams.Add("no.progress", $_) $$$ }'Length of output: 650
Script:
#!/bin/bash # Check for correct implementation of the `NoProgress` parameter in the EchoServiceEcho4 function. ast-grep --lang go --pattern $'func ($_ *EchoServiceApiService) EchoServiceEcho4($$$) { $$$ localVarQueryParams.Add("no.progress", $_) $$$ }'Length of output: 148
Script:
#!/bin/bash # Search for the usage of `NoProgress` within the `EchoServiceEcho4` function. rg 'func .*EchoServiceEcho4' -A 10 | rg 'NoProgress'Length of output: 52
Script:
#!/bin/bash # Search for the usage of `NoProgress` across the entire codebase. rg 'NoProgress'Length of output: 5734
976-978: The
En
,NoProgress
, andNoNote
parameters have been added to theEchoServiceEchoDeleteOpts
struct. Verify that these additions are properly documented and used consistently.1035-1037: The
NoNote
query parameter addition in theEchoServiceEchoDelete
function should be verified for correct implementation and usage across the codebase.Verification successful
The search results show that the
NoNote
parameter is used consistently across various functions in theapi_unannotated_echo_service.go
andapi_echo_service.go
files. It is defined as an optional string parameter in the option structs for different service methods (EchoServiceEchoOpts
,EchoServiceEcho2Opts
,EchoServiceEchoDeleteOpts
, etc.) and is added to the query parameters if it is set.Additionally, the
swagger.yaml
files for both the annotated and unannotated echo services include theNoNote
parameter as a query parameter, which is not required and is of type string.Based on the search results, the
NoNote
query parameter addition in theEchoServiceEchoDelete
function and its usage across the codebase appears to be correctly implemented.* 1282-1284: The `NoNote` query parameter addition in the `EchoServiceEchoUnauthorized` function should be verified for correct implementation and usage across the codebase.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check for correct implementation of the `NoNote` parameter in the EchoServiceEchoDelete function. ast-grep --lang go --pattern $'EchoServiceEchoDelete($_) { $$$ localVarQueryParams.Add("no.note", $_) $$$ }'Length of output: 620
Script:
#!/bin/bash # Refine the ast-grep pattern to match the EchoServiceEchoDelete function and its usage of the NoNote parameter. ast-grep --lang go --pattern $'func ($_ *EchoServiceApiService) EchoServiceEchoDelete($_) { $$$ if $_ != nil && $_.NoNote.IsSet() { $_.Add("no.note", $_($_.NoNote.Value(), "")) } $$$ }'Length of output: 198
Script:
#!/bin/bash # Use ripgrep to search for the usage of `NoNote` within the `EchoServiceEchoDelete` function across the codebase. rg "NoNote" --context 5Length of output: 34778
examples/internal/integration/integration_test.go (3)
- 46-56: The removal of
testEchoPathParamOverwrite
andtestEchoBodyParamOverwrite
functions is consistent with the PR objectives. However, ensure that the removal of these tests does not reduce coverage for other features that are not related to theResourceId
field.Verification successful
The search for references to
testEchoPathParamOverwrite
andtestEchoBodyParamOverwrite
in the Go files did not yield any results. This suggests that these functions are not called or referenced elsewhere in the Go codebase, which implies that their removal is unlikely to affect other features outside of the scope of theResourceId
field.Based on the information provided:
- : The removal of
testEchoPathParamOverwrite
andtestEchoBodyParamOverwrite
functions seems to be isolated and does not appear to impact other features in the codebase.* 353-353: The `ResourceId` field has been removed from the `sent` message in the `testEchoBody` function. Confirm that this field is no longer required and that the test still behaves as expected.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Verify that the removed tests do not affect other features. rg --type go "testEchoPathParamOverwrite|testEchoBodyParamOverwrite"Length of output: 70
- 418-420: The
TestABE
function is an entry point for multiple sub-tests. Ensure that the removal of theResourceId
field does not affect these sub-tests.Verification successful
The output from the shell script indicates that there are several test functions related to
TestABE
in theintegration_test.go
file. The functions listed areTestABE
,TestABEPatch
, andTestABEPatchBody
. However, the output does not provide information on whether the removal of theResourceId
field affects these sub-tests.To verify if the
ResourceId
field removal affects these sub-tests, we need to check the contents of these functions to see if they reference theResourceId
field.
The absence of output from the search for the
ResourceId
field within theintegration_test.go
file suggests that theResourceId
field is not referenced in the sub-tests related toTestABE
. This implies that the removal of theResourceId
field should not affect these sub-tests.Based on the information gathered, it can be concluded that the sub-tests within
TestABE
are not affected by the removal of theResourceId
field.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Verify that sub-tests within TestABE are not affected by the removal of the ResourceId field. rg --type go "TestABE"Length of output: 529
Script:
#!/bin/bash # Check if the sub-tests related to TestABE reference the ResourceId field. rg --type go "ResourceId" examples/internal/integration/integration_test.goLength of output: 75
* @param "En" (optional.String) - | ||
* @param "NoProgress" (optional.String) - | ||
* @param "NoNote" (optional.String) - | ||
* @param "ResourceId" (optional.String) - | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The EchoServiceEchoOpts
struct does exist in the codebase, as confirmed by the rg
command output. However, the previous ast-grep
searches did not find the specific pattern including the En
, NoProgress
, and NoNote
parameters within this struct, which suggests that these parameters might not be present or the pattern used did not match.
Given this information, the review comment stating that the parameters En
, NoProgress
, and NoNote
have been added to the EchoServiceEchoOpts
struct cannot be verified as correct based on the current evidence. It is possible that the parameters are not documented or used consistently, or they may not exist at all in the way described by the review comment.
- The documentation search did not yield relevant results for the parameters
En
,NoProgress
, andNoNote
. - The
ast-grep
search did not find these parameters in theEchoServiceEchoOpts
struct. - The
rg
search confirmed the existence of theEchoServiceEchoOpts
struct but did not provide details on the presence of the new parameters.
Given the lack of evidence for the addition of these parameters, the review comment is not supported by the current findings.
Analysis chain
The parameters En
, NoProgress
, and NoNote
have been added to the EchoServiceEchoOpts
struct. Ensure that these new parameters are documented and that their usage is consistent with the rest of the codebase.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Verify that the new parameters are documented in the project's documentation.
rg --type md "En|NoProgress|NoNote" ./docs
# Check for consistent usage of the new parameters in the codebase.
ast-grep --lang go --pattern $'EchoServiceEchoOpts {
$$$
En: $_,
NoProgress: $_,
NoNote: $_
$$$
}'
Length of output: 2589
Script:
#!/bin/bash
# Search for the EchoServiceEchoOpts struct definition to verify its existence and current structure.
ast-grep --lang go --pattern $'EchoServiceEchoOpts {
$$$
}'
Length of output: 62
Script:
#!/bin/bash
# Use ripgrep to search for the EchoServiceEchoOpts struct in the codebase.
rg "EchoServiceEchoOpts" --type go
Length of output: 1037
* @param "En" (optional.String) - | ||
* @param "NoProgress" (optional.String) - | ||
* @param "NoNote" (optional.String) - |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The review comment cannot be verified as correct because the ast-grep
command did not find any occurrences of EchoServiceEcho2Opts
with the fields En
, NoProgress
, and NoNote
. Additionally, the rg
command found unrelated mentions of these terms in the documentation. Therefore, it seems that the parameters mentioned in the review comment are not present in the EchoServiceEcho2Opts
struct, nor are they documented as part of it.
Analysis chain
The En
, NoProgress
, and NoNote
parameters have been added to the EchoServiceEcho2Opts
struct. Verify that these additions are properly documented and used consistently.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Ensure that the new parameters are documented in the project's documentation.
rg --type md "En|NoProgress|NoNote" ./docs
# Check for consistent usage of the new parameters in the codebase.
ast-grep --lang go --pattern $'EchoServiceEcho2Opts {
$$$
En: $_,
NoProgress: $_,
NoNote: $_
$$$
}'
Length of output: 2590
* @param "StatusProgress" (optional.String) - | ||
* @param "En" (optional.String) - | ||
* @param "NoProgress" (optional.String) - |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The script output confirms the presence of the StatusProgress
, En
, and NoProgress
parameters within the EchoServiceEcho4Opts
struct in the api_echo_service.go
file. This aligns with the review comment stating that these parameters have been added to the struct.
However, the ast-grep
command did not find any usage of these parameters in the codebase, which could indicate that they are not being used consistently or at all. This discrepancy suggests that while the parameters have been added to the struct, their implementation in the codebase may not be complete or properly documented.
Based on the new context:
- The parameters
StatusProgress
,En
, andNoProgress
are indeed present in theEchoServiceEcho4Opts
struct. - The documentation search did not yield relevant results for these parameters, indicating a potential lack of proper documentation.
- The
ast-grep
search did not find usage of these parameters, suggesting they might not be used consistently in the codebase.
Given these findings, the review comment is partially correct in stating that the parameters have been added, but there may be issues with documentation and consistent usage in the codebase.
Analysis chain
The StatusProgress
, En
, and NoProgress
parameters have been added to the EchoServiceEcho4Opts
struct. Verify that these additions are properly documented and used consistently.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Ensure that the new parameters are documented in the project's documentation.
rg --type md "StatusProgress|En|NoProgress" ./docs
# Check for consistent usage of the new parameters in the codebase.
ast-grep --lang go --pattern $'EchoServiceEcho4Opts {
$$$
StatusProgress: $_,
En: $_,
NoProgress: $_
$$$
}'
Length of output: 2606
Script:
#!/bin/bash
# Check the actual definition of the EchoServiceEcho4Opts struct in the api_echo_service.go file.
rg "EchoServiceEcho4Opts" -A 10 examples/internal/clients/echo/api_echo_service.go
Length of output: 1096
* @param "StatusProgress" (optional.String) - | ||
* @param "En" (optional.String) - | ||
* @param "NoProgress" (optional.String) - |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The review comment mentions that the parameters StatusProgress
, En
, and NoProgress
have been added to the EchoServiceEcho5Opts
struct and should be verified for proper documentation and consistent usage.
The search in the documentation (./docs
) did not yield any results for these parameters, suggesting they may not be documented there. The ast-grep
command did not find any occurrences of EchoServiceEcho5Opts
with the fields StatusProgress
, En
, and NoProgress
in the Go codebase, indicating that these parameters are not used in the EchoServiceEcho5Opts
struct.
The additional search in the entire codebase with rg
found several instances of Encoding: map[string]int{...}
in various Go files, but none of these instances are related to the parameters in question.
Based on the provided information, it appears that the review comment about the addition of the parameters StatusProgress
, En
, and NoProgress
to the EchoServiceEcho5Opts
struct may not be accurate, as there is no evidence of their usage or documentation in the codebase.
Analysis chain
The StatusProgress
, En
, and NoProgress
parameters have been added to the EchoServiceEcho5Opts
struct. Verify that these additions are properly documented and used consistently.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Ensure that the new parameters are documented in the project's documentation.
rg --type md "StatusProgress|En|NoProgress" ./docs
# Check for consistent usage of the new parameters in the codebase.
ast-grep --lang go --pattern $'EchoServiceEcho5Opts {
$$$
StatusProgress: $_,
En: $_,
NoProgress: $_
$$$
}'
Length of output: 2606
Script:
#!/bin/bash
# Search for usage of the new parameters in the entire codebase, not just in the EchoServiceEcho5Opts struct.
rg "StatusProgress|En|NoProgress" --type go
Length of output: 337754
* @param "En" (optional.String) - | ||
* @param "NoProgress" (optional.String) - | ||
* @param "NoNote" (optional.String) - |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The search in the documentation did not yield any results specifically documenting the En
, NoProgress
, or NoNote
parameters. The search results show unrelated mentions of "Envoy", "Environment", and other words containing "En", but nothing relevant to the parameters in question.
The ast-grep
command did not return any output, which suggests that the EchoServiceEchoUnauthorizedOpts
struct with the fields En
, NoProgress
, and NoNote
is not present in the codebase or not used in the way specified in the pattern.
Based on the information provided:
- The new parameters
En
,NoProgress
, andNoNote
are not documented in the project's documentation. - There is no evidence of consistent usage of the new parameters in the codebase.
Analysis chain
The En
, NoProgress
, and NoNote
parameters have been added to the EchoServiceEchoUnauthorizedOpts
struct. Verify that these additions are properly documented and used consistently.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Ensure that the new parameters are documented in the project's documentation.
rg --type md "En|NoProgress|NoNote" ./docs
# Check for consistent usage of the new parameters in the codebase.
ast-grep --lang go --pattern $'EchoServiceEchoUnauthorizedOpts {
$$$
En: $_,
NoProgress: $_,
NoNote: $_
$$$
}'
Length of output: 2601
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) | `v1.49.13` -> `v1.49.16` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.49.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.49.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.49.13/v1.49.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.49.13/v1.49.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/cerbos/cloud-api](https://togithub.com/cerbos/cloud-api) | `v0.1.13` -> `v0.1.14` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcloud-api/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcloud-api/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcloud-api/v0.1.13/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcloud-api/v0.1.13/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway) | `v2.18.1` -> `v2.19.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [github.com/pterm/pterm](https://togithub.com/pterm/pterm) | `v0.12.73` -> `v0.12.74` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fpterm%2fpterm/v0.12.74?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fpterm%2fpterm/v0.12.74?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fpterm%2fpterm/v0.12.73/v0.12.74?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fpterm%2fpterm/v0.12.73/v0.12.74?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | golang.org/x/exp | `02704c9` -> `be819d1` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fexp/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fexp/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fexp/v0.0.0-20231226003508-02704c960a9b/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fexp/v0.0.0-20231226003508-02704c960a9b/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | digest | | golang.org/x/sync | `v0.5.0` -> `v0.6.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsync/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsync/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsync/v0.5.0/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsync/v0.5.0/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [google.golang.org/genproto/googleapis/api](https://togithub.com/googleapis/go-genproto) | `995d672` -> `50ed04b` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20231212172506-995d672761c0/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20231212172506-995d672761c0/?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | digest | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>aws/aws-sdk-go (github.com/aws/aws-sdk-go)</summary> ### [`v1.49.16`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14916-2024-01-05) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.15...v1.49.16) \=== ##### Service Client Updates - `service/connect`: Updates service API - `service/kms`: Updates service documentation - Documentation updates for AWS Key Management Service (KMS). - `service/redshift-serverless`: Updates service documentation ##### SDK Bugs - The logging behavior in `aws/ec2metadata/token_provider.go` was updated: warnings about falling back to IMDSv1 are now logged only when LogLevel is set to `LogDebugWithDeprecated`. - This change prevents unnecessary warnings when LogLevel is set to suppress messages. ### [`v1.49.15`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14915-2024-01-04) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.14...v1.49.15) \=== ##### Service Client Updates - `service/config`: Updates service API and documentation - `service/docdb`: Updates service API and documentation - Adding PerformanceInsightsEnabled and PerformanceInsightsKMSKeyId fields to DescribeDBInstances Response. - `service/ecs`: Updates service API and documentation - This release adds support for managed instance draining which facilitates graceful termination of Amazon ECS instances. - `service/es`: Updates service API and documentation - This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints. - `service/lightsail`: Updates service API and documentation - This release adds support to set up an HTTPS endpoint on an instance. - `service/opensearch`: Updates service API and documentation - `service/sagemaker`: Updates service API and documentation - Adding support for provisioned throughput mode for SageMaker Feature Groups - `service/servicecatalog`: Updates service API and documentation - Added Idempotency token support to Service Catalog AssociateServiceActionWithProvisioningArtifact, DisassociateServiceActionFromProvisioningArtifact, DeleteServiceAction API ### [`v1.49.14`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14914-2024-01-03) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.13...v1.49.14) \=== ##### Service Client Updates - `service/connect`: Updates service API and documentation - `service/mediaconvert`: Updates service API and documentation - This release includes video engine updates including HEVC improvements, support for ingesting VP9 encoded video in MP4 containers, and support for user-specified 3D LUTs. </details> <details> <summary>cerbos/cloud-api (github.com/cerbos/cloud-api)</summary> ### [`v0.1.14`](https://togithub.com/cerbos/cloud-api/compare/v0.1.13...v0.1.14) [Compare Source](https://togithub.com/cerbos/cloud-api/compare/v0.1.13...v0.1.14) </details> <details> <summary>grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)</summary> ### [`v2.19.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.19.0) [Compare Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.18.1...v2.19.0) ##### What's Changed - fix: use req.Body instead of IOReaderFactory when possible by [@​leungster](https://togithub.com/leungster) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - runtime: Add outgoing trailer matching by [@​adriansmares](https://togithub.com/adriansmares) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - Add openapiv2\_opt support for passing values to go templates via cli by [@​500poundbear](https://togithub.com/500poundbear) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - \[Bug [#​3829](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/3829)] \[protoc-gen-openapiv2] consider openapiv2\_tag.name attribute when generating ope… by [@​omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - feat: partial message created as named definitions by [@​nkcr](https://togithub.com/nkcr) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) - Fix name tags in methods by [@​omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3843](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3843) - Revert [`4c79b45`](https://togithub.com/grpc-ecosystem/grpc-gateway/commit/4c79b45386348459926176911cb6b35f6f53dcdc) by [@​johanbrandhorst](https://togithub.com/johanbrandhorst) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3856](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3856) ##### New Contributors - [@​leungster](https://togithub.com/leungster) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - [@​adriansmares](https://togithub.com/adriansmares) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - [@​500poundbear](https://togithub.com/500poundbear) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - [@​omrikiei](https://togithub.com/omrikiei) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - [@​nkcr](https://togithub.com/nkcr) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) **Full Changelog**: grpc-ecosystem/grpc-gateway@v2.18.1...v2.19.0 </details> <details> <summary>pterm/pterm (github.com/pterm/pterm)</summary> ### [`v0.12.74`](https://togithub.com/pterm/pterm/releases/tag/v0.12.74) [Compare Source](https://togithub.com/pterm/pterm/compare/v0.12.73...v0.12.74) <!-- Release notes generated using configuration in .github/release.yml at master --> #### What's Changed ##### Exciting New Features 🎉 - feat: automatically inject more `CallerOffset` in `pterm.NewSlogHandler` by [@​MarvinJWendt](https://togithub.com/MarvinJWendt) in [https://github.com/pterm/pterm/pull/609](https://togithub.com/pterm/pterm/pull/609) ##### Other Changes - examples: fixed `interactive_multiselect` examples by [@​MarvinJWendt](https://togithub.com/MarvinJWendt) in [https://github.com/pterm/pterm/pull/606](https://togithub.com/pterm/pterm/pull/606) - ci(examples): demo is now always at the top by [@​MarvinJWendt](https://togithub.com/MarvinJWendt) in [https://github.com/pterm/pterm/pull/607](https://togithub.com/pterm/pterm/pull/607) **Full Changelog**: pterm/pterm@v0.12.73...v0.12.74 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/cerbos/cerbos). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Charith Ellawala <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Charith Ellawala <[email protected]>
… v2.19.0 (#30353) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway) | `v2.18.1` -> `v2.19.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)</summary> ### [`v2.19.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.19.0) [Compare Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.18.1...v2.19.0) #### What's Changed - fix: use req.Body instead of IOReaderFactory when possible by [@​leungster](https://togithub.com/leungster) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - runtime: Add outgoing trailer matching by [@​adriansmares](https://togithub.com/adriansmares) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - Add openapiv2\_opt support for passing values to go templates via cli by [@​500poundbear](https://togithub.com/500poundbear) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - \[Bug [#​3829](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/3829)] \[protoc-gen-openapiv2] consider openapiv2\_tag.name attribute when generating ope… by [@​omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - feat: partial message created as named definitions by [@​nkcr](https://togithub.com/nkcr) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) - Fix name tags in methods by [@​omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3843](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3843) - Revert [`4c79b45`](https://togithub.com/grpc-ecosystem/grpc-gateway/commit/4c79b45386348459926176911cb6b35f6f53dcdc) by [@​johanbrandhorst](https://togithub.com/johanbrandhorst) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3856](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3856) #### New Contributors - [@​leungster](https://togithub.com/leungster) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - [@​adriansmares](https://togithub.com/adriansmares) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - [@​500poundbear](https://togithub.com/500poundbear) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - [@​omrikiei](https://togithub.com/omrikiei) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - [@​nkcr](https://togithub.com/nkcr) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) **Full Changelog**: grpc-ecosystem/grpc-gateway@v2.18.1...v2.19.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway) | `v2.18.1` -> `v2.19.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [go](https://go.dev/) ([source](https://togithub.com/golang/go)) | `1.21.5` -> `1.21.6` | [![age](https://developer.mend.io/api/mc/badges/age/golang-version/go/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/golang-version/go/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/golang-version/go/1.21.5/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/golang-version/go/1.21.5/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | golang | patch | | [google.golang.org/protobuf](https://togithub.com/protocolbuffers/protobuf-go) | `v1.31.0` -> `v1.32.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fprotobuf/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fprotobuf/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fprotobuf/v1.31.0/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fprotobuf/v1.31.0/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | | All locks refreshed | [![age](https://developer.mend.io/api/mc/badges/age///?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption///?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility////?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence////?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | lockFileMaintenance | | [jekyll-feed](https://togithub.com/jekyll/jekyll-feed) | `0.15.1` -> `0.17.0` | [![age](https://developer.mend.io/api/mc/badges/age/rubygems/jekyll-feed/0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/jekyll-feed/0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/jekyll-feed/0.15.1/0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/jekyll-feed/0.15.1/0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | minor | --- ### Release Notes <details> <summary>grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)</summary> ### [`v2.19.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.19.0) [Compare Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.18.1...v2.19.0) #### What's Changed - fix: use req.Body instead of IOReaderFactory when possible by [@​leungster](https://togithub.com/leungster) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - runtime: Add outgoing trailer matching by [@​adriansmares](https://togithub.com/adriansmares) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - Add openapiv2\_opt support for passing values to go templates via cli by [@​500poundbear](https://togithub.com/500poundbear) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - \[Bug [#​3829](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/3829)] \[protoc-gen-openapiv2] consider openapiv2\_tag.name attribute when generating ope… by [@​omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - feat: partial message created as named definitions by [@​nkcr](https://togithub.com/nkcr) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) - Fix name tags in methods by [@​omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3843](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3843) - Revert [`4c79b45`](https://togithub.com/grpc-ecosystem/grpc-gateway/commit/4c79b45386348459926176911cb6b35f6f53dcdc) by [@​johanbrandhorst](https://togithub.com/johanbrandhorst) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3856](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3856) #### New Contributors - [@​leungster](https://togithub.com/leungster) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - [@​adriansmares](https://togithub.com/adriansmares) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - [@​500poundbear](https://togithub.com/500poundbear) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - [@​omrikiei](https://togithub.com/omrikiei) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - [@​nkcr](https://togithub.com/nkcr) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) **Full Changelog**: grpc-ecosystem/grpc-gateway@v2.18.1...v2.19.0 </details> <details> <summary>golang/go (go)</summary> ### [`v1.21.6`](https://togithub.com/golang/go/compare/go1.21.5...go1.21.6) </details> <details> <summary>protocolbuffers/protobuf-go (google.golang.org/protobuf)</summary> ### [`v1.32.0`](https://togithub.com/protocolbuffers/protobuf-go/releases/tag/v1.32.0) [Compare Source](https://togithub.com/protocolbuffers/protobuf-go/compare/v1.31.0...v1.32.0) **Full Changelog**: protocolbuffers/protobuf-go@v1.31.0...v1.32.0 This release contains commit protocolbuffers/protobuf-go@bfcd647, which fixes a denial of service vulnerability by preventing a stack overflow through a default maximum recursion limit. See [https://github.com/golang/protobuf/issues/1583](https://togithub.com/golang/protobuf/issues/1583) and [https://github.com/golang/protobuf/issues/1584](https://togithub.com/golang/protobuf/issues/1584) for details. </details> <details> <summary>jekyll/jekyll-feed (jekyll-feed)</summary> ### [`v0.17.0`](https://togithub.com/jekyll/jekyll-feed/blob/HEAD/History.markdown#0170--2022-10-14) [Compare Source](https://togithub.com/jekyll/jekyll-feed/compare/v0.16.0...v0.17.0) ##### Documentation - Update CI status badge ([#​363](https://togithub.com/jekyll/jekyll-feed/issues/363)) ##### Development Fixes - Add Ruby 3.1 to the CI matrix ([#​365](https://togithub.com/jekyll/jekyll-feed/issues/365)) ##### Minor Enhancements - Allow disabling of jekyll-feed while in development ([#​370](https://togithub.com/jekyll/jekyll-feed/issues/370)) ### [`v0.16.0`](https://togithub.com/jekyll/jekyll-feed/blob/HEAD/History.markdown#0160--2022-01-03) [Compare Source](https://togithub.com/jekyll/jekyll-feed/compare/v0.15.1...v0.16.0) ##### Minor Enhancements - Add support for `page.description` in front matter to become entry `<summary>` ([#​297](https://togithub.com/jekyll/jekyll-feed/issues/297)) ##### Bug Fixes - Fold private methods into the `:render` method as local variables ([#​327](https://togithub.com/jekyll/jekyll-feed/issues/327)) - Check `post.categories` instead of `post.category` ([#​357](https://togithub.com/jekyll/jekyll-feed/issues/357)) - Switched xml_escape for `<![CDATA[]]>` for post content ([#​332](https://togithub.com/jekyll/jekyll-feed/issues/332)) ##### Development Fixes - Add Ruby 3.0 to CI ([#​337](https://togithub.com/jekyll/jekyll-feed/issues/337)) - Lock RuboCop to v1.18.x ([#​348](https://togithub.com/jekyll/jekyll-feed/issues/348)) - Add workflow to release gem via GH Action ([#​355](https://togithub.com/jekyll/jekyll-feed/issues/355)) ##### Documentation - Use `.atom` extension in documented examples since we write an Atom feed ([#​359](https://togithub.com/jekyll/jekyll-feed/issues/359)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 6am on wednesday" in timezone Australia/Sydney, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/google/osv.dev). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
… v2.19.0 (open-telemetry#30353) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway) | `v2.18.1` -> `v2.19.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.18.1/v2.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)</summary> ### [`v2.19.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.19.0) [Compare Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.18.1...v2.19.0) #### What's Changed - fix: use req.Body instead of IOReaderFactory when possible by [@&open-telemetry#8203;leungster](https://togithub.com/leungster) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - runtime: Add outgoing trailer matching by [@&open-telemetry#8203;adriansmares](https://togithub.com/adriansmares) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - Add openapiv2\_opt support for passing values to go templates via cli by [@&open-telemetry#8203;500poundbear](https://togithub.com/500poundbear) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - \[Bug [#&open-telemetry#8203;3829](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/3829)] \[protoc-gen-openapiv2] consider openapiv2\_tag.name attribute when generating ope… by [@&open-telemetry#8203;omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - feat: partial message created as named definitions by [@&open-telemetry#8203;nkcr](https://togithub.com/nkcr) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) - Fix name tags in methods by [@&open-telemetry#8203;omrikiei](https://togithub.com/omrikiei) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3843](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3843) - Revert [`4c79b45`](https://togithub.com/grpc-ecosystem/grpc-gateway/commit/4c79b45386348459926176911cb6b35f6f53dcdc) by [@&open-telemetry#8203;johanbrandhorst](https://togithub.com/johanbrandhorst) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3856](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3856) #### New Contributors - [@&open-telemetry#8203;leungster](https://togithub.com/leungster) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3727](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3727) - [@&open-telemetry#8203;adriansmares](https://togithub.com/adriansmares) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3725](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3725) - [@&open-telemetry#8203;500poundbear](https://togithub.com/500poundbear) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3764](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3764) - [@&open-telemetry#8203;omrikiei](https://togithub.com/omrikiei) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3830](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3830) - [@&open-telemetry#8203;nkcr](https://togithub.com/nkcr) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3743](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3743) **Full Changelog**: grpc-ecosystem/grpc-gateway@v2.18.1...v2.19.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
Revert #3072 which introduced a regression in the
handling of nested query parameters.
Fixes #3848
Summary by CodeRabbit
Refactor
Tests
Documentation