Skip to content

Comments

Update all dependencies#2670

Merged
yschimke merged 4 commits intogoogle:mainfrom
renovate-bot:renovate/all
Sep 2, 2025
Merged

Update all dependencies#2670
yschimke merged 4 commits intogoogle:mainfrom
renovate-bot:renovate/all

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Jul 30, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/setup-java action major v4 -> v5 age confidence
gradle (source) major 8.14.3 -> 9.0.0 age confidence
io.grpc:grpc-protobuf-lite dependencies minor 1.74.0 -> 1.75.0 age confidence
io.grpc:grpc-binder dependencies minor 1.74.0 -> 1.75.0 age confidence
io.grpc:grpc-android dependencies minor 1.74.0 -> 1.75.0 age confidence
com.google.genai:google-genai dependencies minor 1.12.0 -> 1.15.0 age confidence
androidx.metrics:metrics-performance (source) dependencies patch 1.0.0-beta02 -> 1.0.0-beta03 age confidence
androidx.wear.compose:compose-ui-tooling (source) dependencies patch 1.5.0-rc02 -> 1.5.0 age confidence
androidx.wear.compose:compose-navigation (source) dependencies patch 1.5.0-rc02 -> 1.5.0 age confidence
androidx.wear.compose:compose-material (source) dependencies patch 1.5.0-rc02 -> 1.5.0 age confidence
androidx.wear.compose:compose-foundation (source) dependencies patch 1.5.0-rc02 -> 1.5.0 age confidence
androidx.wear.compose:compose-material3 (source) dependencies patch 1.5.0-rc02 -> 1.5.0 age confidence
androidx.wear:wear-input (source) dependencies patch 1.2.0-beta01 -> 1.2.0-rc01 age confidence
io.github.takahirom.roborazzi plugin minor 1.48.0 -> 1.50.0 age confidence
io.github.takahirom.roborazzi:roborazzi-junit-rule dependencies minor 1.48.0 -> 1.50.0 age confidence
io.github.takahirom.roborazzi:roborazzi-painter dependencies minor 1.48.0 -> 1.50.0 age confidence
io.github.takahirom.roborazzi:roborazzi-compose dependencies minor 1.48.0 -> 1.50.0 age confidence
io.github.takahirom.roborazzi:roborazzi-accessibility-check dependencies minor 1.48.0 -> 1.50.0 age confidence
io.github.takahirom.roborazzi:roborazzi dependencies minor 1.48.0 -> 1.50.0 age confidence
io.grpc:protoc-gen-grpc-java dependencies minor 1.73.0 -> 1.75.0 age confidence
io.github.droibit.oss-licenses-android:ui-wear-compose-material dependencies minor 0.8.0 -> 0.9.0 age confidence
com.google.android.gms:oss-licenses-plugin dependencies patch 0.10.7 -> 0.10.8 age confidence
org.robolectric:shadows-framework (source) dependencies minor 4.15.1 -> 4.16 age confidence
org.robolectric:robolectric (source) dependencies minor 4.15.1 -> 4.16 age confidence
io.grpc:grpc-stub dependencies minor 1.73.0 -> 1.75.0 age confidence
com.android.tools.build:gradle (source) dependencies patch 8.12.0 -> 8.12.2 age confidence
com.google.dagger:hilt-android-testing dependencies patch 2.57 -> 2.57.1 age confidence
com.google.dagger:hilt-android-gradle-plugin dependencies patch 2.57 -> 2.57.1 age confidence
com.google.dagger:hilt-android-compiler dependencies patch 2.57 -> 2.57.1 age confidence
com.google.dagger:hilt-android dependencies patch 2.57 -> 2.57.1 age confidence
com.autonomousapps.dependency-analysis plugin major 2.19.0 -> 3.0.1 age confidence
androidx.compose.material3:material3 (source) dependencies patch 1.4.0-beta02 -> 1.4.0-beta03 age confidence
com.gradle.develocity plugin patch 4.1 -> 4.1.1 age confidence
androidx.lifecycle:lifecycle-viewmodel-ktx (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-viewmodel-compose (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-viewmodel (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-runtime-testing (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-service (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-runtime-compose (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-runtime-ktx (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-process (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.lifecycle:lifecycle-common (source) dependencies patch 2.9.2 -> 2.9.3 age confidence
androidx.activity:activity-compose (source) dependencies patch 1.12.0-alpha06 -> 1.12.0-alpha07 age confidence
androidx.activity:activity (source) dependencies patch 1.12.0-alpha06 -> 1.12.0-alpha07 age confidence
androidx.hilt:hilt-navigation-compose (source) dependencies patch 1.3.0-beta01 -> 1.3.0-rc01 age confidence
androidx.hilt:hilt-work (source) dependencies patch 1.3.0-beta01 -> 1.3.0-rc01 age confidence
androidx.hilt:hilt-compiler (source) dependencies patch 1.3.0-beta01 -> 1.3.0-rc01 age confidence

Release Notes

actions/setup-java (actions/setup-java)

v5

Compare Source

gradle/gradle (gradle)

v9.0.0

Compare Source

grpc/grpc-java (io.grpc:grpc-protobuf-lite)

v1.75.0

Behavior Changes
  • binder: Introduce server pre-authorization (#​12127). grpc-binder clients authorize servers by checking the UID of the sender of the SETUP_TRANSPORT Binder transaction against some SecurityPolicy. But merely binding to an unauthorized server to learn its UID can enable "keep-alive" and "background activity launch" abuse, even if security policy ultimately causes the grpc connection to fail. Pre-authorization mitigates this kind of abuse by resolving addresses and authorizing a candidate server Application's UID before binding to it. Pre-auth is especially important when the server's address is not fixed in advance but discovered by PackageManager lookup.
Bug Fixes
  • core: grpc-timeout should always be positive (#​12201) (6dfa03c). There is a local race between when the deadline is checked before sending the RPC and when the timeout is calculated to put on-the-wire. The code replaced negative timeouts with 0 nanoseconds. gRPC’s PROTOCOL-HTTP2 spec states that timeouts should be positive, so now non-positive values are replaced with 1 nanosecond

  • core: Improved DEADLINE_EXCEEDED message for delayed calls (6ff8eca). Delayed calls are the first calls on a Channel before name resolution has resolved addresses. Previously you could see confusing errors saying the deadline “will be exceeded in” X time. The message tense was simply wrong, and now will be correct: deadline “was exceeded after” X time.

  • xds: PriorityLB now only uses the failOverTimer to start additional priorities, not fail RPCs (c4256ad). You should no longer see “Connection timeout for priority” errors.

Improvements
  • netty: Count sent RST_STREAMs against NettyServerBuilder.maxRstFramesPerWindow() limit (#​12288). This extends the Rapid Reset tool to also cover MadeYouReset. the reset stream count will cause a 420 "Enhance your calm response" to be sent. This depends on Netty 4.1.124 for a bug fix to actually call the encoder by the frame writer.

  • xds: Convert CdsLb to XdsDepManager (297ab05). This is part of gRFC A74 to have atomic xDS config updates. This is an internal change, but does change the error description seen in certain cases, especially DEADLINE_EXCEEDED on a brand-new channel.

  • census: APIs for stats and tracing (#​12050) (9193701). Client channel and server builders with interceptors and factories respectively for stats and tracing.

  • stub: simplify BlockingClientCall infinite blocking (#​12217) (ba0a732). Move deadline computation into overloads with finite timeouts. Blocking calls without timeouts now do not have to read the clock.

  • xds: Do RLS fallback policy eagar start (#​12211) (42e1829). In gRPC-Java, the xDS clusters were lazily subscribed, which meant the fallback target which is returned in the RLS config wasn’t subscribed until a RPC actually falls back to it. The delayed resource subscription process in gRPC Java made it more susceptible to the effects of the INITIAL_RESOURCE_FETCH_TIMEOUT compared to other programming languages. It also had impact beyond the RLS cache expiration case, for example, when the first time the client initialized the channel, we couldn't fallback when the intended target times out, because of the lazy subscription. This change starts the fallback LB policy for the default target at the start of RLS policy instead of only when falling back to the default target, which fixes the above mentioned problems.

  • xds: Aggregate cluster fixes (A75) (#​12186) (7e982e4). The earlier implementation of aggregate clusters concatenated the priorities from the underlying clusters into a single list, so that it could use a single LB policy defined at the aggregate cluster layer to choose a priority from that combined list. However, it turns out that aggregate clusters don't actually define the LB policy in the aggregate cluster; instead, the aggregate cluster uses a special cluster-provided LB policy that first chooses the underlying cluster and then delegates to the LB policy of the underlying cluster. This change implements that.

  • api: set size correctly for sets and maps in handling Metadata values to be exchanged during a call (#​12229) (8021727)

  • xds: xdsClient cache transient error for new watchers (#​12291). When a resource update is NACKed, cache the error and update new watchers that get added with that error instead of making them hang.

  • xds: Avoid PriorityLb re-enabling timer on duplicate CONNECTING (#​12289). If a LB policy gives extraneous updates with state CONNECTING, then it was possible to re-create failOverTimer which would then wait the 10 seconds for the child to finish CONNECTING. We only want to give the child one opportunity after transitioning out of READY/IDLE.

  • xds: Use a different log name for XdsClientImpl and ControlPlaneClient (#​12287). ControlPlaneClient uses "xds-cp-client" now instead of "xds-client" while logging.

Dependencies Changes
  • Upgrade to Netty 4.1.124.Final (#​12286). This implicitly disables NettyAdaptiveCumulator (#​11284), which can have a performance impact. We delayed upgrading Netty to give time to rework the optimization, but we've gone too long already without upgrading which causes problems for vulnerability tracking.

  • bazel: Use jar_jar to avoid xds deps (#​12243) (8f09b96). The //xds and //xds:orca targets now use jar_jar to shade the protobuf generated code. This allows them to use their own private copy of the protos and drop direct Bazel dependencies on cel-spec, grpc, rules_go, com_github_cncf_xds, envoy_api, com_envoyproxy_protoc_gen_validate, and opencensus_proto. This mirrors the shading of protobuf messages done for grpc-xds provided on Maven Central and should simplify dependency management

Documentation
  • Clarify requirements for creating a cross-user Channel. (#​12181). The @SystemApi runtime visibility requirement isn't really new. It has always been implicit in the required INTERACT_ACROSS_USERS permission, which can only be held by system apps in production. Now deprecated BinderChannelBuilder#bindAsUser has always required SDK_INT >= 30. This change just copies that requirement forward to its replacement APIs in AndroidComponentAddress and the TARGET_ANDROID_USER NameResolver.Args.

  • api: Add more Javadoc for NameResolver.Listener2 interface (#​12220) (d352540)

Thanks to

@​benjaminp
@​werkt
@​kilink
@​vimanikag

googleapis/java-genai (com.google.genai:google-genai)

v1.15.0

Features
  • add sdkHttpResponse.headers to *Delete responses. (4be038d)
  • Add output_gcs_uri to Imagen upscale_image (7649467)
  • add the response body for generateContent (6e28ab4)
  • add the response body for generateContent (b2a5b3f)
  • Add VALIDATED mode into FunctionCallingConfigMode (4bb8680)
  • Add VideoGenerationReferenceType enum for generate_videos (df9d910)
  • Support GenerateVideosSource for Veo GenerateVideos (c26af63)
  • support tunings.cancel in the genai SDK for Python, Java, JS, and Go (9982251)
Documentation
  • Refactor model IDs into a Constants class (dacd787)

v1.14.0

Features
  • Add add_watermark field for recontext_image (Virtual Try-On, Product Recontext) (5aacbc0)
Bug Fixes
  • Fix the bug that files.create doesn't return the upload URL correctly (eb40c5f)
Documentation
  • update TokensInfo docstring (48eba7f)

v1.13.0

Features
  • expose JsonSerializable.stringToJsonNode to help user better use *JsonSchema fields. (35d783b)
  • Return response headers for all methods (except streaming methods) (7e8b71b)
  • Support Imagen image segmentation on Vertex (e2a561b)
  • Support Veo 2 Reference Images to Video Generation on Vertex (2f5580f)
takahirom/roborazzi (io.github.takahirom.roborazzi)

v1.50.0

Compare Source

Fixed: Resolved Gradle task dependency errors with Android Gradle Plugin 8.12+ where GenerateComposePreviewRobolectricTestsTask output was used by compilation tasks without explicit dependencies. Thank you @​papo2608 for reporting this issue.

What's Changed

Full Changelog: takahirom/roborazzi@1.49.0...1.50.0

v1.49.0

Compare Source

ComposablePreviewScanner 0.7.0 Compatibility Update
Breaking Change - Compatibility Update Required

This release addresses a breaking compatibility issue with ComposablePreviewScanner 0.7.0 that affects users of Roborazzi's Preview support feature.

The Problem

When using ComposablePreviewScanner 0.7.0 with previous versions of Roborazzi, you'll encounter NoSuchMethodError at runtime. This happens because:

  • Method relocation: ComposablePreviewScanner 0.7.0 moved methods from AndroidPreviewScreenshotIdBuilder to provide common PreviewScreenshotIdBuilder methods for Glance and Compose Multiplatform
  • Import mismatch: Previous Roborazzi versions contain generated code with outdated import statements
  • Runtime failure: Auto-generated Roborazzi tests from Previews crash when trying to execute methods at their old locations
The Solution

This Roborazzi update replaces the old method calls and import statements with new ones compatible with ComposablePreviewScanner 0.7.0+. However, since these new method locations don't exist in ComposablePreviewScanner 0.6.x, you must update both libraries together.

⚠️ Required Action

If you use Roborazzi's Preview support, you must:

  • Update Roborazzi to this version
  • Update ComposablePreviewScanner to 0.7.0 or later

Both updates are required - updating only one will cause build or runtime errors.

Migration Steps
// Update both dependencies together
implementation "io.github.takahirom.roborazzi:roborazzi:1.49.0"
implementation "io.github.sergio-sastre.ComposablePreviewScanner:android:0.7.0" // or newer
Improved Error Detection

We've added clear build-time error messages to help you identify when this compatibility issue occurs, so you'll know exactly what needs to be updated instead of encountering cryptic runtime errors.

Common Update Scenarios

Scenario 1: Update only ComposablePreviewScanner to 0.7.0
NoSuchMethodError with old Roborazzi. Update Roborazzi to resolve.

Scenario 2: Update only Roborazzi
→ Compile-time error with clear message to update ComposablePreviewScanner ✅

Acknowledgments

Thanks to @​sergio-sastre for collaboration on resolving this compatibility challenge and maintaining the ComposablePreviewScanner library.

What's Changed

Full Changelog: takahirom/roborazzi@1.48.0...1.49.0

droibit/oss-licenses-android (io.github.droibit.oss-licenses-android:ui-wear-compose-material)

v0.9.0

Compare Source

What's Changed

Full Changelog: droibit/oss-licenses-android@0.8.0...0.9.0


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot force-pushed the renovate/all branch 7 times, most recently from 39fbf38 to 6600127 Compare August 6, 2025 01:52
@renovate-bot renovate-bot force-pushed the renovate/all branch 8 times, most recently from 27ad2dd to 25dd41e Compare August 13, 2025 01:06
@renovate-bot renovate-bot force-pushed the renovate/all branch 3 times, most recently from b2dfc73 to 2782588 Compare August 14, 2025 16:06
@forking-renovate
Copy link

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@yschimke yschimke mentioned this pull request Aug 15, 2025
4 tasks
@renovate-bot renovate-bot force-pushed the renovate/all branch 5 times, most recently from 19dd218 to 08fb697 Compare August 19, 2025 02:31
@renovate-bot renovate-bot force-pushed the renovate/all branch 4 times, most recently from c9e44f5 to 80f0836 Compare August 22, 2025 01:01
@renovate-bot renovate-bot force-pushed the renovate/all branch 6 times, most recently from b71ff2c to 54fc288 Compare August 28, 2025 03:38
@yschimke yschimke merged commit ceb4669 into google:main Sep 2, 2025
6 checks passed
kul3r4 pushed a commit to kul3r4/horologist-1 that referenced this pull request Sep 19, 2025
* Update all dependencies

---------

Co-authored-by: Yuri Schimke <yuri@schimke.ee>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants