Skip to content

chore(deps): bump the maven group across 1 directory with 15 updates - #27

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/manager/maven-382409d3b3
Open

chore(deps): bump the maven group across 1 directory with 15 updates#27
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/manager/maven-382409d3b3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the maven group with 15 updates in the /manager directory:

Package From To
gradle-wrapper 9.2.0 9.5.1
androidx.activity:activity-compose 1.12.4 1.13.0
androidx.compose:compose-bom 2026.02.01 2026.05.01
androidx.webkit:webkit 1.15.0 1.16.0
org.jetbrains.kotlinx:kotlinx-coroutines-core 1.10.2 1.11.0
androidx.navigation3:navigation3-runtime 1.1.0-alpha05 1.2.0-alpha03
androidx.navigationevent:navigationevent-compose 1.0.2 1.1.1
org.lsposed.libcxx:libcxx 29.0.13846066 29.0.14206865
top.yukonga.miuix.kmp:miuix-android 0.8.5 0.8.8
top.yukonga.miuix.kmp:miuix-icons-android 0.8.5 0.8.8
top.yukonga.miuix.kmp:miuix-navigation3-ui-android 0.8.5 0.8.8
com.android.application 9.0.1 9.2.1
org.jetbrains.kotlin.android 2.3.10 2.3.21
org.jetbrains.kotlin.plugin.compose 2.3.10 2.3.21
org.jetbrains.kotlin.plugin.serialization 2.3.10 2.3.21

Updates gradle-wrapper from 9.2.0 to 9.5.1

Release notes

Sourced from gradle-wrapper's releases.

9.5.1

The Gradle team is excited to announce Gradle 9.5.1.

Here are the highlights of this release:

  • Task provenance in reports and failure messages
  • Type-safe accessors for precompiled Kotlin Settings plugins

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle: atm1020, mataha, Adam, Attila Kelemen, Benedikt Ritter, Björn Kautler, Caro Silva Rode, CHANHAN, Dmitry Nezavitin, Eng Zer Jun, KugelLibelle, Madalin Valceleanu, Markus Gaisbauer, Oliver Kopp, Philip Wedemann, ploober, Roberto Perez Alcolea, Rohit Anand, Suvrat Acharya, Ujwal Suresh Vanjare, Victor Merkulov

Upgrade instructions

Switch your build to use Gradle 9.5.1 by updating your wrapper:

./gradlew wrapper --gradle-version=9.5.1 && ./gradlew wrapper

See the Gradle 9.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines. If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

9.5.0

... (truncated)

