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

build(deps): bump grpc from 1.62.2 to 1.69.0 #6596

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 12, 2024

Bumps grpc from 1.62.2 to 1.69.0.
Updates io.grpc:grpc-android from 1.62.2 to 1.69.0

Release notes

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

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

Updates io.grpc:grpc-okhttp from 1.62.2 to 1.69.0

Release notes

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

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

Updates io.grpc:grpc-protobuf-lite from 1.62.2 to 1.69.0

Release notes

Sourced from io.grpc:grpc-protobuf-lite's releases.

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

Updates io.grpc:protoc-gen-grpc-java from 1.62.2 to 1.69.0

Release notes

Sourced from io.grpc:protoc-gen-grpc-java's releases.

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

Updates io.grpc:grpc-stub from 1.62.2 to 1.69.0

Release notes

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

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

Updates io.grpc:grpc-testing from 1.62.2 to 1.69.0

Release notes

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

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `grpc` from 1.62.2 to 1.69.0.

Updates `io.grpc:grpc-android` from 1.62.2 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.62.2...v1.69.0)

Updates `io.grpc:grpc-okhttp` from 1.62.2 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.62.2...v1.69.0)

Updates `io.grpc:grpc-protobuf-lite` from 1.62.2 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.62.2...v1.69.0)

Updates `io.grpc:protoc-gen-grpc-java` from 1.62.2 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.62.2...v1.69.0)

Updates `io.grpc:grpc-stub` from 1.62.2 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.62.2...v1.69.0)

Updates `io.grpc:grpc-testing` from 1.62.2 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.62.2...v1.69.0)

---
updated-dependencies:
- dependency-name: io.grpc:grpc-android
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-okhttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-protobuf-lite
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-stub
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-testing
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added External Dependency java Pull requests that update Java code labels Dec 12, 2024
Copy link
Contributor

github-actions bot commented Dec 12, 2024

📝 PRs merging into main branch

Our main branch should always be in a releasable state. If you are working on a larger change, or if you don't want this change to see the light of the day just yet, consider using a feature branch first, and only merge into the main branch when the code complete and ready to be released.

Copy link
Contributor

Test Results

 1 038 files  ±0   1 038 suites  ±0   34m 38s ⏱️ -10s
 5 874 tests ±0   5 852 ✅ ±0  22 💤 ±0  0 ❌ ±0 
11 833 runs  ±0  11 789 ✅ ±0  44 💤 ±0  0 ❌ ±0 

Results for commit eff7764. ± Comparison against base commit 7a82efd.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
External Dependency java Pull requests that update Java code size/XS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant