Skip to content

Commit 2f4658c

Browse files
chore(deps): update all non-major dependencies (#224)
This PR contains the following updates: | Package | Type | Update | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [gradle](https://gradle.org) ([source](https://redirect.github.com/gradle/gradle)) | | minor | `9.4.1` → `9.5.0` | ![age](https://developer.mend.io/api/mc/badges/age/gradle-version/gradle/9.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/gradle-version/gradle/9.4.1/9.5.0?slim=true) | | [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://redirect.github.com/FasterXML/jackson-dataformats-text) | dependencies | patch | `2.21.2` → `2.21.3` | ![age](https://developer.mend.io/api/mc/badges/age/maven/com.fasterxml.jackson.dataformat:jackson-dataformat-yaml/2.21.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.fasterxml.jackson.dataformat:jackson-dataformat-yaml/2.21.2/2.21.3?slim=true) | | [com.fasterxml.jackson.core:jackson-core](https://redirect.github.com/FasterXML/jackson-core) | dependencies | patch | `2.21.2` → `2.21.3` | ![age](https://developer.mend.io/api/mc/badges/age/maven/com.fasterxml.jackson.core:jackson-core/2.21.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.fasterxml.jackson.core:jackson-core/2.21.2/2.21.3?slim=true) | | [io.grpc:grpc-netty-shaded](https://redirect.github.com/grpc/grpc-java) | dependencies | minor | `1.80.0` → `1.81.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-netty-shaded/1.81.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-netty-shaded/1.80.0/1.81.0?slim=true) | | [io.grpc:grpc-stub](https://redirect.github.com/grpc/grpc-java) | dependencies | minor | `1.80.0` → `1.81.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-stub/1.81.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-stub/1.80.0/1.81.0?slim=true) | | [io.grpc:grpc-protobuf](https://redirect.github.com/grpc/grpc-java) | dependencies | minor | `1.80.0` → `1.81.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:grpc-protobuf/1.81.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:grpc-protobuf/1.80.0/1.81.0?slim=true) | | [io.grpc:protoc-gen-grpc-java](https://redirect.github.com/grpc/grpc-java) | dependencies | minor | `1.80.0` → `1.81.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.grpc:protoc-gen-grpc-java/1.81.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.grpc:protoc-gen-grpc-java/1.80.0/1.81.0?slim=true) | | org.jreleaser | plugin | minor | `1.23.0` → `1.24.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/org.jreleaser:org.jreleaser.gradle.plugin/1.24.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.jreleaser:org.jreleaser.gradle.plugin/1.23.0/1.24.0?slim=true) | --- ### Release Notes <details> <summary>gradle/gradle (gradle)</summary> ### [`v9.5.0`](https://redirect.github.com/gradle/gradle/compare/v9.4.1...v9.5.0) [Compare Source](https://redirect.github.com/gradle/gradle/compare/v9.4.1...v9.5.0) </details> <details> <summary>grpc/grpc-java (io.grpc:grpc-netty-shaded)</summary> ### [`v1.81.0`](https://redirect.github.com/grpc/grpc-java/releases/tag/v1.81.0) [Compare Source](https://redirect.github.com/grpc/grpc-java/compare/v1.80.0...v1.81.0) In this release we drop support for Android API level 22 or lower (Lollipop or earlier), following Google Play Service’s [discontinued updates for Lollipop (API levels 21 & 22)](https://developers.google.com/android/guides/setup) and now requires a minimum of API level 23 (Android 6.0 Marshmallow). **API Changes** - api: Deprecate LoadBalancer.handleResolvedAddresses(). Developers maintaining custom LoadBalancer implementations should transition to using LoadBalancer.acceptResolvedAddresses(). Unlike the deprecated method, acceptResolvedAddresses() returns a Status object, allowing the load balancer to explicitly report success or reject the update if the provided addresses or configuration are invalid. ([#&#8203;11623](https://redirect.github.com/grpc/grpc-java/issues/11623)) **Behavior Changes** - core: Enable dns "caching" on Android for 30 seconds to reduce CPU impact of a refresh loop with an LB policy ([`0675f70`](https://redirect.github.com/grpc/grpc-java/commit/0675f70af)). DnsNameResolver ignores re-resolution requests on OpenJDK-like platforms if it has been too soon since the last DNS query because InetAddress.getAllByName() has a cache with a fixed entry lifetime, but this logic was disabled for Android which does not have that style of cache. Android’s cache uses the result TTL, which will rarely be less than 30 seconds. This change would probably be most noticeable when 1) changing to a different network (e.g., from wifi to mobile), 2) the server has different addresses for different networks, and 3) the app is not using AndroidChannelBuilder with an `android.context.Context`. For reference, it seems Chrome caches for 1 minute **Bug Fixes** - opentelemetry: Fix baggage propagation, the baggage propagation for opentelemetry introduced in [#&#8203;12389](https://redirect.github.com/grpc/grpc-java/pull/12389) was broken. The context is decided once and used for all recording for the call, thus guaranteeing all record()s have consistent information. - core: Address a race condition where `ManagedChannelOrphanWrapper` could incorrectly log a "not shutdown properly" warning during garbage collection when using directExecutor(). ([#&#8203;12705](https://redirect.github.com/grpc/grpc-java/issues/12705)) ([`d459338`](https://redirect.github.com/grpc/grpc-java/commit/d459338d9)) - xds: Fix xDS HTTP CONNECT's transport socket name bug which is now corrected to use `typeUrl`. ([#&#8203;12740](https://redirect.github.com/grpc/grpc-java/issues/12740)) ([`eac9fe9`](https://redirect.github.com/grpc/grpc-java/commit/eac9fe961)) - xds: Fix an issue where subchannel metrics were dropping their association with the `backend_service`. This ensures xDS load balancing metrics are reported accurately. ([#&#8203;12735](https://redirect.github.com/grpc/grpc-java/issues/12735)) **New Features** - netty: Add tcp metrics, by implementing a few of the metrics defined in [A80](https://redirect.github.com/grpc/proposal/pull/519). - api: Add a CallOption for a custom label on per-RPC metrics ([`0e39b29`](https://redirect.github.com/grpc/grpc-java/commit/0e39b2967)). This CallOption is copied by grpc-opentelemetry to the `grpc.client.call.custom` label as defined by [gRFC A108](https://redirect.github.com/grpc/proposal/blob/master/A108-otel-custom-per-call-label.md). See also the [gRPC OpenTelemetry Metrics guide](https://grpc.io/docs/guides/opentelemetry-metrics/) (update [in-progress](https://redirect.github.com/grpc/grpc.io/pull/1505)) - xds: Add support for Weighted Round Robin (WRR) load balancing driven by custom backend metrics, implementing the behavior defined in gRFC A114. ([#&#8203;12645](https://redirect.github.com/grpc/grpc-java/issues/12645)) - utils: Update `AdvancedTlsX509KeyManager` so that developers can now preserve and use key aliases when dynamically reloading TLS certificates. ([#&#8203;12686](https://redirect.github.com/grpc/grpc-java/issues/12686)) **Documentation** - Update the "Outgoing Flow Control" section in the Manual Flow Control example to say onNext() does not block, but rather queues the messages in memory and advises developers to use CallStreamObserver.isReady() to prevent this memory exhaustion ([#&#8203;12700](https://redirect.github.com/grpc/grpc-java/issues/12700)) ([`a3a9ffc`](https://redirect.github.com/grpc/grpc-java/commit/a3a9ffcbe)) ([#&#8203;12726](https://redirect.github.com/grpc/grpc-java/issues/12726)) ([`65ae2ef`](https://redirect.github.com/grpc/grpc-java/commit/65ae2efda)) - examples: Clean up Health example, and document need for grpc-services ([`3ed732f`](https://redirect.github.com/grpc/grpc-java/commit/3ed732fc0)) **Dependencies** - Upgrade Dependencies ([#&#8203;12719](https://redirect.github.com/grpc/grpc-java/issues/12719)) ([`16e17ab`](https://redirect.github.com/grpc/grpc-java/commit/16e17abba)). Google-auth-library: 1.42.1, animal-sniffer: 1.27, assertj-core:3.27.7, error\_prone\_annotations:2.48.0, proto-google-common-protos:2.64.1, google-cloud-logging:3.23.10, jetty-http2-server:12.1.7, jetty-ee10-servlet:12.1.7, lincheck:3.4, opentelemetry-api:1.60.1, opentelemetry-exporter-prometheus:1.60.1-alpha, opentelemetry-gcp-resources:1.54.0-alpha, opentelemetry-sdk-extension-autoconfigure:1.60.1, opentelemetry-sdk-testing:1.60.1, robolectric:4.16.1, tomcat-embed-core:10.1.52, tomcat-embed-core9: 9.0.115, - Upgrade Netty to 4.1.132 and netty-tcnative to 2.0.75 ([`1528f80`](https://redirect.github.com/grpc/grpc-java/commit/1528f809c)) **Thanks to** - [@&#8203;becomeStar](https://redirect.github.com/becomeStar) - [@&#8203;benjaminp](https://redirect.github.com/benjaminp) - [@&#8203;JoeCqupt](https://redirect.github.com/JoeCqupt) - [@&#8203;Kainsin](https://redirect.github.com/Kainsin) - [@&#8203;merlimat](https://redirect.github.com/merlimat) - [@&#8203;SreeramdasLavanya](https://redirect.github.com/SreeramdasLavanya) - [@&#8203;themechbro](https://redirect.github.com/themechbro) - [@&#8203;zhangweikop](https://redirect.github.com/zhangweikop) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, only on Monday (`* 0-3 * * 1`) - 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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/cerbos/cerbos-sdk-java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNTkuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE1OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJib3RzIiwiY2hvcmUiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent aecb584 commit 2f4658c

5 files changed

Lines changed: 21 additions & 30 deletions

File tree

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
`maven-publish`
1212
id("com.google.protobuf") version "0.10.0"
1313
id("com.palantir.git-version") version "5.0.0"
14-
id("org.jreleaser") version "1.23.0"
14+
id("org.jreleaser") version "1.24.0"
1515
id("com.gradleup.shadow") version "9.4.1"
1616
}
1717

@@ -49,7 +49,7 @@ protobuf {
4949

5050
plugins {
5151
id("grpc") {
52-
artifact = "io.grpc:protoc-gen-grpc-java:1.80.0"
52+
artifact = "io.grpc:protoc-gen-grpc-java:1.81.0"
5353
}
5454
}
5555

@@ -65,9 +65,9 @@ protobuf {
6565
dependencies {
6666
implementation("com.google.protobuf:protobuf-java:4.34.1")
6767
implementation("com.google.protobuf:protobuf-java-util:4.34.1")
68-
implementation("io.grpc:grpc-protobuf:1.80.0")
69-
implementation("io.grpc:grpc-stub:1.80.0")
70-
implementation("io.grpc:grpc-netty-shaded:1.80.0")
68+
implementation("io.grpc:grpc-protobuf:1.81.0")
69+
implementation("io.grpc:grpc-stub:1.81.0")
70+
implementation("io.grpc:grpc-netty-shaded:1.81.0")
7171
implementation("io.netty:netty-tcnative-boringssl-static:2.0.77.Final")
7272
implementation("org.testcontainers:testcontainers:2.0.5")
7373
implementation("build.buf:protovalidate:1.2.2")
@@ -81,8 +81,8 @@ dependencies {
8181
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
8282
testImplementation("ch.qos.logback:logback-core:1.5.32")
8383
testImplementation("ch.qos.logback:logback-classic:1.5.32")
84-
testImplementation("com.fasterxml.jackson.core:jackson-core:2.21.2")
85-
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.2")
84+
testImplementation("com.fasterxml.jackson.core:jackson-core:2.21.3")
85+
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.3")
8686
}
8787

8888
tasks.withType<JavaCompile> {

gradle/wrapper/gradle-wrapper.jar

-504 Bytes
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
44
networkTimeout=10000
5+
retries=0
6+
retryBackOffMs=500
57
validateDistributionUrl=true
68
zipStoreBase=GRADLE_USER_HOME
79
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 10 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)