Skip to content

Update all dependencies#2729

Open
renovate-bot wants to merge 1 commit into
google:mainfrom
renovate-bot:renovate/all
Open

Update all dependencies#2729
renovate-bot wants to merge 1 commit into
google:mainfrom
renovate-bot:renovate/all

Conversation

@renovate-bot
Copy link
Copy Markdown
Contributor

@renovate-bot renovate-bot commented Apr 26, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
gradle (source) minor 9.4.19.5.1 age confidence
com.google.android.gms:play-services-wearable dependencies major 19.0.020.0.1 age confidence
io.grpc:grpc-protobuf-lite dependencies minor 1.80.01.81.0 age confidence
io.grpc:grpc-binder dependencies minor 1.80.01.81.0 age confidence
io.grpc:grpc-android dependencies minor 1.80.01.81.0 age confidence
com.google.genai:google-genai dependencies minor 1.51.01.55.0 age confidence
androidx.paging:paging-compose (source) dependencies minor 3.4.23.5.0 age confidence
io.grpc:grpc-stub dependencies minor 1.80.01.81.0 age confidence
com.google.protobuf:protobuf-javalite (source) dependencies minor 4.34.14.35.0 age confidence
com.android.tools.build:gradle (source) dependencies minor 9.1.09.2.1 age confidence
androidx.wear.compose:compose-ui-tooling (source) dependencies patch 1.6.11.6.2 age confidence
androidx.wear.compose:compose-navigation (source) dependencies patch 1.6.11.6.2 age confidence
androidx.wear.compose:compose-material (source) dependencies patch 1.6.11.6.2 age confidence
androidx.wear.compose:compose-foundation (source) dependencies patch 1.6.11.6.2 age confidence
androidx.wear.compose:compose-material3 (source) dependencies patch 1.6.11.6.2 age confidence
com.diffplug.spotless plugin minor 8.4.08.5.1 age confidence
androidx.compose.runtime:runtime-tracing (source) dependencies patch 1.11.01.11.2 age confidence
io.github.takahirom.roborazzi plugin minor 1.59.01.63.0 age confidence
io.github.takahirom.roborazzi:roborazzi-junit-rule dependencies minor 1.59.01.63.0 age confidence
io.github.takahirom.roborazzi:roborazzi-painter dependencies minor 1.59.01.63.0 age confidence
io.github.takahirom.roborazzi:roborazzi-compose dependencies minor 1.59.01.63.0 age confidence
io.github.takahirom.roborazzi:roborazzi-accessibility-check dependencies minor 1.59.01.63.0 age confidence
io.github.takahirom.roborazzi:roborazzi dependencies minor 1.59.01.63.0 age confidence
io.grpc:protoc-gen-grpc-java dependencies minor 1.80.01.81.0 age confidence
com.google.android.gms:oss-licenses-plugin dependencies minor 0.11.00.12.0 age confidence
com.google.android.material:material dependencies minor 1.13.01.14.0 age confidence
com.autonomousapps.dependency-analysis plugin minor 3.7.03.13.0 age confidence
ee.schimke.composeai.preview plugin minor 0.7.70.10.19 age confidence
androidx.compose.material3:material3 (source) dependencies patch 1.5.0-alpha181.5.0-alpha20 age confidence
androidx.media3:media3-ui dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-test-utils-robolectric dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-test-utils dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-session dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-exoplayer-workmanager dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-exoplayer-rtsp dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-exoplayer-hls dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-exoplayer-dash dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-exoplayer dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-datasource-okhttp dependencies patch 1.10.01.10.1 age confidence
androidx.media3:media3-common dependencies patch 1.10.01.10.1 age confidence
androidx.health:health-services-client (source) dependencies patch 1.1.0-rc011.1.0-rc02 age confidence

Release Notes

gradle/gradle (gradle)

v9.5.1

Compare Source

v9.5.0

Compare Source

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

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) 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. (#​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). 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 #​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(). (#​12705) (d459338)
  • xds: Fix xDS HTTP CONNECT's transport socket name bug which is now corrected to use typeUrl. (#​12740) (eac9fe9)
  • xds: Fix an issue where subchannel metrics were dropping their association with the backend_service. This ensures xDS load balancing metrics are reported accurately. (#​12735)

New Features

  • netty: Add tcp metrics, by implementing a few of the metrics defined in A80.
  • api: Add a CallOption for a custom label on per-RPC metrics (0e39b29). This CallOption is copied by grpc-opentelemetry to the grpc.client.call.custom label as defined by gRFC A108. See also the gRPC OpenTelemetry Metrics guide (update in-progress)
  • xds: Add support for Weighted Round Robin (WRR) load balancing driven by custom backend metrics, implementing the behavior defined in gRFC A114. (#​12645)
  • utils: Update AdvancedTlsX509KeyManager so that developers can now preserve and use key aliases when dynamically reloading TLS certificates. (#​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 (#​12700) (a3a9ffc) (#​12726) (65ae2ef)
  • examples: Clean up Health example, and document need for grpc-services (3ed732f)

Dependencies

  • Upgrade Dependencies (#​12719) (16e17ab). 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)

Thanks to

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

v1.55.0

Compare Source

Features
  • add enable_prompt_injection_detection for Computer Use feature for the Gemini API. (1a496a7)
  • add new fields (d4b0867)

v1.54.0

Compare Source

⚠ BREAKING CHANGES
  • Remove the experimental Interactions module. This feature will be supported in the future.
Features
  • Add more details to the ApiResponse error message (c429c2b)
  • support Blocking FunctionCall in Live API in AgentPlatform (Vertex) (0d1cc9c)
Bug Fixes
  • Missing jackson-module-kotlin in classpath (0849b86)
  • request level timeout is ignored in favor of client level timeout (c9464b5)
  • request URL is incorrectly rewritten when baseUrl is configured as a proxy address (400776d)
Documentation

v1.53.0

Compare Source

Features
  • [Python] Multimodal file search (b12cd29)
  • Multimodal file search (aaf0c40)

v1.52.0

Compare Source

Features
  • [Interactions] Add FileCitation.{custom_metadata,media_id,page_number} (a09716e)
  • Add output_info to BatchJob (e337ba9)
  • Add ImageResizeMode for GenerateVideos (e089fcb)
  • Add new Gemini Deep Research agent models (88d7019)
  • Add Vertex Dataset input and output options for batch jobs (612601d)
  • interaction-api: Add grounding tool usage breakdown to Interaction Usage. (bc2f815)
  • introduce enterprise and GOOGLE_GENAI_USE_ENTERPRISE (97adcd9)
  • Replace the more ambiguous rate field with sample_rate. (d762b6e)
Documentation
  • replace Vertex AI with Gemini Enterprise Agent Platform (84c1d43)
  • update doc string to replace Vertex AI with Gemini Enterprise Agent Platform, update method error message to replace Vertex AI with Gemini Enterprise Agent Platform (previously known as Vertex AI), update converter error message to replace Vertex AI with Gemini Enterprise Agent Platform (c5aefa7)
  • update Gemini Enterprise Agent Platform home page url (7b46a6f)
takahirom/roborazzi (io.github.takahirom.roborazzi)

v1.63.0

Compare Source

Fixing a race condition that causes us to see old images

We don't have a reproducing project for this. But there is a report that says we can see old images. It seems to be a race condition, so we've attempted to fix it using the BuildService Gradle API.
Thanks, @​zacharee, for reporting this issue and attempting to fix it!

What's Changed

Full Changelog: takahirom/roborazzi@1.62.0...1.63.0

v1.62.0

Compare Source

Updating to Gradle 9

To investigate an issue with Gradle 9 KMP, Roborazzi now uses Gradle 9. This should not affect your project.
I'm planning several releases to fix build problems over the next few weeks. The reason I'll release a few versions is to make them easier to debug.

What's Changed
  • Bump Gradle wrapper to 9.5.1 and migrate KMP+Android to com.android.kotlin.multiplatform.library by @​takahirom in #​835

Full Changelog: takahirom/roborazzi@1.61.0...1.62.0

v1.61.0

Compare Source

Heads-up: dependency updates for Gradle 9 investigation

I don't want to interrupt you by updating other dependency versions in Roborazzi. But we are investigating a KMP Gradle 9 issue and are going to update to Gradle 9.0. Before that, we should update the Kotlin version and AGP. To minimize the impact, we don't change the Kotlin version in Roborazzi's POM (except for the iOS version), so it should not affect projects using Roborazzi. But if you find anything, please let me know.

What's Changed

Full Changelog: takahirom/roborazzi@1.60.0...1.61.0

v1.60.0

Compare Source

Bugfix: Fix Roborazzi cache path sensitivity

When we use Roborazzi in a different path with the same repository, Roborazzi used to invalidate the cache. Though I think it is not critical because we frequently use test filters(--tests) when we run tests, which also invalidate the cache. But it's better to support the cache.
Thanks @​Link184 for the contribution!

What's Changed
New Contributors

Full Changelog: takahirom/roborazzi@1.59.0...1.60.0

material-components/material-components-android (com.google.android.material:material)

v1.14.0

Compare Source

New in 1.14.0!

  • Expressive Themes (doc)
  • Expressive Lists (doc)
  • Expressive Button Styles (doc)
  • Expressive Icon Button Styles (doc)
  • Expressive Button Group Styles (doc)
  • Expressive FAB Styles (doc)
  • Expressive Top App Bar Styles (doc)
  • Expressive Navigation Bar (BottomNavigationView) Styles (doc)
  • Expressive Navigation Rail Styles (doc)
  • Expressive Search Styles (doc)
  • Expressive Progress Indicator Styles (doc)
  • Expressive Slider Styles (doc)
  • Emphasized Typescale (doc)

Important

  • Required minSdkVersion is now 23 or higher, for Material and AndroidX.
  • Library is now built with Android Gradle Plugin (AGP) 8.11.1 and Gradle 8.13.

Dependency Updates

Dependency Previous version New version
androidx.constraintlayout:constraintlayout 2.1.0 2.2.1
androidx.core:core 1.6.0 1.16.0
androidx.customview:customview N/A 1.2.0
com.android.tools.build:gradle 8.7.3 8.11.1

Library Updates

  • AppBar
    • Fixed the bug that setBackground will reset the internal MaterialShapeDrawable for lift-on-scroll feature. (1adc501)
    • Add support for navigation button with circle background (015e053)
    • Improve keyboard navigation in TopAppBar catalog demos (98a73a6)
    • Removed special key shortcut and keyboard navigation cluster for top app bar for correct keyboard navigation a11y. (ee52adb)
    • Updated ripple color on actions in M3 toolbar. (3b971c9)
  • BottomAppBar
    • Remove special key shortcut and keyboard navigation cluster for bottom app bar for correct keyboard navigation a11y. (5c73d7a)
  • BottomNavigationView
    • Fix navigation item layout in non-compact windows (7818901)
  • BottomSheet
    • Deprecated enableEdgeToEdge for bottom sheet dialogs on API 35+. (603f1ef)
    • Prevent ACTION_DOWN events on the BottomSheetHandleDragView from setting touchingScrollChild to true. (af7f254)
    • Fixed keyboard animation on Android 14 (a0b4dfa)
    • Fixed crash when protections are set before setContentView is called (d211909)
    • Added half-expanded state description for accessibility (95e7b45)
    • Added support for androidx.core ProtectionLayout API and update dependency to 1.16 (e7f9f63)
    • Make handle respond to keyboard input (1ee0768)
    • Delete duplicate "Handling insets and fullscreen" section (5e7e823)
    • Added support for Nested Scrolling with multiple nested scroll children. (4e4e8f3)
    • Make behavior_draggableOnNestedScroll public (a67afdf)
    • Add tooltip text for drag handle (38db2e8)
    • Update a11y actions and drag handle click to not include collapsed state if skipCollapsed=true && hideable=true (c4871f4)
    • Auto-expand when a focused view is off-screen in non-touch mode (d6de1da)
  • CollapsingToolbarLayout
    • Fix jumping when multiline title changes while collapsed (d227870)
    • Make letter spacing dependent on text size in CollapsingTextHelper (58ad14e)
  • Checkbox
  • Chip
    • Added a show all Chip for a11y (8e33421, 1fe726f, de1ff7c)
    • Get default minTouchTargetSize from material attributes (ae68654)
    • Fix close icon tint (09e77fa)
    • Fixed fontVariationSettings from TextAppearance being overwritten in ChipDrawable. (de5730e)
    • Added support for variable font axes (fb7ae01)
    • Fixed chip group forcing importantForAccessibility=yes (1867bb0)
  • Color
    • Updated to only draw surface color under the button's stroke when the buttons are actually overlapped. (7ae12b5)
    • ColorResourcesTableCreator: Fix length encoding for utf8 strings (7c62429)
  • Dialog
    • Added m3 styles for floating toolbar and docked toolbar for dialog (1b58f5f)
    • Added Expressive styles. (0bd1749)
  • DockedToolbar
    • Added OverflowLinearLayout to support adaptive behavior of the floating and docked toolbars. (a12f17a)
  • ExposedDropdownMenu
    • Add keyboard support for dropdown menus (d8cc690)
    • Do not hide the dropdown on Enter/Space key presses when the popup is showing (8c17b08)
  • FloatingActionButton
    • Fixed labelOpacity property (6b41a60)
    • Fixed typos in comments (2f79f31)
    • Fixed the width calculation in the wrap_content extend strategy (a3a7d86)
    • Use the current labelOpacity as the initial animation value (1b08336)
    • Allow collapsed size to be set (0153138)
    • Override setContentDescription to also set the tooltip text on API 26+ (f1193e3)
    • Added tooltip label to FAB and eFAB (ba4875a)
  • FloatingToolbarLayout
    • Fixed HideOnScrollBehavior bugs where setViewEdge() can't be used because EDGE_ constants are package private, and also client's setViewEdge() was being overridden by the internal setViewEdge() behavior in onLayout() (08de7b0)
    • Fixed references to non-existent Expressive styles (aa6e952)
  • Focus Rings
    • Add FocusRingDrawable and integrate it into theme-level drawables (disabled by default) (dcebdb4)
    • Remove focus ring drawables from library themes (cba50c9)
    • Add default item and control drawables to the M3 themes (db1cf64)
    • Integrate FocusRingDrawable into components (disabled by default) (24693b1)
    • Add animation to FocusRingDrawable (f7e6715)
    • Update FocusRingDrawable state copy constructor to do deep copy of shape appearance (8a07a1a)
    • Add support for common Framework and AppCompat component focus rings (ca90045)
    • Move toolbar FocusRingDrawable usages from main themes to .FocusRings themes (8ecb378)
    • Fix theme attribute resolution for FocusRingDrawable attributes (59acbba)
    • Add ThemeOverlay.NoFocusRingDrawables to support reverting theme drawables back to defaults with no drawable class inflation (27150aa)
    • Add .FocusRings versions M3 Expressive, M3, and M2 themes (4626574)
    • Fix shape appearance mutate / constant state issue with Carousel items (MaskableFrameLayout) (8c2294d) * Add FocusRingDrawable findAndMutate() helper for the LayerDrawable / DrawableWrapper case (e6f43e5)
    • Fix focus ring not showing up for Exposed Dropdown Menu selected item (df99005)
    • Add getter and setter for FocusRingDrawable radius (6da4b0f)
    • Add focus rings to MaterialDatePicker day and year items (c0c4af7)
    • Update FocusRingDrawable to automatically construct its ShapeAppearance from a child ShapeDrawable or GradientDrawable (ed6fee1)
    • Update FocusRingDrawable to hide focus ring when no window focus (3774ef7)
    • Remove the default theme-level drawables from the M3 themes (8e471d9)
    • Better fallbacks for FocusRingDrawable attr values if not set in theme or drawable xml (63dba4c)
    • Add setters for outer and inner stroke colors and for refreshing shape appearance based on wrapped drawable (14b9ac9)
    • Add setters and getters for stroke widths and inner inset (12e57b5)
  • Lists
    • Updating List catalog demo to spec (c388920)
    • Added segmented list style, public attrs, and catalog demos (ab86a01)
    • Introduce ListItemLayout and ListItemViewHolder with catalog demo (3c332f9)
    • Added Multi section ListItemViewHolder bind method and demo (babc9fc)
    • Add selector for optional leading icon (14a6267)
    • Added dependency to androidx.customview for ViewDragHelper and added swiped states + settling (1e6a8b7)
    • Fixed issue where the first drag may have not clamped to the end properly since originalContentLeft is 0 (a5be0f7)
    • Added ListItemRevealLayout, ListItemCardView, and relevant interfaces to introduce swiping in ListItemLayout (400d695)
    • Added ViewDragHelper (3236292)
    • Add attr for min child width (32e9fb2)
    • Support RTL swiping (176e92d)
    • Added onSwipeStateChanged callback, drawable swiped state for ListCardView, and alpha changes to swiped view as it reaches the swipe-to-action state (3e5a7fd)
    • Add styles for control elements in lists (3c1a61c)
    • Re-measure intrinsic width when measure specs change (69e9676)
    • Add more optional styles and update demos to show more variety of sample list content (692bd11)
    • Add swipe for action state (07a3be5)
    • Support skipping the open swipe state so clients can go straight to the primary action (d5934ee)
    • Add getSwipeState method and demo, and refactored to set necessary swipe elements before drag so they are available for programmatic swipes (75f0a4e)
    • Updates to styles (50bca32)
    • Create expandable demo (c24017b)
    • Make SwipeableListItem and RevealableListItem public and add swipe state callback (1dbfdd7)
    • Add styles and theme overlays for material icon buttons inside lists (93ae730)
    • Update state colors for label styles and update demos so ListItemCardView children will duplicate and pass on its parent state (845a0e3)
    • Support start/end reveal gravity in ListItemLayout (504300d)
    • Added updateAppearance API to Lists docs (86fc2d8)
    • Fixed base ListItemCardView style to prevent adding additional padding when shape is not round (3fffd5c)
    • Token integration (ac4f111)
    • Added API to update list shape explicitly ([21060b2](https:/

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • 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 10 times, most recently from 7234bb1 to 97ab64d Compare April 30, 2026 19:58
@renovate-bot renovate-bot force-pushed the renovate/all branch 6 times, most recently from 16085a7 to ea6e1d9 Compare May 10, 2026 11:17
@renovate-bot renovate-bot force-pushed the renovate/all branch 7 times, most recently from 7c3d731 to 44ee73e Compare May 17, 2026 01:19
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.

1 participant