Commits
  • fd78213 Update Documentation Infrastructure: Fix scrolling issue in user manual (#37861)
  • 7758437 fix scroll
  • 2fd605f Only try to run as worker thread in DefaultBuildOperationQueue (#37845)
  • af69849 Release notes for Gradle 9.5.1 (#37853)
  • f4d9d03 Release notes for Gradle 9.5.1
  • 01eda3a Address review feedback on worker-lease retry changes
  • 7024e15 Revert enrich file visitor with size info on release branch (#37848)
  • d51476f Fix tryRunAsWorkerThread null-return test to match contract
  • 090ebab Revert "Add getLength() to FilePropertyVisitor.VisitState"
  • bceab24 Revert "Fix annotation"
  • Additional commits viewable in compare view

Updates androidx.activity:activity-compose from 1.12.4 to 1.13.0

Updates androidx.compose:compose-bom from 2026.02.01 to 2026.05.01

Updates androidx.webkit:webkit from 1.15.0 to 1.16.0

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's changelog.

Version 1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. Before, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

Version 1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

Version 1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Commits
  • 8564f65 Version 1.11.0
  • a4c6af9 Merge remote-tracking branch 'origin/master' into develop
  • ef917b4 KT-84955: mark apple x64 tagets as deprecated error (#4645)
  • 5ebc421 Update the release procedure description (#4670)
  • 95f46a0 Remove old maven repository settings (#4672)
  • b4f4f0a Fix package name of ToMapCollectionSamplesTest. (#4674)
  • 86738dc Added templates to the issue creation wizard (#4654)
  • 330fcc2 Version 1.11.0-rc02
  • e31cef6 Merge remote-tracking branch 'origin/master' into develop
  • dc6e9f6 Restore Promise-related functions on Wasm/JS as HIDDEN (#4661)
  • Additional commits viewable in compare view

Updates androidx.navigation3:navigation3-runtime from 1.1.0-alpha05 to 1.2.0-alpha03

Updates androidx.navigationevent:navigationevent-compose from 1.0.2 to 1.1.1

Updates org.lsposed.libcxx:libcxx from 29.0.13846066 to 29.0.14206865

Commits

Updates top.yukonga.miuix.kmp:miuix-android from 0.8.5 to 0.8.8

Release notes

Sourced from top.yukonga.miuix.kmp:miuix-android's releases.

v0.8.8

What's Changed

  • library: add ScrollBar component and integrate into example app by @​YuKongA
  • library: add RadioButton and SuperRadioButton components by @​YuKongA in #270
  • library: introduce smooth rounding control by @​YuKongA
  • library: add baseline profile support by @​YuKongA
  • library: implement baseline and startup profile conversion for Android by @​YuKongA
  • library: refactor component defaults into dedicated Defaults objects by @​YuKongA
  • library: refactor slider tick snapping by @​YuKongA
  • library: enhance animations and add color customization to TopAppBar by @​YuKongA
  • library: optimize Switch component animation and performance by @​YuKongA
  • library: optimize NavDisplay performance and predictive back handling by @​YuKongA
  • library: MiuixOverscrollEffect: enhance fling velocity handling and X-axis support by @​YuKongA
  • library: optimize layout performance and refactor components by @​YuKongA
  • library: optimize UI rendering and state management by @​YuKongA
  • library: optimize layout performance by using draw and graphics layer blocks by @​YuKongA
  • library: Improve Monet support for API36 by @​YuKongA
  • build: rename baseline profile by @​YuKongA in #269
  • example: Improve unidirectional data flow by @​YuKongA in #258
  • example: add monochrome launcher icon by @​YuKongA
  • fix(deps): update kotlin monorepo to v2.3.20 by @​renovate in #262
  • fix(deps): update jetbrains.compose.multiplatform to v1.10.3 by @​renovate in #267
  • fix(deps): update jetbrains.lifecycle to v2.10.0 by @​renovate in #266
  • fix(deps): update dependency androidx.activity:activity-compose to v1.13.0 by @​renovate in #260
  • fix(deps): update dependency androidx.navigation3:navigation3-runtime to v1.1.0-beta01 by @​renovate in #259
  • fix(deps): update dependency androidx.collection:collection to v1.6.0 by @​renovate in #261
  • fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v8.4.0 by @​renovate in #264
  • fix(deps): update about.libraries to v14.0.0-b03 by @​renovate in #263
  • chore(deps): update gradle to v9.4.1 by @​renovate in #265

Full Changelog: compose-miuix-ui/miuix@v0.8.7...v0.8.8

v0.8.7

What's Changed

Full Changelog: compose-miuix-ui/miuix@v0.8.6...v0.8.7

v0.8.6

... (truncated)

Commits
  • b6797a5 library: bump version to 0.8.8
  • 96723eb library: add ScrollBar component and integrate into example app
  • 8fc58e8 library: implement baseline and startup profile conversion for Android
  • a4adc26 library: refactor slider tick snapping
  • 0688803 library: optimize Switch component animation and performance
  • 752a76c library: enhance animations and add color customization to TopAppBar
  • ef12d4f library: add RadioButton and SuperRadioButton components (#270)
  • 33d7211 build: rename baseline profile (#269)
  • 46391ab library: introduce smooth rounding control
  • aec90f2 library: add baseline profile support
  • Additional commits viewable in compare view

Updates top.yukonga.miuix.kmp:miuix-icons-android from 0.8.5 to 0.8.8

Release notes

Sourced from top.yukonga.miuix.kmp:miuix-icons-android's releases.

v0.8.8

What's Changed

  • library: add ScrollBar component and integrate into example app by @​YuKongA
  • library: add RadioButton and SuperRadioButton components by @​YuKongA in #270
  • library: introduce smooth rounding control by @​YuKongA
  • library: add baseline profile support by @​YuKongA
  • library: implement baseline and startup profile conversion for Android by @​YuKongA
  • library: refactor component defaults into dedicated Defaults objects by @​YuKongA
  • library: refactor slider tick snapping by @​YuKongA
  • library: enhance animations and add color customization to TopAppBar by @​YuKongA
  • library: optimize Switch component animation and performance by @​YuKongA
  • library: optimize NavDisplay performance and predictive back handling by @​YuKongA
  • library: MiuixOverscrollEffect: enhance fling velocity handling and X-axis support by @​YuKongA
  • library: optimize layout performance and refactor components by @​YuKongA
  • library: optimize UI rendering and state management by @​YuKongA
  • library: optimize layout performance by using draw and graphics layer blocks by @​YuKongA
  • library: Improve Monet support for API36 by @​YuKongA
  • build: rename baseline profile by @​YuKongA in #269
  • example: Improve unidirectional data flow by @​YuKongA in #258
  • example: add monochrome launcher icon by @​YuKongA
  • fix(deps): update kotlin monorepo to v2.3.20 by @​renovate in #262
  • fix(deps): update jetbrains.compose.multiplatform to v1.10.3 by @​renovate in #267
  • fix(deps): update jetbrains.lifecycle to v2.10.0 by @​renovate in #266
  • fix(deps): update dependency androidx.activity:activity-compose to v1.13.0 by @​renovate in #260
  • fix(deps): update dependency androidx.navigation3:navigation3-runtime to v1.1.0-beta01 by @​renovate in #259
  • fix(deps): update dependency androidx.collection:collection to v1.6.0 by @​renovate in #261
  • fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v8.4.0 by @​renovate in #264
  • fix(deps): update about.libraries to v14.0.0-b03 by @​renovate in #263
  • chore(deps): update gradle to v9.4.1 by @​renovate in #265

Full Changelog: compose-miuix-ui/miuix@v0.8.7...v0.8.8

v0.8.7

What's Changed

Full Changelog: compose-miuix-ui/miuix@v0.8.6...v0.8.7

v0.8.6

... (truncated)

Commits
  • b6797a5 library: bump version to 0.8.8
  • 96723eb library: add ScrollBar component and integrate into example app
  • 8fc58e8 library: implement baseline and startup profile conversion for Android
  • a4adc26 library: refactor slider tick snapping
  • 0688803 library: optimize Switch component animation and performance
  • 752a76c library: enhance animations and add color customization to TopAppBar
  • ef12d4f library: add RadioButton and SuperRadioButton components (#270)
  • 33d7211 build: rename baseline profile (#269)
  • 46391ab library: introduce smooth rounding control
  • aec90f2 library: add baseline profile support
  • Additional commits viewable in compare view

Updates top.yukonga.miuix.kmp:miuix-navigation3-ui-android from 0.8.5 to 0.8.8

Release notes

Sourced from top.yukonga.miuix.kmp:miuix-navigation3-ui-android's releases.

v0.8.8

What's Changed

  • library: add ScrollBar component and integrate into example app by @​YuKongA
  • library: add RadioButton and SuperRadioButton components by @​YuKongA in #270
  • library: introduce smooth rounding control by @​YuKongA
  • library: add baseline profile support by @​YuKongA
  • library: implement baseline and startup profile conversion for Android by @​YuKongA
  • library: refactor component defaults into dedicated Defaults objects by @​YuKongA
  • library: refactor slider tick snapping by @​YuKongA
  • library: enhance animations and add color customization to TopAppBar by @​YuKongA
  • library: optimize Switch component animation and performance by @​YuKongA
  • library: optimize NavDisplay performance and predictive back handling by @​YuKongA
  • library: MiuixOverscrollEffect: enhance fling velocity handling and X-axis support by @​YuKongA
  • library: optimize layout performance and refactor components by @​YuKongA
  • library: optimize UI rendering and state management by @​YuKongA
  • library: optimize layout performance by using draw and graphics layer blocks by @​YuKongA
  • library: Improve Monet support for API36 by @​YuKongA
  • build: rename baseline profile by @​YuKongA in #269
  • example: Improve unidirectional data flow by @​YuKongA in #258
  • example: add monochrome launcher icon by @​YuKongA
  • fix(deps): update kotlin monorepo to v2.3.20 by @​renovate in #262
  • fix(deps): update jetbrains.compose.multiplatform to v1.10.3 by @​renovate in #267
  • fix(deps): update jetbrains.lifecycle to v2.10.0 by @​renovate in #266
  • fix(deps): update dependency androidx.activity:activity-compose to v1.13.0 by @​renovate in #260
  • fix(deps): update dependency androidx.navigation3:navigation3-runtime to v1.1.0-beta01 by @​renovate in #259
  • fix(deps): update dependency androidx.collection:collection to v1.6.0 by @​renovate in #261
  • fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v8.4.0 by @​renovate in #264
  • fix(deps): update about.libraries to v14.0.0-b03 by @​renovate in #263
  • chore(deps): update gradle to v9.4.1 by @​renovate in #265

Full Changelog: compose-miuix-ui/miuix@v0.8.7...v0.8.8

v0.8.7

What's Changed

Full Changelog: compose-miuix-ui/miuix@v0.8.6...v0.8.7

v0.8.6

... (truncated)

Commits
  • b6797a5 library: bump version to 0.8.8
  • 96723eb library: add ScrollBar component and integrate into example app
  • 8fc58e8 library: implement baseline and startup profile conversion for Android
  • a4adc26 library: refactor slider tick snapping
  • 0688803 library: optimize Switch component animation and performance
  • 752a76c library: enhance animations and add color customization to TopAppBar
  • ef12d4f library: add RadioButton and SuperRadioButton components (#270)
  • 33d7211 build: rename baseline profile (#269)
  • 46391ab library: introduce smooth rounding control
  • aec90f2 library: add baseline profile support
  • Additional commits viewable in compare view

Updates top.yukonga.miuix.kmp:miuix-icons-android from 0.8.5 to 0.8.8

Release notes

Sourced from top.yukonga.miuix.kmp:miuix-icons-android's releases.

v0.8.8

What's Changed

  • library: add ScrollBar component and integrate into example app by @​YuKongA
  • library: add RadioButton and SuperRadioButton components by @​YuKongA in #270
  • library: introduce smooth rounding control by @​YuKongA
  • library: add baseline profile support by @​YuKongA
  • library: implement baseline and startup profile conversion for Android by @​YuKongA
  • library: refactor component defaults into dedicated Defaults objects by @​YuKongA
  • library: refactor slider tick snapping by @​YuKongA
  • library: enhance animations and add color customization to TopAppBar by @​YuKongA
  • library: optimize Switch component animation and performance by @​YuKongA
  • library: optimize NavDisplay performance and predictive back handling by @​YuKongA
  • library: MiuixOverscrollEffect: enhance fling velocity handling and X-axis support by @​YuKongA
  • library: optimize layout performance and refactor components by @​YuKongA
  • library: optimize UI rendering and state management by @​YuKongA
  • library: optimize layout performance by using draw and graphics layer blocks by @​YuKongA
  • library: Improve Monet support for API36 by @​YuKongA
  • build: rename baseline profile by @​YuKongA in #269
  • example: Improve unidirectional data flow by @​YuKongA in #258
  • example: add monochrome launcher icon by @​YuKongA
  • fix(deps): update kotlin monorepo to v2.3.20 by @​renovate in #262
  • fix(deps): update jetbrains.compose.multiplatform to v1.10.3 by @​renovate in #267
  • fix(deps): update jetbrains.lifecycle to v2.10.0 by @​renovate in #266
  • fix(deps): update dependency androidx.activity:activity-compose to v1.13.0 by @​renovate in #260
  • fix(deps): update dependency androidx.navigation3:navigation3-runtime to v1.1.0-beta01 by @​renovate in #259
  • fix(deps): update dependency androidx.collection:collection to v1.6.0 by @​renovate in #261
  • fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v8.4.0 by @​renovate in #264
  • fix(deps): update about.libraries to v14.0.0-b03 by @​renovate in #263
  • chore(deps): update gradle to v9.4.1 by @​renovate in #265

Full Changelog: compose-miuix-ui/miuix@v0.8.7...v0.8.8

v0.8.7

What's Changed

Full Changelog: compose-miuix-ui/miuix@v0.8.6...v0.8.7

v0.8.6

... (truncated)

Commits
  • b6797a5 library: bump version to 0.8.8
  • 96723eb library: add ScrollBar component and integrate into example app
  • 8fc58e8 library: implement baseline and startup profile conversion for Android
  • a4adc26 library: refactor slider tick snapping
  • 0688803 library: optimize Switch component animation and performance
  • 752a76c library: enhance animations and add color customization to TopAppBar
  • ef12d4f library: add RadioButton and SuperRadioButton components (#270)
  • 33d7211 build: rename baseline profile (#269)
  • 46391ab library: introduce smooth rounding control
  • aec90f2 library: add baseline profile support
  • Additional commits viewable in compare view

Updates top.yukonga.miuix.kmp:miuix-navigation3-ui-android from 0.8.5 to 0.8.8

Release notes

Sourced from top.yukonga.miuix.kmp:miuix-navigation3-ui-android's releases.

v0.8.8

What's Changed

  • library: add ScrollBar component and integrate into example app by @​YuKongA
  • library: add RadioButton and SuperRadioButton components by @​YuKongA in #270
  • library: introduce smooth rounding control by @​YuKongA
  • library: add baseline profile support by @​YuKongA
  • library: implement baseline and startup profile conversion for Android by @​YuKongA
  • library: refactor component defaults into dedicated Defaults objects by @​YuKongA
  • library: refactor slider tick snapping by @​YuKongA
  • library: enhance animations and add color customization to TopAppBar by @​YuKongA
  • library: optimize Switch component animat...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels May 10, 2026
@dependabot dependabot Bot changed the title build(deps): bump the maven group across 1 directory with 15 updates chore(deps): bump the maven group across 1 directory with 15 updates May 22, 2026
@dependabot
dependabot Bot force-pushed the dependabot/gradle/manager/maven-382409d3b3 branch from f88a3fb to a59c269 Compare May 22, 2026 04:13
Bumps the maven group with 15 updates in the /manager directory:

| Package | From | To |
| --- | --- | --- |
| [gradle-wrapper](https://github.com/gradle/gradle) | `9.2.0` | `9.5.1` |
| androidx.activity:activity-compose | `1.12.4` | `1.13.0` |
| androidx.compose:compose-bom | `2026.02.01` | `2026.05.01` |
| androidx.webkit:webkit | `1.15.0` | `1.16.0` |
| [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.10.2` | `1.11.0` |
| androidx.navigation3:navigation3-runtime | `1.1.0-alpha05` | `1.2.0-alpha03` |
| androidx.navigationevent:navigationevent-compose | `1.0.2` | `1.1.1` |
| [org.lsposed.libcxx:libcxx](https://github.com/LSPosed/prefab-libcxx) | `29.0.13846066` | `29.0.14206865` |
| [top.yukonga.miuix.kmp:miuix-android](https://github.com/compose-miuix-ui/miuix) | `0.8.5` | `0.8.8` |
| [top.yukonga.miuix.kmp:miuix-icons-android](https://github.com/compose-miuix-ui/miuix) | `0.8.5` | `0.8.8` |
| [top.yukonga.miuix.kmp:miuix-navigation3-ui-android](https://github.com/compose-miuix-ui/miuix) | `0.8.5` | `0.8.8` |
| com.android.application | `9.0.1` | `9.2.1` |
| [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) | `2.3.10` | `2.3.21` |
| [org.jetbrains.kotlin.plugin.compose](https://github.com/JetBrains/kotlin) | `2.3.10` | `2.3.21` |
| [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin) | `2.3.10` | `2.3.21` |



Updates `gradle-wrapper` from 9.2.0 to 9.5.1
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v9.2.0...v9.5.1)

Updates `androidx.activity:activity-compose` from 1.12.4 to 1.13.0

Updates `androidx.compose:compose-bom` from 2026.02.01 to 2026.05.01

Updates `androidx.webkit:webkit` from 1.15.0 to 1.16.0

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `androidx.navigation3:navigation3-runtime` from 1.1.0-alpha05 to 1.2.0-alpha03

Updates `androidx.navigationevent:navigationevent-compose` from 1.0.2 to 1.1.1

Updates `org.lsposed.libcxx:libcxx` from 29.0.13846066 to 29.0.14206865
- [Commits](https://github.com/LSPosed/prefab-libcxx/commits/29.0.14206865)

Updates `top.yukonga.miuix.kmp:miuix-android` from 0.8.5 to 0.8.8
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](compose-miuix-ui/miuix@v0.8.5...v0.8.8)

Updates `top.yukonga.miuix.kmp:miuix-icons-android` from 0.8.5 to 0.8.8
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](compose-miuix-ui/miuix@v0.8.5...v0.8.8)

Updates `top.yukonga.miuix.kmp:miuix-navigation3-ui-android` from 0.8.5 to 0.8.8
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](compose-miuix-ui/miuix@v0.8.5...v0.8.8)

Updates `top.yukonga.miuix.kmp:miuix-icons-android` from 0.8.5 to 0.8.8
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](compose-miuix-ui/miuix@v0.8.5...v0.8.8)

Updates `top.yukonga.miuix.kmp:miuix-navigation3-ui-android` from 0.8.5 to 0.8.8
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](compose-miuix-ui/miuix@v0.8.5...v0.8.8)

Updates `com.android.application` from 9.0.1 to 9.2.1

Updates `org.jetbrains.kotlin.android` from 2.3.10 to 2.3.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.3.10...v2.3.21)

Updates `org.jetbrains.kotlin.plugin.compose` from 2.3.10 to 2.3.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.3.10...v2.3.21)

Updates `org.jetbrains.kotlin.plugin.serialization` from 2.3.10 to 2.3.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.3.10...v2.3.21)

Updates `org.jetbrains.kotlin.plugin.compose` from 2.3.10 to 2.3.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.3.10...v2.3.21)

Updates `org.jetbrains.kotlin.plugin.serialization` from 2.3.10 to 2.3.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.3.10...v2.3.21)

---
updated-dependencies:
- dependency-name: androidx.activity:activity-compose
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: androidx.compose:compose-bom
  dependency-version: 2026.05.00
  dependency-type: direct:production
  dependency-group: maven
- dependency-name: androidx.navigation3:navigation3-runtime
  dependency-version: 1.2.0-alpha02
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: androidx.navigationevent:navigationevent-compose
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: androidx.webkit:webkit
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: com.android.application
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: gradle-wrapper
  dependency-version: 9.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.android
  dependency-version: 2.3.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.3.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.3.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.serialization
  dependency-version: 2.3.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.serialization
  dependency-version: 2.3.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: org.lsposed.libcxx:libcxx
  dependency-version: 29.0.14206865
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: top.yukonga.miuix.kmp:miuix-android
  dependency-version: 0.8.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: top.yukonga.miuix.kmp:miuix-icons-android
  dependency-version: 0.8.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: top.yukonga.miuix.kmp:miuix-icons-android
  dependency-version: 0.8.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: top.yukonga.miuix.kmp:miuix-navigation3-ui-android
  dependency-version: 0.8.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: top.yukonga.miuix.kmp:miuix-navigation3-ui-android
  dependency-version: 0.8.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/gradle/manager/maven-382409d3b3 branch from a59c269 to 0275cbb Compare May 24, 2026 14:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants