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

Bump the load-gen-gradle-deps group in /load-generator with 6 updates #1514

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

Bumps the load-gen-gradle-deps group in /load-generator with 6 updates:

Package From To
io.grpc:grpc-bom 1.59.1 1.60.0
io.grpc:grpc-api 1.59.1 1.60.0
io.grpc:grpc-netty-shaded 1.59.1 1.60.0
io.opentelemetry:opentelemetry-bom 1.32.0 1.33.0
com.amazonaws:aws-xray-recorder-sdk-core 2.14.0 2.15.0
com.amazonaws:aws-xray-recorder-sdk-aws-sdk 2.14.0 2.15.0

Updates io.grpc:grpc-bom from 1.59.1 to 1.60.0

Release notes

Sourced from io.grpc:grpc-bom's releases.

v1.60.0

API Changes

  • api: Stabilize ForwardingServerBuilder, ForwardingChannelBuilder2, and ForwardingChannelBuilder. Note that ForwardingChannelBuilder is stabilized (no changes will be made to it), but immediately deprecated in favor of ForwardingChannelBuilder2. (#10586)
  • api: Deprecate ForwardingChannelBuilder.delegate(). De facto this deprecates the class itself, since all classes extending ForwardingChannelBuilder implement the delegate() method. See javadoc for details (#10587)
  • api: Changed recently-introduced LoadBalancer.acceptResolvedAddresses() to return Status instead of boolean (#10636). This is part of continued work to align the LB API cross-language and API stabilization
  • stub: Deprecate StreamObservers (#10654)
  • alts: AltsChannelBuilder now extends ForwardingChannelBuilder2 (#10587)
  • protobuf: Stabilize ProtoUtils.metadataMarshaller() (#10628)
  • protobuf-lite: ProtoLiteUtils experimental comment (#10627)

Behavior Changes

  • core: ManagedChannels now check the address types provided by the nameResolver (for the given target) with the address types supported by the channel transport and generate an error in case of mismatch. That dramatically improves the error message when an issue occurs
  • core: When a server stream is closed due to user's code (an uncaught exception in halfClosed, messagesAvailable, onReady callback of a ServerStream's listener), the Status.UNKNOWN returned to the client will have Application error processing RPC description. Previously the description was empty. This is helpful to differentiate between server errors originated in user application, gRPC library, or even those injected by a proxy. (#10643)
  • xds: Log ORCA UNIMPLEMENTED error to subchannel logger. This removes them from the normal application logs, reducing log spam

Improvements

  • Change the underlying implementations of RingHash, RoundRobin, WeightedRoundRobin and LeastRequest load balancers to utilize the pick first load balancer rather than directly manage subchannels. This should only be noticeable if it introduced a bug
  • core: Avoid flushing headers when the server returns a single response (#9314). This is a performance optimization to reduce the number of packets for non-streaming responses
  • util: Make grpc-core an implementation dependency. This will prevent the io.grpc.internal classes in grpc-core from being visible during compilation when depending on just grpc-util
  • netty: Implement Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.
  • netty: Add NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid Reset
  • netty: Disable huffman coding in headers (#10563). Huffman coding provides modest compression for relatively high CPU usage, especially within a data center. Rely just on the HPACK static and dynamic tables for compression, for higher performance. This only impacts header values 512 bytes or longer, as Netty already disabled Huffman for smaller values
  • alts: Improve handshake failure error message by propagating original exception (#10644)

Bug Fixes

  • util: Remove shutdown subchannels from OD tracking (#10683). This could have caused a memory leak on a long-lived channel. But we don’t think it could be triggered with our built-in load balancing policies.

Dependencies

  • Bump Netty to 4.1.100.Final

Acknowledgements

@​anthonyjpratti @​fedorka @​jpd236 @​mateusazis @​pkoenig10 @​yannickepstein @​amirhadadi

Commits
  • eb8b1d8 Bump version to 1.60.0
  • 5b1bb8c Update README etc to reference 1.60.0
  • 9400613 all: Add grpc-inprocess
  • 69114bf inprocess: Add missing anonymous address as supported
  • 24b3ca1 core: Detect NameResolverProviders passed as Factories
  • 6c55cd0 util: Remove shutdown subchannels from OD tracking (#10683)
  • 43e98d0 netty: Add option to limit RST_STREAM rate
  • 2b65e66 netty: disable huffman coding in headers (#10563)
  • 90e76a1 Implement Http2Headers.isEmpty (#10663)
  • 0299788 util: Make grpc-core an implementation dependency
  • Additional commits viewable in compare view

Updates io.grpc:grpc-api from 1.59.1 to 1.60.0

Release notes

Sourced from io.grpc:grpc-api's releases.

v1.60.0

API Changes

  • api: Stabilize ForwardingServerBuilder, ForwardingChannelBuilder2, and ForwardingChannelBuilder. Note that ForwardingChannelBuilder is stabilized (no changes will be made to it), but immediately deprecated in favor of ForwardingChannelBuilder2. (#10586)
  • api: Deprecate ForwardingChannelBuilder.delegate(). De facto this deprecates the class itself, since all classes extending ForwardingChannelBuilder implement the delegate() method. See javadoc for details (#10587)
  • api: Changed recently-introduced LoadBalancer.acceptResolvedAddresses() to return Status instead of boolean (#10636). This is part of continued work to align the LB API cross-language and API stabilization
  • stub: Deprecate StreamObservers (#10654)
  • alts: AltsChannelBuilder now extends ForwardingChannelBuilder2 (#10587)
  • protobuf: Stabilize ProtoUtils.metadataMarshaller() (#10628)
  • protobuf-lite: ProtoLiteUtils experimental comment (#10627)

Behavior Changes

  • core: ManagedChannels now check the address types provided by the nameResolver (for the given target) with the address types supported by the channel transport and generate an error in case of mismatch. That dramatically improves the error message when an issue occurs
  • core: When a server stream is closed due to user's code (an uncaught exception in halfClosed, messagesAvailable, onReady callback of a ServerStream's listener), the Status.UNKNOWN returned to the client will have Application error processing RPC description. Previously the description was empty. This is helpful to differentiate between server errors originated in user application, gRPC library, or even those injected by a proxy. (#10643)
  • xds: Log ORCA UNIMPLEMENTED error to subchannel logger. This removes them from the normal application logs, reducing log spam

Improvements

  • Change the underlying implementations of RingHash, RoundRobin, WeightedRoundRobin and LeastRequest load balancers to utilize the pick first load balancer rather than directly manage subchannels. This should only be noticeable if it introduced a bug
  • core: Avoid flushing headers when the server returns a single response (#9314). This is a performance optimization to reduce the number of packets for non-streaming responses
  • util: Make grpc-core an implementation dependency. This will prevent the io.grpc.internal classes in grpc-core from being visible during compilation when depending on just grpc-util
  • netty: Implement Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.
  • netty: Add NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid Reset
  • netty: Disable huffman coding in headers (#10563). Huffman coding provides modest compression for relatively high CPU usage, especially within a data center. Rely just on the HPACK static and dynamic tables for compression, for higher performance. This only impacts header values 512 bytes or longer, as Netty already disabled Huffman for smaller values
  • alts: Improve handshake failure error message by propagating original exception (#10644)

Bug Fixes

  • util: Remove shutdown subchannels from OD tracking (#10683). This could have caused a memory leak on a long-lived channel. But we don’t think it could be triggered with our built-in load balancing policies.

Dependencies

  • Bump Netty to 4.1.100.Final

Acknowledgements

@​anthonyjpratti @​fedorka @​jpd236 @​mateusazis @​pkoenig10 @​yannickepstein @​amirhadadi

Commits
  • eb8b1d8 Bump version to 1.60.0
  • 5b1bb8c Update README etc to reference 1.60.0
  • 9400613 all: Add grpc-inprocess
  • 69114bf inprocess: Add missing anonymous address as supported
  • 24b3ca1 core: Detect NameResolverProviders passed as Factories
  • 6c55cd0 util: Remove shutdown subchannels from OD tracking (#10683)
  • 43e98d0 netty: Add option to limit RST_STREAM rate
  • 2b65e66 netty: disable huffman coding in headers (#10563)
  • 90e76a1 Implement Http2Headers.isEmpty (#10663)
  • 0299788 util: Make grpc-core an implementation dependency
  • Additional commits viewable in compare view

Updates io.grpc:grpc-netty-shaded from 1.59.1 to 1.60.0

Release notes

Sourced from io.grpc:grpc-netty-shaded's releases.

v1.60.0

API Changes

  • api: Stabilize ForwardingServerBuilder, ForwardingChannelBuilder2, and ForwardingChannelBuilder. Note that ForwardingChannelBuilder is stabilized (no changes will be made to it), but immediately deprecated in favor of ForwardingChannelBuilder2. (#10586)
  • api: Deprecate ForwardingChannelBuilder.delegate(). De facto this deprecates the class itself, since all classes extending ForwardingChannelBuilder implement the delegate() method. See javadoc for details (#10587)
  • api: Changed recently-introduced LoadBalancer.acceptResolvedAddresses() to return Status instead of boolean (#10636). This is part of continued work to align the LB API cross-language and API stabilization
  • stub: Deprecate StreamObservers (#10654)
  • alts: AltsChannelBuilder now extends ForwardingChannelBuilder2 (#10587)
  • protobuf: Stabilize ProtoUtils.metadataMarshaller() (#10628)
  • protobuf-lite: ProtoLiteUtils experimental comment (#10627)

Behavior Changes

  • core: ManagedChannels now check the address types provided by the nameResolver (for the given target) with the address types supported by the channel transport and generate an error in case of mismatch. That dramatically improves the error message when an issue occurs
  • core: When a server stream is closed due to user's code (an uncaught exception in halfClosed, messagesAvailable, onReady callback of a ServerStream's listener), the Status.UNKNOWN returned to the client will have Application error processing RPC description. Previously the description was empty. This is helpful to differentiate between server errors originated in user application, gRPC library, or even those injected by a proxy. (#10643)
  • xds: Log ORCA UNIMPLEMENTED error to subchannel logger. This removes them from the normal application logs, reducing log spam

Improvements

  • Change the underlying implementations of RingHash, RoundRobin, WeightedRoundRobin and LeastRequest load balancers to utilize the pick first load balancer rather than directly manage subchannels. This should only be noticeable if it introduced a bug
  • core: Avoid flushing headers when the server returns a single response (#9314). This is a performance optimization to reduce the number of packets for non-streaming responses
  • util: Make grpc-core an implementation dependency. This will prevent the io.grpc.internal classes in grpc-core from being visible during compilation when depending on just grpc-util
  • netty: Implement Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.
  • netty: Add NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid Reset
  • netty: Disable huffman coding in headers (#10563). Huffman coding provides modest compression for relatively high CPU usage, especially within a data center. Rely just on the HPACK static and dynamic tables for compression, for higher performance. This only impacts header values 512 bytes or longer, as Netty already disabled Huffman for smaller values
  • alts: Improve handshake failure error message by propagating original exception (#10644)

Bug Fixes

  • util: Remove shutdown subchannels from OD tracking (#10683). This could have caused a memory leak on a long-lived channel. But we don’t think it could be triggered with our built-in load balancing policies.

Dependencies

  • Bump Netty to 4.1.100.Final

Acknowledgements

@​anthonyjpratti @​fedorka @​jpd236 @​mateusazis @​pkoenig10 @​yannickepstein @​amirhadadi

Commits
  • eb8b1d8 Bump version to 1.60.0
  • 5b1bb8c Update README etc to reference 1.60.0
  • 9400613 all: Add grpc-inprocess
  • 69114bf inprocess: Add missing anonymous address as supported
  • 24b3ca1 core: Detect NameResolverProviders passed as Factories
  • 6c55cd0 util: Remove shutdown subchannels from OD tracking (#10683)
  • 43e98d0 netty: Add option to limit RST_STREAM rate
  • 2b65e66 netty: disable huffman coding in headers (#10563)
  • 90e76a1 Implement Http2Headers.isEmpty (#10663)
  • 0299788 util: Make grpc-core an implementation dependency
  • Additional commits viewable in compare view

Updates io.opentelemetry:opentelemetry-bom from 1.32.0 to 1.33.0

Release notes

Sourced from io.opentelemetry:opentelemetry-bom's releases.

Version 1.33.0

API

  • Fix issue where wrapping "invalid" SpanContexts in Span does not preserve SpanContext (#6044)

Incubator

  • Refactor and add to ExtendedTracer, add ExtendedContextPropagators (#6017)
  • Base64 encode AnyValue bytes in string representation (#6003)

SDK

Exporters

  • Add connectTimeout configuration option OtlpHttp{Signal}Exporters (#5941)
  • Add ability for Otlp{Protocol}LogRecordExporter to serialize log body any value (#5938)
  • Android environments can now handle base64 encoded PEM keys, remove exception handling in TlsUtil#decodePem (#6034)
  • Add header supplier configuration option to OTLP exporters (#6004)

Extensions

  • Add autoconfigure option for customizing SpanProcessor, LogRecordProcessor (#5986)
  • Incubator allows for simpler creation of start-only and end-only SpanProcessors. (#5923)

Testing

  • Add hasAttributesSatisfying overload to AbstractPointAssert (#6048)

Project Tooling

  • Building animal sniffer signatures directly from android corelib (#5973)
  • Target kotlin 1.6 in kotlin extension (#5910)
  • Define language version compatibility requirements (#5983)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​anuraaga @​asafm @​breedx-splk @​chungngoops @​felixscheinost @​jack-berg @​jackshirazi @​jkwatson @​JonasKunz @​laurit @​LikeTheSalad

... (truncated)

Changelog

Sourced from io.opentelemetry:opentelemetry-bom's changelog.

Version 1.33.0 (2023-12-08)

API

  • Fix issue where wrapping "invalid" SpanContexts in Span does not preserve SpanContext (#6044)

Incubator

  • Refactor and add to ExtendedTracer, add ExtendedContextPropagators (#6017)
  • Base64 encode AnyValue bytes in string representation (#6003)

SDK

Exporters

  • Add connectTimeout configuration option OtlpHttp{Signal}Exporters (#5941)
  • Add ability for Otlp{Protocol}LogRecordExporter to serialize log body any value (#5938)
  • Android environments can now handle base64 encoded PEM keys, remove exception handling in TlsUtil#decodePem (#6034)
  • Add header supplier configuration option to OTLP exporters (#6004)

Extensions

  • Add autoconfigure option for customizing SpanProcessor, LogRecordProcessor (#5986)
  • Incubator allows for simpler creation of start-only and end-only SpanProcessors. (#5923)

Testing

  • Add hasAttributesSatisfying overload to AbstractPointAssert (#6048)

Project Tooling

  • Building animal sniffer signatures directly from android corelib (#5973)
  • Target kotlin 1.6 in kotlin extension (#5910)
  • Define language version compatibility requirements (#5983)
Commits
  • 977a000 [release/v1.33.x] Prepare release 1.33.0 (#6066)
  • 3a6613f Prepare for 1.33.0 release (#6065)
  • e90a6f6 Update dependency com.linecorp.armeria:armeria-bom to v1.26.4 (#6062)
  • 05db74f Update dependency org.owasp:dependency-check-gradle to v9.0.4 (#6064)
  • 4c60397 Add OTLP header supplier configuration option (#6004)
  • 9f3456f Issue 6037 - Wrapping "invalid" SpanContexts in Span does not preserve SpanCo...
  • 3bb221f add hasAttributesSatisfying overload to AbstractPointAssert (#6048)
  • f1fc1c7 Revert com.gradle.enterprise 3.16 upgrade (#6059)
  • 902d68c Add connectTimeout configuration option OtlpHttp{Signal}Exporters (#5941)
  • 2b33f9f Extended tracer (#6017)
  • Additional commits viewable in compare view

Updates com.amazonaws:aws-xray-recorder-sdk-core from 2.14.0 to 2.15.0

Release notes

Sourced from com.amazonaws:aws-xray-recorder-sdk-core's releases.

Release v2.15.0

Please refer change-log for details.

Changelog

Sourced from com.amazonaws:aws-xray-recorder-sdk-core's changelog.

2.15.0 - 2023-12-07

  • Remove usage of deprecated jackson property PR 391
  • Optimize default resolver chain construction PR 387
  • Refactored AWSXRayServletFilter - not to use deprecated method for strategy creation PR 386
  • Bumping grgit version PR 385
  • Use jackson to snake case for better performance PR 382
  • Thread safety PR 383
Commits

Updates com.amazonaws:aws-xray-recorder-sdk-aws-sdk from 2.14.0 to 2.15.0

Release notes

Sourced from com.amazonaws:aws-xray-recorder-sdk-aws-sdk's releases.

Release v2.15.0

Please refer change-log for details.

Changelog

Sourced from com.amazonaws:aws-xray-recorder-sdk-aws-sdk's changelog.

2.15.0 - 2023-12-07

  • Remove usage of deprecated jackson property PR 391
  • Optimize default resolver chain construction PR 387
  • Refactored AWSXRayServletFilter - not to use deprecated method for strategy creation PR 386
  • Bumping grgit version PR 385
  • Use jackson to snake case for better performance PR 382
  • Thread safety PR 383
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the load-gen-gradle-deps group in /load-generator with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [io.grpc:grpc-bom](https://github.com/grpc/grpc-java) | `1.59.1` | `1.60.0` |
| [io.grpc:grpc-api](https://github.com/grpc/grpc-java) | `1.59.1` | `1.60.0` |
| [io.grpc:grpc-netty-shaded](https://github.com/grpc/grpc-java) | `1.59.1` | `1.60.0` |
| [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) | `1.32.0` | `1.33.0` |
| [com.amazonaws:aws-xray-recorder-sdk-core](https://github.com/aws/aws-xray-sdk-java) | `2.14.0` | `2.15.0` |
| [com.amazonaws:aws-xray-recorder-sdk-aws-sdk](https://github.com/aws/aws-xray-sdk-java) | `2.14.0` | `2.15.0` |


Updates `io.grpc:grpc-bom` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.59.1...v1.60.0)

Updates `io.grpc:grpc-api` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.59.1...v1.60.0)

Updates `io.grpc:grpc-netty-shaded` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.59.1...v1.60.0)

Updates `io.opentelemetry:opentelemetry-bom` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-java/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-java@v1.32.0...v1.33.0)

Updates `com.amazonaws:aws-xray-recorder-sdk-core` from 2.14.0 to 2.15.0
- [Release notes](https://github.com/aws/aws-xray-sdk-java/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-java/blob/master/CHANGELOG.md)
- [Commits](aws/aws-xray-sdk-java@v2.14.0...v2.15.0)

Updates `com.amazonaws:aws-xray-recorder-sdk-aws-sdk` from 2.14.0 to 2.15.0
- [Release notes](https://github.com/aws/aws-xray-sdk-java/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-java/blob/master/CHANGELOG.md)
- [Commits](aws/aws-xray-sdk-java@v2.14.0...v2.15.0)

---
updated-dependencies:
- dependency-name: io.grpc:grpc-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: load-gen-gradle-deps
- dependency-name: io.grpc:grpc-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: load-gen-gradle-deps
- dependency-name: io.grpc:grpc-netty-shaded
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: load-gen-gradle-deps
- dependency-name: io.opentelemetry:opentelemetry-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: load-gen-gradle-deps
- dependency-name: com.amazonaws:aws-xray-recorder-sdk-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: load-gen-gradle-deps
- dependency-name: com.amazonaws:aws-xray-recorder-sdk-aws-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: load-gen-gradle-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner December 11, 2023 20:27
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 11, 2023
@humivo humivo merged commit 7df5ae6 into terraform Dec 13, 2023
10 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/load-generator/load-gen-gradle-deps-b45d31ddec branch December 13, 2023 19:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant