Skip to content

Update all dependencies - #2886

Open
renovate[bot] wants to merge 1 commit into
developfrom
renovate/all
Open

Update all dependencies#2886
renovate[bot] wants to merge 1 commit into
developfrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Mar 13, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/setup-java action minor v5.6.0v5.7.0 age confidence
gradle (source) minor 9.6.19.7.0 age confidence
com.google.firebase:firebase-bom dependencies minor 34.16.034.17.0 age confidence
androidx.paging:paging-compose (source) dependencies patch 3.5.03.5.1 age confidence
androidx.paging:paging-common (source) dependencies patch 3.5.03.5.1 age confidence
dev.zacsweers.metro plugin minor 1.3.21.4.1 age confidence
dev.zacsweers.metro:metrox-viewmodel-compose dependencies minor 1.3.21.4.1 age confidence
dev.zacsweers.metro:metrox-viewmodel dependencies minor 1.3.21.4.1 age confidence
androidx.media3:media3-ui dependencies minor 1.10.11.11.0 age confidence
androidx.media3:media3-exoplayer-dash dependencies minor 1.10.11.11.0 age confidence
androidx.media3:media3-exoplayer dependencies minor 1.10.11.11.0 age confidence
com.datadoghq:dd-sdk-kotlin-multiplatform-ktor3 dependencies minor 1.7.01.8.0 age confidence
io.github.classgraph:classgraph dependencies patch 4.8.1864.8.191 age confidence
androidx.compose.ui:ui-tooling-preview (source) dependencies minor 1.11.41.12.0 age confidence
androidx.compose.ui:ui-tooling (source) dependencies minor 1.11.41.12.0 age confidence
androidx.compose.ui:ui-test-manifest (source) dependencies minor 1.11.41.12.0 age confidence
androidx.appcompat:appcompat (source) dependencies minor 1.7.11.8.0 age confidence
androidx.navigation3:navigation3-ui (source) dependencies patch 1.2.0-alpha061.2.0-alpha07 age confidence
androidx.navigation3:navigation3-runtime (source) dependencies patch 1.2.0-alpha061.2.0-alpha07 age confidence
androidx.compose.runtime:runtime-retain (source) dependencies minor 1.11.41.12.0 age confidence
androidx.compose:compose-bom dependencies minor 2026.06.012026.08.00 age confidence
app.rive:rive-android (source) dependencies minor 11.7.211.8.0 age confidence
com.squareup.sort-dependencies plugin minor 0.20.00.21.0 age confidence
io.ktor:ktor-client-okhttp dependencies patch 3.5.13.5.2 age confidence
io.ktor:ktor-client-logging dependencies patch 3.5.13.5.2 age confidence
io.ktor:ktor-serialization-kotlinx-json dependencies patch 3.5.13.5.2 age confidence
io.ktor:ktor-client-darwin dependencies patch 3.5.13.5.2 age confidence
io.ktor:ktor-client-core dependencies patch 3.5.13.5.2 age confidence
io.ktor:ktor-client-content-negotiation dependencies patch 3.5.13.5.2 age confidence
io.ktor:ktor-client-auth dependencies patch 3.5.13.5.2 age confidence
com.google.devtools.ksp (source) plugin patch 2.3.102.3.11 age confidence
com.google.devtools.ksp:symbol-processing-api (source) dependencies patch 2.3.102.3.11 age confidence
org.jmailen.kotlinter plugin minor 5.6.05.7.0 age confidence
org.jmailen.gradle:kotlinter-gradle dependencies minor 5.6.05.7.0 age confidence
com.datadoghq.dd-sdk-android-gradle-plugin plugin minor 1.29.01.30.0 age confidence

Release Notes

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

v5.7.0

Compare Source

gradle/gradle (gradle)

v9.7.0

Compare Source

ZacSweers/metro (dev.zacsweers.metro)

v1.4.1

Compare Source

2026-08-06

New
  • [FIR/IR/Circuit] Generate CircuitSerializerRegistration Set contributions for @CircuitSerializable Screen and PopResult types when using Circuit 0.36.0 or newer.
Fixes
  • [FIR/IR] Generate contribution hints in FIR alongside IR class generation (Kotlin 2.4.20+), fixing downstream discovery for Metro's built-in contributions on all platforms.
  • [FIR] Report an error when one annotation class combines multiple qualifier, scope, or map-key markers, such as both @Qualifier and @MapKey.
  • [IR] Fix duplicate qualifier annotations on parameters of IR-generated member-injector methods.
  • [IR] Inject inherited members in superclass-first order when using graph injection methods.
  • [IR] Report duplicate bindings inherited from a parent graph when they are only requested by a child graph extension.
  • [IR] Fix @GraphExtension.Factory replacements across additionalScopes when generating classes in IR.
  • [IR] Correctly report dependency cycles when the same dependency is requested both directly and through a provider or lazy value.
  • [IR] Prevent stack overflows in large dependency graphs by checking cycles with heap-backed frames instead of recursive DFS traversal.
  • [IR] Minimize deferred bindings when breaking overlapping dependency cycles.
  • [IR] Do not require suspend provider support for caller-supplied suspend function @Assisted parameters.
  • [IR] Fix a stack overflow when a nested graph extension requests a parent-scoped binding with suspend providers enabled.
  • [IR] Prevent stack overflows while generating deeply nested/complex dependency graph expressions.
  • [IR] Show shorter, consistent dependency paths in graph errors with improved route caching.
  • [IC] Fix incremental compilation issue when adding or removing member injections from a superclass.
Changed
  • Mentioned above in the fixes, but worth reiterating! Previously, graph-level member injector functions would incorrectly inject subclasses before ancestor classes. Now it correctly injects ancestors first, matching how MembersInjector and constructor-injected classes with member injection work. If you were relying on that behavior by accident, it's going to be different now!
Contributors

Special thanks to the following contributors for contributing to this release!

Consider sponsoring Metro's development

v1.4.0

Compare Source

2026-07-30

New
Experimental support for suspend providers

This release introduces experimental support for suspend providers. This is disabled by default and can be enabled by the metro.enableSuspendProviders option. See the coroutines documentation for details.

  • @Provides functions and graph accessors can be suspend. Suspension propagates through dependent bindings. Metro reports a dependency trace when a non-suspend path reaches one.
  • Inject suspend () -> T to defer initialization until invocation, or SuspendLazy<T> to also cache the first successful result. Provider, function providers, Lazy, SuspendProvider, suspend functions, and SuspendLazy can be nested to any depth in a scalar wrapper stack.
    • When the underlying binding suspends, the wrapper closest to it must also support suspension. Maps can defer initialization of individual values with Map<K, suspend () -> V> or Map<K, SuspendProvider<V>>.
    • Wrapper layers and supported map values preserve nullable binding types.
  • Like ordinary scoped bindings, scoped suspend bindings are single-flight and retry after failures or cancellation. They also run on the coroutine context they were called on, so if this is important then you should use an appropriate withContext within your provider body.
  • The Gradle plugin automatically adds the new runtime-coroutines artifact when suspend providers are enabled. If runtime dependencies are managed manually, add it for scoped suspend bindings, suspendLazy, and injection requests containing SuspendLazy at any nesting level.
    • runtime-coroutines uses kotlinx-coroutines on every platform.
  • Note: Switching providers do not yet support suspend providers. You can still enable them, just scoped suspend provider fields will not be sharded into nested switching provider classes yet.
Other new stuff
  • [FIR/IR/Circuit] Support sub-circuits (i.e. the new @SubCircuitInject annotation).
Enhancements
  • Support private @Provides properties on Kotlin 2.4.20-Beta1 and newer.
  • [IR] Improve IC on Kotlin 2.3.20 by backporting compat support for the compiler's new declaration finder APIs.
  • [IR] Avoid generating unused provider fields for included graph accessors that can be read directly.
  • [IR] Avoid linear helper traversal in large switching providers by routing directly to the matching chunk.
  • [runtime] If the input function to provider() is already a Provider instance, return it directly rather than needlessly wrap it.
  • [runtime] Support nullable values in ordinary map multibinding factories, including provider and lazy map value forms.
Fixes
  • [FIR] Report a diagnostic when private @Provides properties are used without compiler support (i.e. pre-2.4.20).
  • [FIR] Report an error when a map key is applied (via type argument) to a binding without a corresponding @IntoMap or @ContributesIntoMap annotation.
  • [IR] Fix stale contribution hints after changing a contribution's scope during incremental compilation. This only affects Kotlin versions prior to 2.3.20.
  • [IR] Fix Kotlin/Native compilation failures when generated hidden classes were missing their Any supertype.
  • [IR] Prevent directly provided maps from satisfying suspend-provider-valued map requests unless the provided map uses that exact value type.
  • [IR] Avoid redundant nested DoubleCheck.lazy() calls when materializing Lazy graph accessors and binding parameters.
  • [IR] Correctly adapt function-provider accessors from included graphs when storing them as Metro Provider fields.
  • [IR] Fix graph implementations incorrectly inheriting the containing class of nested @ContributesTo interfaces with IR class generation.
  • [IR] Don't inline object, enum, or class-literal provider bindings when they're requested through Provider, Lazy, or provider-based multibindings.
  • [gradle] Respect metro.generateClassesInIr Gradle and system property overrides instead of replacing them with the Kotlin-version default.
  • Improve Kotlin 2.4.20-Beta2 support.
Changes
  • Refreshed benchmarks!
    • They now run against latest Metro, Dagger, and KSP versions.
      • Dagger + KSP have improved significantly 🚀.
    • They now also include Koin.
  • Build against Kotlin 2.4.10. Note the runtime artifacts still target Kotlin 2.3.0 and Metro supports a wide range of compiler versions. See the compatibility docs for a full table of compatible versions.
  • Test IntelliJ 2026.2 stable.
  • Test Android Studio Quail 4 canaries.
  • Switch shaded Mordan dependency to just mordant-core.
  • Update shaded Okio dependency to 3.18.1.
  • Update androidx.tracing to 2.0.0-rc01.
Contributors

Special thanks to the following contributors for contributing to this release!

Consider sponsoring Metro's development
androidx/media (androidx.media3:media3-ui)

v1.11.0

Compare Source

This release includes the following changes since the
1.10.1 release:

  • Common library:
    • Add Format.channelMask to explicitly represent the audio channel mask,
      and a new Util.getAudioTrackChannelConfig(Format) overload to safely
      resolve it.
    • Upgrade Kotlin from 2.0.20 to 2.2.0.
  • ExoPlayer:
    • Fix a timing-dependent concurrency bug that could cause an
      IllegalStateException or IndexOutOfBoundsException in ExoPlayer.
    • Relax ad group count checks in AdsMediaSource to allow the ad group
      count to decrease when an ad group is fully processed
      (hasUnplayedAds() is false), accommodating dynamic ad group resizing
      during reset workflows.
    • Add getFlags() and FLAG_STRICT_DURATION to SampleStream to allow
      streams to report flags, and update renderers to check these flags
      dynamically.
    • Fall back to the frame rate estimator in MediaCodecVideoRenderer and
      to the codec output format in MediaCodecAudioRenderer to calculate the
      codec operating rate when the stream formats do not provide a valid
      value, and avoid unnecessary codec resets.
    • Remove clipping of content for client-side inserted ads in the core
      player. Instead, AdsMediaSource takes care of the clipping logic.
      Custom client-side inserted ads sources need to be updated to implement
      the content clipping internally.
    • Mark tracks with a well-formed but unrecognized codec profile or level
      as supported=NO_EXCEEDS_CAPABILITIES instead of supported=YES (which
      is how tracks with missing or malformed profile or level info are
      marked). This ensures these tracks (which are unlikely to be supported
      by the device) are not selected when there are better-supported
      alternatives.
    • Add DefaultPreloadManager.SimpleRankingDataComparator, which is a
      RankingDataComparator that compares the ranks of the media items based
      on their distances to the index of the current playing media item. Apps
      can override its compare(Integer, Integer) method if a more fine-tuned
      comparison logic is needed. The custom SimpleRankingDataComparator can
      be injected via a new constructor of DefaultPreloadManager.Builder.
    • Reduce the OOM risk of
      DefaultLoadControl.prioritizeTimeOverSizeThresholds by falling back to
      buffer byte size limits if available heap memory seems tight.
    • Align handling of still images when MediaItem.imageDurationUs is not
      set: JPEG and HEIC still images now 'play' with a very short default
      duration (the same way PNG and other images previously behaved).
    • Add MediaSource.prepareSource(MediaSourceCaller, PlayerId, BandwidthMeter) to plumb BandwidthMeter to MediaSource. The
      deprecated method with custom implementation will still be called by
      default though, it is recommended to implement the new method and use
      BandwidthMeter.getTransferListener() to get parity to the old method.
    • In DefaultBandwidthMeter, add support for a custom
      InitialBitrateSupplier. This allows apps to provide their own logic
      for determining the initial bitrate estimate, which will be used on
      creation of DefaultBandwidthMeter and on network type changes. The
      supplier can be set via
      DefaultBandwidthMeter.Builder.setInitialBitrateSupplier().
    • Enable dynamic scheduling by default. ExoPlayer playback work loop
      will run dynamically as opposed to on a static interval.
    • Remove an unnecessary reset that can occur when joining tracks with
      pre-roll samples to active playback.
    • In DefaultBandwidthMeter, optimize
      getInitialBitrateCountryGroupAssignment to return the country group
      assignments packed into a 32-bit integer instead of an array, reducing
      code size and avoiding allocations.
    • Fix AudioTrack initialization failures on some devices by ensuring the
      retry logic always attempts a minimum of 1 second buffer size if other
      retries (by halving the buffer size) are unsuccessful
      (#​3207).
    • Fix codec issue on some devices where the codec was swallowing all
      samples if previously flushed before receiving input buffers.
    • Add experimental ExoPlayer.Builder.enablePerStreamMediaProgression()
      to allow advancing media processing on a per-stream basis. This reduces
      startup latency between playlist items and avoids playback becoming
      "stuck" with very short content
      (#​3122).
    • Fix race condition related to audio session id usage where the initial
      audio session id auto-generated by ExoPlayer would be used instead of
      the value set by setAudioSessionId
      (#​3241).
    • Add experimental HAGC (ST 2094-50) timed metadata playback support for
      progressive media (e.g. MP4, Matroska). The player automatically merges
      HAGC metadata tracks with the associated video track and delivers the
      metadata out-of-band to the decoder on API 37+ devices. This behavior
      can be disabled via
      DefaultMediaSourceFactory.setExperimentalEnableHagcPlayback(false).
    • Add Format.selectionPriority representing the relative preference of
      the Format in track selection
      (#​3236).
    • Fix potential scrubbing mode issue where scrubbing could stall when
      seeking to 'end of stream'.
  • CompositionPlayer:
    • Fix an issue where TrackSelector instances were not being released.
  • Transformer:
    • Fix an issue where ExportResult.fileSizeBytes may be over-reported.
  • Track selection:
    • Expose BaseTrackSelection.DEFAULT_FORMAT_COMPARATOR and add
      AdaptiveTrackSelection.Factory.setTrackFormatComparator to allow
      custom format ordering and ABR selection priority beyond bitrate-only
      ordering.
    • Fix a timing-dependent concurrency issue where rapid sequential updates
      to track selection parameters could result in some updates being lost or
      overwritten.
  • Extractors:
    • MP4, MP3, and FLAC: Add FLAG_DISABLE_ARTWORK_METADATA to allow
      discarding attached pictures and cover art metadata during container
      parsing to reduce runtime memory consumption
      (#​2077). This can also
      be enabled centrally via
      DefaultExtractorsFactory.setDisableArtworkMetadata.
    • MP4: Add support for extracting ITU-T T.35 (it35) timed metadata
      tracks.
    • MP4: Add support for extracting chapter metadata (both Nero and
      QuickTime formats). QuickTime chapters are preferred if both are
      present. The extracted chapter information is exposed as Chapter
      entries within the track's Metadata, allowing for native chapter
      navigation in MP4, M4A, and M4B files (such as audiobooks and podcasts)
      (#​2803).
    • WAV, Matroska, and MP4: Add support for 64-bit floating point PCM audio
      (#​3090).
    • Matroska: Use codec bitstream metadata to populate accurate ColorInfo.
    • MP4: Add support for seeking in fragmented MP4 files using the mfra
      box when a sidx box is not present. To enable this, provide
      FLAG_READ_MFRA_FOR_SEEK_MAP to the FragmentedMp4Extractor, which is
      now done by default in DefaultExtractorsFactory
      (#​3088).
    • Ignore av1C data with unsupported version.
    • MP4: Add support for big-endian floating point PCM in fpcm boxes.
    • Matroska: Parse chapter info to Chapter entries in a track's
      Metadata.
    • MPEG-TS: Improve extraction of DTS-HD and DTS Express streams by
      combining the Core and Extension Substream into a single sample, fixing
      playback issues where the two were previously output as separate samples
      (#​3147).
    • MP4: Prevent infinite loops and out-of-bounds reads when parsing empty
      ilst metadata tag items
      (#​3191).
    • MPEG-TS: Ensure the last frame is rendered for streams where the last
      PES packet has a known length
      (#​3206).
    • MP3: Fix bitrate reporting for files with Xing and VBRI header.
    • Matroska: Handle tracks defined in the last cluster
      (#​3250).
    • Matroska: Add support for ALAC
      (#​3268).
    • MP4: Allow variable length sgpd boxes in fragmented MP4 files
      (#​3243).
    • AVI: Fix an issue where playing files without keyframe flags on audio
      tracks caused audio loss and OutOfMemoryError.
    • MP3: Use gapless-aware durations from Xing/Info headers
      (#​3183).
    • MP3: Adjust LAME/Xing encoder delay and padding metadata to match
      decoded PCM trimming
      (#​3200).
  • Audio:
    • Add a 100ms grace period in ExoPlayer's audio renderers when
      transitioning from ready to not-ready state, to debounce transient
      underruns and avoid unexpected buffering states during active playout
      (#​3210).
    • Change the default PCM buffer size logic in
      DefaultAudioTrackBufferSizeProvider to use a fixed 500ms buffer to
      make it less device dependent.
    • Update MediaCodecAudioRenderer to extract the spatial channelMask from
      the platform decoder, allowing DefaultAudioSink to use this explicit
      mask instead of inferring one from the channel count.
    • Convert parameters of AudioSink.configure to data class. Custom
      overrides of ForwardingAudioSink.configure need to be migrated to the
      new method signature.
    • Add support for maintaining pitch when time-stretching an audio stream
      with EditedMediaItem.Builder#setSpeed(SpeedParameters).
    • Enhance ToFloatPcmAudioProcessor to support converting 8-bit PCM,
      16-bit big-endian PCM, and 64-bit floating point PCM to 32-bit floating
      point PCM (#​3090).
    • Change return value of DecoderAudioRenderer.getChannelMapping to
      ImmutableIntArray.
    • Fix bug where playback gets stuck when playing a playlist of gapless
      audio in compressed offload mode.
    • Forward Timeline and period UID to AudioSink.configure and
      AudioProcessor.StreamMetadata to provide playlist context to the audio
      processors (#​418).
    • Set correct AudioProcessor.StreamMetadata.positionOffsetUs to allow
      time-based audio processing
      (#​418).
    • Add support for big endian 32-bit and 64-bit floating point PCM.
    • Remove fallback path of EAC3-JOC to EAC3 for playback on Google Pixel
      devices as their standard EAC3 decoders cannot decode EAC3-JOC streams
      (#​3257).
  • Video:
    • Fix video joining logic to count dropped buffers during joining as
      skipped instead of dropped.
    • Fix immediate rendering decision when setting new surface to avoid frame
      drops on devices that don't support placeholder surfaces.
    • Fix frame rate estimation in MediaCodecVideoRenderer to be more
      accurate by accounting for dropped or skipped frames.
    • Allow configuration of the threshold used to schedule frames early. The
      default is 50ms but one can customize the value through
      MediaCodecVideoRenderer.Builder.setMaxEarlyUsThreshold().
    • Fix bug in VideoFrameReleaseHelper where display changes could trigger
      redundant Choreographer callbacks and excessive CPU wakeups on the
      main thread.
  • Text:
    • TTML: Fallback to displayAlign from style for regions
      (#​2559).
    • TTML: Inherit cue start time from parent of <p> elements
      (#​3246).
  • Metadata:
    • Add MediaMetadata.discSubtitle field and parse it from ID3v2.4 TSST
      and Vorbis DISCSUBTITLE data.
    • Parse disc number & count from ID3 TPOS frame.
  • Effect:
    • Clear redraw state in FinalShaderProgramWrapper when flushing to
      prevent the player from freezing when seeking.
  • Muxers:
    • Add support for track references (the tref box) in Mp4Muxer via a
      new addTrackReference API. This allows establishing relationships
      between tracks, such as linking a metadata track to the video track it
      describes.
    • Add OggMuxer to allow muxing of OPUS or VORBIS media streams into
      the ogg file format.
    • Add WavMuxer for WAV file generation (supports integer and
      floating-point PCM).
    • Add setAttemptStreamableOutputEnabled to InAppMp4Muxer.Factory to
      allow writing smaller non-streamable files without reserved space.
    • Add support for IAMF audio in Mp4Muxer and FragmentedMp4Muxer.
  • IMA extension:
    • Add
      ImaServerSideAdInsertionMediaSource.AdsLoader.Builder.setPauseAdSlot
      to allow providing an ad slot to use for pause ads.
    • Fix bug where back-to-back skippable VAST ads show the skip button
      immediately on the second ad
      (#​3165).
  • Session:
    • Fix potential deadlocks and IllegalStateException crashes inside
      MediaNotificationManager when using a session with a background thread
      player looper.
    • Enforce stricter threading requirements for MediaSession methods. Void
      methods now automatically post execution to the application looper
      thread, and state accessors (getters) explicitly throw an
      IllegalStateException if called from a thread other than the
      application looper.
    • Fix an out-of-bounds timeline merge crash (IllegalStateException in
      MediaUtils.mergePlayerInfo) by tracking state consistency
      per-controller on the session side.
    • Add androidx.media3.session.MediaSessionManager to provide support for
      querying active media sessions and returning Media3 SessionToken
      instances.
    • Change default behavior of MediaSession.Callback.onConnect if the
      method is not overridden to only provide read access to untrusted
      controllers.
    • Add support to override package name while creating MediaSession via a
      new API MediaSession.Builder#setPackageNameOverride. The caller must
      have android.permission.OVERRIDE_MEDIA_SESSION_OWNER permission to
      override the package name of the session.
    • Add MediaSession.Callback.onConnectAsync(). The new method allows to
      asynchronously process the connection attempt of a controller. Apps can
      return an immediate Future with
      Futures.immediateFuture(ConnectionResult) to achieve the previous
      behaviour. It's recommended to migrate to the new method because
      Callback.onConnect is a candidate to be deprecated.
    • Fix issue where Bluetooth AVRCP browsing didn't recognise
      MediaLibraryService on API 36 and 37.
    • Fix double-downscaling of artwork in MediaSession when the image size
      is close to the platform limit, resolving blurriness in notifications
      (#​3134).
    • Fix ForegroundServiceStartNotAllowedException crash in
      MediaNotificationManager when an asynchronous artwork bitmap load
      callback attempts to start the foreground service while the app is in
      the background (#​3270).
    • Fix an issue where PositionInfo objects received by a
      MediaController were missing their original Timeline UIDs. The
      session now reliably translates and propagates these UIDs during state
      updates.
    • Fix crash by catching ForegroundServiceStartNotAllowedException in
      MediaSessionService.stopSelfSafely()
      (#​3310).
    • Fix unexpected onMediaItemTransition() callback on MediaController
      when seeking inside the same media item
      (#​3248).
  • UI:
    • Fix first frame rendering at the wrong size when ContentFrame is
      recomposed mid-playback
      (#​3238).
    • Add CurrentMediaItemState class and the corresponding
      rememberCurrentMediaItemState Composable to media3-ui-compose
      module. This state holder is used in demo-compose to display various
      metadata information about the currently playing MediaItem.
    • Add PlaylistState class and the corresponding rememberPlaylistState
      Composable to media3-ui-compose module. This state holder is used in
      demo-compose to display various metadata information about the
      MediaItems set on the Player.
    • Add fastforwarding/slow motion API to PlaybackSpeedState. Use this
      functionality in demo-compose to showcase fastforwarding with a long
      press.
    • Add MiniController composable to media3-ui-compose-material3 module.
      It provides a compact affordance to control the Player while
      displaying the title, artist, artwork, and progress of the current media
      item.
    • Add ErrorState class and the corresponding rememberErrorState
      Composable to media3-ui-compose module. Add ErrorText Composable to
      media3-ui-compose-material3 and make it a default overlay on the
      Player.
    • Publish PlayerDefaults object with composables for TopControls,
      CenterControls, BottomControls, and ErrorOverlay.
    • Add FocusRequester to Player Composable and its content slots.
    • Publish PlayerPool (common-ktx) and rememberPooledPlayer
      (ui-compose) to support preloading of MediaItems in sliding window
      UI environments. Showcase this functionality in demo-compose with a
      new ShortFormPlayerScreen.
    • Fix shutter suppression bug in PlayerView and Compose
      PresentationState that caused crashes on timelines that do not support
      period UID lookup
      (#​3264).
  • Downloads:
    • Resolve HLS variables in media playlist when fetched for download
      (#​3258).
  • Ktor extension:
    • Add a new media3-datasource-ktor extension module providing a
      KtorDataSource backed by the Ktor HTTP stack.
    • Fix KtorDataSource loading the entire HTTP response body into memory
      when opening a connection
      (#​3305).
  • HLS extension:
    • Add support for HLS Content Steering and Pathway Cloning
      (#​1689).
    • Add setWithAssetListReset to HlsInterstitialsAdsLoader to allow apps
      to reset fully processed asset list interstitials back to an unavailable
      state for on-demand re-resolution.
    • Parse SCORE attribute of EXT-X-STREAM-INF and
      EXT-X-I-FRAME-STREAM-INF, and populate it to
      Format.selectionPriority
      (#​3236).
    • Fix bug where scheduled HLS playlist refreshes continue even if the
      playlist is no longer primary or active
      (#​3254).
    • Fix calculation of content resume offset when resolving interstitial
      asset lists (#​3322).
    • Fix unexpected audio track timestamp discontinuity when resuming low
      latency live playback after a playlist request failure
      (#​3311).
    • Fix bug in HlsMediaPeriod.getStreamKeys() where the ID3 track in audio
      renditions is considered as subtitles
      (#​3333).
  • DASH extension:
    • Separate CEA closed captions into different TrackGroups based on
      language (#​3113).
    • Add support for parsing multiple Location elements from the manifest
      (MPD) and performing location fallback in DashMediaSource when
      manifest loads fail.
    • Fix crash (IndexOutOfBoundsException) when opening manifests with an
      empty <SegmentTimeline/> element
      (#​3326).
  • RTSP extension:
    • Fix transient playback stalls or failures during RTSP playback
      preparation caused by UDP port binding errors.
  • Cast extension:
    • Add new CastParams class to allow configuration of Cast by calling
      Cast.initialize(CastParams).
    • Add new CastParams.getShowSystemOutputSwitcherOnCastIconClick()
      option, which triggers the use of the SystemUI Output Switcher instead
      of the in-app Cast device picker when available.
    • Add MediaRouteButtonState and rememberMediaRouteButtonState to
      support observing the visibility state of the media route picker, and
      add state parameter to MediaRouteButton
      (#​3172).
    • Fix bug where RemoteCastPlayer could get permanently stuck in a
      track-masking state after a track selection, causing it to ignore
      subsequent track updates from the Cast receiver
      (#​3237).
    • Fix bug where DefaultMediaItemConverter throws a
      NullPointerException when trying to join a cast session started from a
      non-Media3 sender.
    • Prevent CastPlayer from transferring MediaItems that are not
      playable when changing the active player
      (#​3199).
    • Fix bug where unconfigured live streams (liveConfiguration == UNSET)
      were queued as STREAM_TYPE_BUFFERED
      (#​3318).
  • Test utilities:
    • Expand DataSourceContractTest to include support for POST requests
      with headers & bodies, add some POST resources to
      HttpDataSourceTestEnv, and add assertions for the expected HTTP
      method, headers & body in WebServerDispatcher.
    • Tighten assertions in DataSourceContractTest for lengths returned from
      DataSource.open(). Resources that may result in C.LENGTH_UNSET
      should indicate this by using
      TestResource.Builder.setMayResolveToUnknownLength(boolean).
    • Add setPlaybackLooper to TestExoPlayerBuilder.
  • Remove deprecated symbols:
    • Remove androidx.media3.exoplayer.MetadataRetriever. Use
      androidx.media3.inspector.MetadataRetriever instead.
    • Remove androidx.media3.exoplayer.MediaExtractorCompat. Use
      androidx.media3.inspector.MediaExtractorCompat instead.
    • Remove Mp4Extractor.FLAG_READ_MOTION_PHOTO_METADATA. Use
      HeifExtractor to extract motion photo metadata from HEIC files
      instead.
    • Remove androidx.media3.extractor.metadata.mp4.MotionPhotoMetadata. Use
      androidx.media3.extractor.metadata.MotionPhotoMetadata instead.
    • Remove androidx.media3.extractor.DummyTrackOutput. Use
      androidx.media3.extractor.DiscardingTrackOutput instead.
    • Remove androidx.media3.extractor.DummyExtractorOutput. Use
      androidx.media3.extractor.NoOpExtractorOutput instead.
    • Remove androidx.media3.common.C.generateAudioSessionIdV21. Use
      androidx.media3.common.util.Util.generateAudioSessionId instead.
  • Build
    • Updated the README.md instructions for depending on Media3 locally to
      use Gradle Composite Builds (includeBuild). The core_settings.gradle
      script has been removed, and the androidxMediaModulePrefix and
      androidxMediaEnableMidiModule properties are no longer used.
DataDog/dd-sdk-kotlin-multiplatform (com.datadoghq:dd-sdk-kotlin-multiplatform-ktor3)

v1.8.0

Compare Source

  • [IMPROVEMENT] Add Configuration#setVersion API. See #​300
  • [IMPROVEMENT] Add UK1 datacenter support. See #​299
  • [MAINTENANCE] Update Kotlin, AGP and Gradle versions. See #​290
  • [MAINTENANCE] Generate compiler metadata information for Android and iOS/tvOS output binaries. See #​292
  • [MAINTENANCE] Update AGP version to 9.2.1, Gradle version to 9.5.1. See #​293
  • [MAINTENANCE] Use signed images in CI. See #​296
  • [MAINTENANCE] Update Datadog iOS SDK to 3.14.0, Datadog Android SDK to 3.12.1. See #​298
  • [MAINTENANCE] Bump iOS SDK used to version 3.15.0. See #​301
rive-app/rive-android (app.rive:rive-android)

v11.8.0

Compare Source

square/gradle-dependencies-sorter (com.squareup.sort-dependencies)

v0.21.0

  • [Feat]: sort dependency constraints blocks by default.
  • [Feat]: add --block and blocks(...) for sorting custom Gradle DSL blocks in Kotlin and Groovy build scripts.
  • [Fix]: preserve indentation in nested dependencies blocks.
  • [Fix]: fix partial matches in the dependency types being sorted backwards.
  • [Fix]: add missing dependency types androidTestCompileOnly and androidTestRuntimeOnly.
  • [Fix]: sort nested project paths after hyphenated siblings.
  • [Chore]: Update kotlin-editor to 0.26, which includes fixes for things like multi-dollar strings and lower Kotlin language version targeting to avoid kotlin-metadata-jvm conflicts and better Gradle 8.x compat.
ktorio/ktor (io.ktor:ktor-client-okhttp)

v3.5.2

Compare Source

Published 31 July 2026

Improvements
  • KTOR-8032 RateLimit: Allow limit requests based on authentication result
  • KTOR-9719 ApplicationCall.isStaticContent returns false when called from plugin interceptors
  • KTOR-8450 ContentNegotiation: it doesn't handle content type suffixes
  • KTOR-7892 SwaggerUI: Missing oauth2-redirect.html support in the plugin
  • KTOR-9759 Reject whitespace in URL hosts during parsing
  • KTOR-9681 Update kotlinx-io to 0.9.1
  • KTOR-9743 ByteReadChannel.readLineStrict: Misleading definition of limit parameter in KDocs
  • KTOR-9504 Improve KDoc for EmbeddedServer.addShutdownHook
Bugfixes
  • KTOR-9741 CIO: request-handler coroutine leak on half-closed idle connection after ≥1MB response
  • KTOR-7661 Maven + YAML config file does not work
  • KTOR-9585 OpenAPI: JsonSchema title is truncated when it contains a dot
  • KTOR-9704 UTF-8 encoding in ktor-io bypasses JVM String.getBytes intrinsics, slowing every text response by 5-7x
  • KTOR-9588 SSE client (CIO engine) sends spurious Content-Length: 0 on body-less GET (RFC 9110 § 8.6 violation; rejected by AWS ELB)
  • KTOR-9679 ByteReadChannel.readLine corrupts multi-byte UTF-8 by splitting a character at a buffer boundary
  • KTOR-9767 ByteReadChannel.readLineTo: Return read bytes count instead of decoded characters count
  • KTOR-8992 HoconConfigLoader is not loaded when ktor-server-config-yaml on the classpath
  • KTOR-9698 OpenAPI: schema for kotlinx.serialization sealed types omits discriminator property in variant schemas
  • KTOR-9690 Netty: in-flight requests are aborted on stop(), ignoring shutdown grace period
  • KTOR-8903 Netty: Close channel connection on errors properly
  • KTOR-9707 SaveBody performance regression
  • KTOR-9703 Inefficient text reading function in DefaultTransform
  • KTOR-9711 Netty HTTP/2: a single client-canceled stream (RST_STREAM) breaks response flushing for the whole connection
  • KTOR-9688 RateLimit: No access to principal when wrapped with authentication since 3.5.1
  • KTOR-9677 Auto-reloading: server is reloaded only once since 3.5.0
  • KTOR-9683 Sockets: Canceling a SelectorManager job doesn't close it properly
  • KTOR-9671 Darwin: Semicolons in URL path are sanitized
google/ksp (com.google.devtools.ksp)

v2.3.11

Compare Source

What's Changed

  • Support org.gradle.isolated-projects for project isolation (#​3051)
  • Fix premature kspDebugAndroidTest task skipping on Android library modules (#​3050)
  • Fix missing parent declaration exception for @NotNull annotations during incremental compilation (#​3030)
  • Clean output directories instead of skipping tasks when processor classpath transitions to empty (#​3046)
  • Fix build cache misses by marking KspGradleConfig.logLevel as @Internal (#​3039)
  • Add org.gradle.isolated-projects=true to KSP Gradle properties reference table (#​3076)
  • Add KSP Gradle properties reference table to README documentation (#​3070)
  • Document collection values in KSValueArgument.value (#​3069)
  • Update error messaging for `ksp.us

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
renovate Bot requested a review from a team as a code owner March 13, 2026 02:10
@renovate renovate Bot changed the title fix(deps): update all dependencies Update all dependencies Mar 13, 2026
@renovate
renovate Bot force-pushed the renovate/all branch 14 times, most recently from 846c4a5 to 88a68d2 Compare March 23, 2026 14:00
@renovate
renovate Bot force-pushed the renovate/all branch 13 times, most recently from e524490 to 3947c15 Compare March 30, 2026 08:55
@renovate
renovate Bot force-pushed the renovate/all branch 6 times, most recently from 31d40d6 to 25dca7a Compare April 8, 2026 20:12
@renovate renovate Bot changed the title fix(deps): update all dependencies Update all dependencies Apr 8, 2026
@renovate
renovate Bot force-pushed the renovate/all branch 18 times, most recently from 2e3642d to 9595c96 Compare April 15, 2026 11:14
@renovate
renovate Bot force-pushed the renovate/all branch 3 times, most recently from ff952cb to 044dd89 Compare April 16, 2026 09:36
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.

0 participants