chore(deps): bump the gradle group with 6 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(7 months ago)
(5 months ago)
(5 months ago)
dependencies java
Bumps the gradle group with 6 updates:
| Package | From | To |
|---|---|---|
| io.grpc:grpc-protobuf | 1.76.0 |
1.77.0 |
| io.grpc:grpc-stub | 1.76.0 |
1.77.0 |
| io.grpc:grpc-netty-shaded | 1.76.0 |
1.77.0 |
| com.google.protobuf:protobuf-java | 4.33.0 |
4.33.1 |
| com.google.protobuf:protobuf-java-util | 4.33.0 |
4.33.1 |
| com.google.api.grpc:proto-google-common-protos | 2.62.0 |
2.63.1 |
Updates io.grpc:grpc-protobuf from 1.76.0 to 1.77.0
Release notes
Sourced from io.grpc:grpc-protobuf's releases.
v1.77.0
API Changes
- binder: Remove experimental
BinderChannelBuilder.bindAsUser()method, deprecated since 1.69 (#12401) (f96ce0670)Bug Fixes
- api: Fix name resolver bridge listener handling for address resolution errors for custom name resolvers (#12441) (acbbf869a). This fixes regression introduced in v1.68.1 causing a “IllegalStateException: No value present.” exception
- core: Fix NullPointerException during address update with Happy Eyeballs (5e8af564e). This should not impact many people as the code is disabled by default, behind two experimental environment variables
- okhttp: Fix bidirectional keep-alive causing spurious GOAWAY (6fc3fd046). This fixes the grpc-okhttp server incorrectly closing the connection with
GOAWAY: too_many_pings- xds: SslContext updates handling when using system root certs (#12340) (63fdaaccc). Since
FileWatcherCertificateProviderisn't used when using system root trust store, the SslContext update for the handshake that depended on it wasn't happening. This fix creates a separateCertificateProviderfor handling system root certs that doesn't rely on theFileWatcherCertificateProvider.- xds: Make cluster selection interceptor run before other filters (#12381) (82f9b8ec0). This is needed when there is
GcpAuthenticationFilterin the filter chain to make available the cluster resource inCallOptions.- xds: Handle wildcards in DNS SAN exact matching (#12345) (5b876cc86)
- android: Fix UdsChannelBuilder with WiFi Proxy (349a35a9b)
- binder: Avoid potential deadlock when canceling AsyncSecurityPolicy futures (#12283) (4725ced99)
- binder: Fix a BinderServerTransport crash in the rare shutdown-before-start case (#12440) (91f3f4dc1)
Improvements
- Improve status messages by including causal error details in config parsing errors for outlier detection and xds’s wrr locality policies (86e8b5617)
- xds: Detect negative ref count for xds client (21696cd3d). A negative reference count could cause NullPointerExceptions, so when too many unrefs are detected it produces a SEVERE warning and prevents the reference count from going negative
- xds: Support deprecated xDS TLS fields for Istio compat (#12435) (53cd1a225). This fixes a regression with Istio introduced in v1.73.0. This gives time for Istio’s new xDS field support to roll out
- googleapis: Allow wrapping NameResolver to inject XdsClient (#12450) (27d150890). This allows googleapis to inject an xDS bootstrap to use with its channels even if one is already specified in the environment variable or system property. When the code was originally written there was a single global XdsClient, but since gRFC A71 Xds Fallback each target string has its own XdsClient and thus can have its own bootstrap
- alts: Allow overriding metadata server address with env variable (9ac12ef89) (498f717fc)
- binder: Let the server know when the client fails to authorize it. (#12445) (599a0a146) This avoids the server needing to wait for the handshake timeout before realizing the handshake failed
New Features
- opentelemetry: Implement otel retry metrics from gRFC A96 (#12064) (d380191be)
- opentelemetry: propagate baggage to server metrics for custom attributes (#12389) (155308db2)
- xds: Allow EC Keys in SPIFFE Bundle Map parsing (#12399) (559e3ba41)
- xds: Enable authority rewriting (gRFC A81), system root cert support (gRFC A82), GCP authentication filter (gRFC A83), and SNI (gRFC A101) (#12499) (246c2b1ea). Authority rewriting requires the control plane to be labeled
trusted_xds_serverin the bootstrap. System root cert support and SNI require using XdsChannelCredentials- rls: Add route lookup reason to request whether it is due to a cache miss or stale cache entry (#12442) (795ce0280)
Dependencies
- compiler: C++ protobuf used by codegen upgraded to 26.1 (#12330) (55aefd5b8)
- alts: Remove dep on grpclb (b769f966a). ALTS is no longer used with grpclb, so this removes dead code
- Upgrade netty to 4.1.127.Final (b37ee67cf)
Thanks to
@panchenko@benjaminp@HyunSangHan@becomeStar@ZachChuba@oliviamariacodes@kssumin@laz-canva
... (truncated)
Commits
251dfbbBump version to 1.77.05de8e93Update README etc to reference 1.77.0155308dopentelemetry: propagate baggage to metrics for custom attributes, helps with...efef0ddservlet: Ignore timeoutOnSleepingServer for Tomcat53cd1a2xds: Support deprecated xDS TLS fields for Istio compat (#12435)6fc3fd0okhttp: Fix bidirectional keep-alive causing spurious GO_AWAY498f717alts: Metadata server address modification to account for default port9ac12efalts: Override metadata server address with env variable246c2b1xds: Enable flags for CSM Cloud run gRPC Java (#12499)5e8af56core: Fix NPE during address update with Happy Eyeballs- Additional commits viewable in compare view
Updates io.grpc:grpc-stub from 1.76.0 to 1.77.0
Release notes
Sourced from io.grpc:grpc-stub's releases.
v1.77.0
API Changes
- binder: Remove experimental
BinderChannelBuilder.bindAsUser()method, deprecated since 1.69 (#12401) (f96ce0670)Bug Fixes
- api: Fix name resolver bridge listener handling for address resolution errors for custom name resolvers (#12441) (acbbf869a). This fixes regression introduced in v1.68.1 causing a “IllegalStateException: No value present.” exception
- core: Fix NullPointerException during address update with Happy Eyeballs (5e8af564e). This should not impact many people as the code is disabled by default, behind two experimental environment variables
- okhttp: Fix bidirectional keep-alive causing spurious GOAWAY (6fc3fd046). This fixes the grpc-okhttp server incorrectly closing the connection with
GOAWAY: too_many_pings- xds: SslContext updates handling when using system root certs (#12340) (63fdaaccc). Since
FileWatcherCertificateProviderisn't used when using system root trust store, the SslContext update for the handshake that depended on it wasn't happening. This fix creates a separateCertificateProviderfor handling system root certs that doesn't rely on theFileWatcherCertificateProvider.- xds: Make cluster selection interceptor run before other filters (#12381) (82f9b8ec0). This is needed when there is
GcpAuthenticationFilterin the filter chain to make available the cluster resource inCallOptions.- xds: Handle wildcards in DNS SAN exact matching (#12345) (5b876cc86)
- android: Fix UdsChannelBuilder with WiFi Proxy (349a35a9b)
- binder: Avoid potential deadlock when canceling AsyncSecurityPolicy futures (#12283) (4725ced99)
- binder: Fix a BinderServerTransport crash in the rare shutdown-before-start case (#12440) (91f3f4dc1)
Improvements
- Improve status messages by including causal error details in config parsing errors for outlier detection and xds’s wrr locality policies (86e8b5617)
- xds: Detect negative ref count for xds client (21696cd3d). A negative reference count could cause NullPointerExceptions, so when too many unrefs are detected it produces a SEVERE warning and prevents the reference count from going negative
- xds: Support deprecated xDS TLS fields for Istio compat (#12435) (53cd1a225). This fixes a regression with Istio introduced in v1.73.0. This gives time for Istio’s new xDS field support to roll out
- googleapis: Allow wrapping NameResolver to inject XdsClient (#12450) (27d150890). This allows googleapis to inject an xDS bootstrap to use with its channels even if one is already specified in the environment variable or system property. When the code was originally written there was a single global XdsClient, but since gRFC A71 Xds Fallback each target string has its own XdsClient and thus can have its own bootstrap
- alts: Allow overriding metadata server address with env variable (9ac12ef89) (498f717fc)
- binder: Let the server know when the client fails to authorize it. (#12445) (599a0a146) This avoids the server needing to wait for the handshake timeout before realizing the handshake failed
New Features
- opentelemetry: Implement otel retry metrics from gRFC A96 (#12064) (d380191be)
- opentelemetry: propagate baggage to server metrics for custom attributes (#12389) (155308db2)
- xds: Allow EC Keys in SPIFFE Bundle Map parsing (#12399) (559e3ba41)
- xds: Enable authority rewriting (gRFC A81), system root cert support (gRFC A82), GCP authentication filter (gRFC A83), and SNI (gRFC A101) (#12499) (246c2b1ea). Authority rewriting requires the control plane to be labeled
trusted_xds_serverin the bootstrap. System root cert support and SNI require using XdsChannelCredentials- rls: Add route lookup reason to request whether it is due to a cache miss or stale cache entry (#12442) (795ce0280)
Dependencies
- compiler: C++ protobuf used by codegen upgraded to 26.1 (#12330) (55aefd5b8)
- alts: Remove dep on grpclb (b769f966a). ALTS is no longer used with grpclb, so this removes dead code
- Upgrade netty to 4.1.127.Final (b37ee67cf)
Thanks to
@panchenko@benjaminp@HyunSangHan@becomeStar@ZachChuba@oliviamariacodes@kssumin@laz-canva
... (truncated)
Commits
251dfbbBump version to 1.77.05de8e93Update README etc to reference 1.77.0155308dopentelemetry: propagate baggage to metrics for custom attributes, helps with...efef0ddservlet: Ignore timeoutOnSleepingServer for Tomcat53cd1a2xds: Support deprecated xDS TLS fields for Istio compat (#12435)6fc3fd0okhttp: Fix bidirectional keep-alive causing spurious GO_AWAY498f717alts: Metadata server address modification to account for default port9ac12efalts: Override metadata server address with env variable246c2b1xds: Enable flags for CSM Cloud run gRPC Java (#12499)5e8af56core: Fix NPE during address update with Happy Eyeballs- Additional commits viewable in compare view
Updates io.grpc:grpc-netty-shaded from 1.76.0 to 1.77.0
Release notes
Sourced from io.grpc:grpc-netty-shaded's releases.
v1.77.0
API Changes
- binder: Remove experimental
BinderChannelBuilder.bindAsUser()method, deprecated since 1.69 (#12401) (f96ce0670)Bug Fixes
- api: Fix name resolver bridge listener handling for address resolution errors for custom name resolvers (#12441) (acbbf869a). This fixes regression introduced in v1.68.1 causing a “IllegalStateException: No value present.” exception
- core: Fix NullPointerException during address update with Happy Eyeballs (5e8af564e). This should not impact many people as the code is disabled by default, behind two experimental environment variables
- okhttp: Fix bidirectional keep-alive causing spurious GOAWAY (6fc3fd046). This fixes the grpc-okhttp server incorrectly closing the connection with
GOAWAY: too_many_pings- xds: SslContext updates handling when using system root certs (#12340) (63fdaaccc). Since
FileWatcherCertificateProviderisn't used when using system root trust store, the SslContext update for the handshake that depended on it wasn't happening. This fix creates a separateCertificateProviderfor handling system root certs that doesn't rely on theFileWatcherCertificateProvider.- xds: Make cluster selection interceptor run before other filters (#12381) (82f9b8ec0). This is needed when there is
GcpAuthenticationFilterin the filter chain to make available the cluster resource inCallOptions.- xds: Handle wildcards in DNS SAN exact matching (#12345) (5b876cc86)
- android: Fix UdsChannelBuilder with WiFi Proxy (349a35a9b)
- binder: Avoid potential deadlock when canceling AsyncSecurityPolicy futures (#12283) (4725ced99)
- binder: Fix a BinderServerTransport crash in the rare shutdown-before-start case (#12440) (91f3f4dc1)
Improvements
- Improve status messages by including causal error details in config parsing errors for outlier detection and xds’s wrr locality policies (86e8b5617)
- xds: Detect negative ref count for xds client (21696cd3d). A negative reference count could cause NullPointerExceptions, so when too many unrefs are detected it produces a SEVERE warning and prevents the reference count from going negative
- xds: Support deprecated xDS TLS fields for Istio compat (#12435) (53cd1a225). This fixes a regression with Istio introduced in v1.73.0. This gives time for Istio’s new xDS field support to roll out
- googleapis: Allow wrapping NameResolver to inject XdsClient (#12450) (27d150890). This allows googleapis to inject an xDS bootstrap to use with its channels even if one is already specified in the environment variable or system property. When the code was originally written there was a single global XdsClient, but since gRFC A71 Xds Fallback each target string has its own XdsClient and thus can have its own bootstrap
- alts: Allow overriding metadata server address with env variable (9ac12ef89) (498f717fc)
- binder: Let the server know when the client fails to authorize it. (#12445) (599a0a146) This avoids the server needing to wait for the handshake timeout before realizing the handshake failed
New Features
- opentelemetry: Implement otel retry metrics from gRFC A96 (#12064) (d380191be)
- opentelemetry: propagate baggage to server metrics for custom attributes (#12389) (155308db2)
- xds: Allow EC Keys in SPIFFE Bundle Map parsing (#12399) (559e3ba41)
- xds: Enable authority rewriting (gRFC A81), system root cert support (gRFC A82), GCP authentication filter (gRFC A83), and SNI (gRFC A101) (#12499) (246c2b1ea). Authority rewriting requires the control plane to be labeled
trusted_xds_serverin the bootstrap. System root cert support and SNI require using XdsChannelCredentials- rls: Add route lookup reason to request whether it is due to a cache miss or stale cache entry (#12442) (795ce0280)
Dependencies
- compiler: C++ protobuf used by codegen upgraded to 26.1 (#12330) (55aefd5b8)
- alts: Remove dep on grpclb (b769f966a). ALTS is no longer used with grpclb, so this removes dead code
- Upgrade netty to 4.1.127.Final (b37ee67cf)
Thanks to
@panchenko@benjaminp@HyunSangHan@becomeStar@ZachChuba@oliviamariacodes@kssumin@laz-canva
... (truncated)
Commits
251dfbbBump version to 1.77.05de8e93Update README etc to reference 1.77.0155308dopentelemetry: propagate baggage to metrics for custom attributes, helps with...efef0ddservlet: Ignore timeoutOnSleepingServer for Tomcat53cd1a2xds: Support deprecated xDS TLS fields for Istio compat (#12435)6fc3fd0okhttp: Fix bidirectional keep-alive causing spurious GO_AWAY498f717alts: Metadata server address modification to account for default port9ac12efalts: Override metadata server address with env variable246c2b1xds: Enable flags for CSM Cloud run gRPC Java (#12499)5e8af56core: Fix NPE during address update with Happy Eyeballs- Additional commits viewable in compare view
Updates io.grpc:grpc-stub from 1.76.0 to 1.77.0
Release notes
Sourced from io.grpc:grpc-stub's releases.
v1.77.0
API Changes
- binder: Remove experimental
BinderChannelBuilder.bindAsUser()method, deprecated since 1.69 (#12401) (f96ce0670)Bug Fixes
- api: Fix name resolver bridge listener handling for address resolution errors for custom name resolvers (#12441) (acbbf869a). This fixes regression introduced in v1.68.1 causing a “IllegalStateException: No value present.” exception
- core: Fix NullPointerException during address update with Happy Eyeballs (5e8af564e). This should not impact many people as the code is disabled by default, behind two experimental environment variables
- okhttp: Fix bidirectional keep-alive causing spurious GOAWAY (6fc3fd046). This fixes the grpc-okhttp server incorrectly closing the connection with
GOAWAY: too_many_pings- xds: SslContext updates handling when using system root certs (#12340) (63fdaaccc). Since
FileWatcherCertificateProviderisn't used when using system root trust store, the SslContext update for the handshake that depended on it wasn't happening. This fix creates a separateCertificateProviderfor handling system root certs that doesn't rely on theFileWatcherCertificateProvider.- xds: Make cluster selection interceptor run before other filters (#12381) (82f9b8ec0). This is needed when there is
GcpAuthenticationFilterin the filter chain to make available the cluster resource inCallOptions.- xds: Handle wildcards in DNS SAN exact matching (#12345) (5b876cc86)
- android: Fix UdsChannelBuilder with WiFi Proxy (349a35a9b)
- binder: Avoid potential deadlock when canceling AsyncSecurityPolicy futures (#12283) (4725ced99)
- binder: Fix a BinderServerTransport crash in the rare shutdown-before-start case (#12440) (91f3f4dc1)
Improvements
- Improve status messages by including causal error details in config parsing errors for outlier detection and xds’s wrr locality policies (86e8b5617)
- xds: Detect negative ref count for xds client (21696cd3d). A negative reference count could cause NullPointerExceptions, so when too many unrefs are detected it produces a SEVERE warning and prevents the reference count from going negative
- xds: Support deprecated xDS TLS fields for Istio compat (#12435) (53cd1a225). This fixes a regression with Istio introduced in v1.73.0. This gives time for Istio’s new xDS field support to roll out
- googleapis: Allow wrapping NameResolver to inject XdsClient (#12450) (27d150890). This allows googleapis to inject an xDS bootstrap to use with its channels even if one is already specified in the environment variable or system property. When the code was originally written there was a single global XdsClient, but since gRFC A71 Xds Fallback each target string has its own XdsClient and thus can have its own bootstrap
- alts: Allow overriding metadata server address with env variable (9ac12ef89) (498f717fc)
- binder: Let the server know when the client fails to authorize it. (#12445) (599a0a146) This avoids the server needing to wait for the handshake timeout before realizing the handshake failed
New Features
- opentelemetry: Implement otel retry metrics from gRFC A96 (#12064) (d380191be)
- opentelemetry: propagate baggage to server metrics for custom attributes (#12389) (155308db2)
- xds: Allow EC Keys in SPIFFE Bundle Map parsing (#12399) (559e3ba41)
- xds: Enable authority rewriting (gRFC A81), system root cert support (gRFC A82), GCP authentication filter (gRFC A83), and SNI (gRFC A101) (#12499) (246c2b1ea). Authority rewriting requires the control plane to be labeled
trusted_xds_serverin the bootstrap. System root cert support and SNI require using XdsChannelCredentials- rls: Add route lookup reason to request whether it is due to a cache miss or stale cache entry (#12442) (795ce0280)
Dependencies
- compiler: C++ protobuf used by codegen upgraded to 26.1 (#12330) (55aefd5b8)
- alts: Remove dep on grpclb (b769f966a). ALTS is no longer used with grpclb, so this removes dead code
- Upgrade netty to 4.1.127.Final (b37ee67cf)
Thanks to
@panchenko@benjaminp@HyunSangHan@becomeStar@ZachChuba@oliviamariacodes@kssumin@laz-canva
... (truncated)
Commits
251dfbbBump version to 1.77.05de8e93Update README etc to reference 1.77.0155308dopentelemetry: propagate baggage to metrics for custom attributes, helps with...efef0ddservlet: Ignore timeoutOnSleepingServer for Tomcat53cd1a2xds: Support deprecated xDS TLS fields for Istio compat (#12435)6fc3fd0okhttp: Fix bidirectional keep-alive causing spurious GO_AWAY498f717alts: Metadata server address modification to account for default port9ac12efalts: Override metadata server address with env variable246c2b1xds: Enable flags for CSM Cloud run gRPC Java (#12499)5e8af56core: Fix NPE during address update with Happy Eyeballs- Additional commits viewable in compare view
Updates io.grpc:grpc-netty-shaded from 1.76.0 to 1.77.0
Release notes
Sourced from io.grpc:grpc-netty-shaded's releases.
v1.77.0
API Changes
- binder: Remove experimental
BinderChannelBuilder.bindAsUser()method, deprecated since 1.69 (#12401) (f96ce0670)Bug Fixes
- api: Fix name resolver bridge listener handling for address resolution errors for custom name resolvers (#12441) (acbbf869a). This fixes regression introduced in v1.68.1 causing a “IllegalStateException: No value present.” exception
- core: Fix NullPointerException during address update with Happy Eyeballs (5e8af564e). This should not impact many people as the code is disabled by default, behind two experimental environment variables
- okhttp: Fix bidirectional keep-alive causing spurious GOAWAY (6fc3fd046). This fixes the grpc-okhttp server incorrectly closing the connection with
GOAWAY: too_many_pings- xds: SslContext updates handling when using system root certs (#12340) (63fdaaccc). Since
FileWatcherCertificateProviderisn't used when using system root trust store, the SslContext update for the handshake that depended on it wasn't happening. This fix creates a separateCertificateProviderfor handling system root certs that doesn't rely on theFileWatcherCertificateProvider.- xds: Make cluster selection interceptor run before other filters (#12381) (82f9b8ec0). This is needed when there is
GcpAuthenticationFilterin the filter chain to make available the cluster resource inCallOptions.- xds: Handle wildcards in DNS SAN exact matching (#12345) (5b876cc86)
- android: Fix UdsChannelBuilder with WiFi Proxy (349a35a9b)
- binder: Avoid potential deadlock when canceling AsyncSecurityPolicy futures (#12283) (4725ced99)
- binder: Fix a BinderServerTransport crash in the rare shutdown-before-start case (#12440) (91f3f4dc1)
Improvements
- Improve status messages by including causal error details in config parsing errors for outlier detection and xds’s wrr locality policies (86e8b5617)
- xds: Detect negative ref count for xds client (21696cd3d). A negative reference count could cause NullPointerExceptions, so when too many unrefs are detected it produces a SEVERE warning and prevents the reference count from going negative
- xds: Support deprecated xDS TLS fields for Istio compat (#12435) (53cd1a225). This fixes a regression with Istio introduced in v1.73.0. This gives time for Istio’s new xDS field support to roll out
- googleapis: Allow wrapping NameResolver to inject XdsClient (#12450) (27d150890). This allows googleapis to inject an xDS bootstrap to use with its channels even if one is already specified in the environment variable or system property. When the code was originally written there was a single global XdsClient, but since gRFC A71 Xds Fallback each target string has its own XdsClient and thus can have its own bootstrap
- alts: Allow overriding metadata server address with env variable (9ac12ef89) (498f717fc)
- binder: Let the server know when the client fails to authorize it. (#12445) (599a0a146) This avoids the server needing to wait for the handshake timeout before realizing the handshake failed
New Features
- opentelemetry: Implement otel retry metrics from gRFC A96 (#12064) (d380191be)
- opentelemetry: propagate baggage to server metrics for custom attributes (#12389) (155308db2)
- xds: Allow EC Keys in SPIFFE Bundle Map parsing (#12399) (559e3ba41)
- xds: Enable authority rewriting (gRFC A81), system root cert support (gRFC A82), GCP authentication filter (gRFC A83), and SNI (gRFC A101) (#12499) (246c2b1ea). Authority rewriting requires the control plane to be labeled
trusted_xds_serverin the bootstrap. System root cert support and SNI require using XdsChannelCredentials- rls: Add route lookup reason to request whether it is due to a cache miss or stale cache entry (#12442) (795ce0280)
Dependencies
- compiler: C++ protobuf used by codegen upgraded to 26.1 (#12330) (55aefd5b8)
- alts: Remove dep on grpclb (b769f966a). ALTS is no longer used with grpclb, so this removes dead code
- Upgrade netty to 4.1.127.Final (b37ee67cf)
Thanks to
@panchenko@benjaminp@HyunSangHan@becomeStar@ZachChuba@oliviamariacodes@kssumin@laz-canva
... (truncated)
Commits
251dfbbBump version to 1.77.05de8e93Update README etc to reference 1.77.0155308dopentelemetry: propagate baggage to metrics for custom attributes, helps with...efef0ddservlet: Ignore timeoutOnSleepingServer for Tomcat53cd1a2xds: Support deprecated xDS TLS fields for Istio compat (#12435)6fc3fd0okhttp: Fix bidirectional keep-alive causing spurious GO_AWAY498f717alts: Metadata server address modification to account for default port9ac12efalts: Override metadata server address with env variable246c2b1xds: Enable flags for CSM Cloud run gRPC Java (#12499)5e8af56core: Fix NPE during address update with Happy Eyeballs- Additional commits viewable in compare view
Updates com.google.protobuf:protobuf-java from 4.33.0 to 4.33.1
Commits
- See full diff in compare view
Updates com.google.protobuf:protobuf-java-util from 4.33.0 to 4.33.1
Updates com.google.protobuf:protobuf-java-util from 4.33.0 to 4.33.1
Updates com.google.api.grpc:proto-google-common-protos from 2.62.0 to 2.63.1
Release notes
Sourced from com.google.api.grpc:proto-google-common-protos's releases.
v2.63.0
2.63.0 (2025-10-16)
Features
- librariangen: add bazel package (#3940) (feabef3)
- librariangen: add execv package (#3932) (f6b0b47)
- librariangen: add protoc package (#3935) (598de06)
- librariangen: add request package (#3933) (fe44aed)
- librariangen: scaffold Java language container for Librarian (#3926) (29d188d)
Dependencies
- Bump errorprone-annotations to v2.42.0 (8d6c1f9)
- Bump guava to v33.5.0 (8d6c1f9)
- Bump j2objc-annotations to v3.1 (8d6c1f9)
- update google auth library dependencies to v1.40.0 (#3945) (1d74663)
- Upgrade Google Http Java Client to v2.0.2 (#3946) (7fb4f15)
v2.62.3
2.62.3 (2025-10-02)
Bug Fixes
v2.62.2
2.62.2 (2025-09-18)
Dependencies
- update google api dependencies (#3885) (3694fed)
- update google auth library dependencies to v1.39.1 (#3907) (e86a4f6)
v2.62.1
2.62.1 (2025-09-05)
Dependencies
Changelog
Sourced from com.google.api.grpc:proto-google-common-protos's changelog.
Changelog
2.64.1 (2025-11-07)
Dependencies
2.64.0 (2025-10-31)
Features
- [common-protos] Add
Carouselwidget (1e4a7e5)- librariangen: add generate package (#3952) (2f6c75d)
- librariangen: generate grpc stubs and resource helpers (#3967) (452d703)
Dependencies
2.63.0 (2025-10-16)
Features
- librariangen: add bazel package (#3940) (feabef3)
- librariangen: add execv package (#3932) (f6b0b47)
- librariangen: add protoc package (#3935) (598de06)
- librariangen: add request package (#3933) (fe44aed)
- librariangen: scaffold Java language container for Librarian (#3926) (29d188d)
Dependencies
- Bump errorprone-annotations to v2.42.0 (8d6c1f9)
- Bump guava to v33.5.0 (8d6c1f9)
- Bump j2objc-annotations to v3.1 (8d6c1f9)
- update google auth library dependencies to v1.40.0 (#3945) (1d74663)
- Upgrade Google Http Java Client to v2.0.2 (#3946) (7fb4f15)
2.62.3 (2025-10-02)
Bug Fixes
... (truncated)
Commits
4aaea1echore(main): release 2.55.1 (#3695)2725744deps: revert "deps: update arrow.version to v18.2.0" (#3694)3d06ab7chore(main): release 2.55.1-SNAPSHOT (#3692)a38020achore(main): release 2.55.0 (#3669)8fd7b62build(deps): update dependency com.google.cloud:google-cloud-shared-config to...2562a7dchore: update googleapis commit at Thu Feb 27 02:27:38 UTC 2025 (#3666)542d98dchore: add aliases to generate command options. (#3689)5192426chore: add java 8 compatibility check (#3688)25d3101chore: fix logback-classic version for testing (#3686)0932605test: Reduce the LRO timeout value in Showcase tests (#3684)- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Package Dependencies
com.google.protobuf:protobuf-java
maven
4.33.0 → 4.33.1
Patch
maven
2.62.0 → 2.63.1
Minor
io.grpc:grpc-netty-shaded
maven
1.76.0 → 1.77.0
Minor
maven
4.33.0 → 4.33.1
Patch
Technical Details
| ID: | 12429741 |
| UUID: | 3664350450 |
| Node ID: | PR_kwDOFw3tWc61fDqP |
| Host: | GitHub |
| Repository: | authzed/authzed-java |