Skip to content

build(deps): bump the maven group across 1 directory with 14 updates#285

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/manager/maven-510232d1a6
Open

build(deps): bump the maven group across 1 directory with 14 updates#285
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/manager/maven-510232d1a6

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 14, 2026

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

Package From To
gradle-wrapper 9.2.0 9.3.1
androidx.activity:activity-compose 1.12.2 1.12.4
androidx.navigation:navigation-compose 2.9.6 2.9.7
androidx.compose:compose-bom 2025.12.01 2026.02.00
top.yukonga.miuix.kmp:miuix-android 0.8.0-rc04 0.8.1
top.yukonga.miuix.kmp:miuix-icons-android 0.8.0-rc04 0.8.1
dev.chrisbanes.haze:haze-android 1.7.1 1.7.2
io.github.kyant0:capsule 2.1.2 2.1.3
com.android.application 8.13.2 9.0.1
com.android.library 8.13.2 9.0.1
org.jetbrains.kotlin.android 2.3.0 2.3.10
org.jetbrains.kotlin.plugin.compose 2.3.0 2.3.10
com.google.devtools.ksp 2.3.4 2.3.5
org.lsposed.lsplugin.cmaker 1.2 1.3

Updates gradle-wrapper from 9.2.0 to 9.3.1

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

Updates androidx.navigation:navigation-compose from 2.9.6 to 2.9.7

Updates androidx.compose:compose-bom from 2025.12.01 to 2026.02.00

Updates top.yukonga.miuix.kmp:miuix-android from 0.8.0-rc04 to 0.8.1

Release notes

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

v0.8.0

Highlights

  • Add WindowDialog / WindowBottomSheet / WindowListPopup / WindowDropdown / WindowSpinner components
  • Refactor Monet color support
  • Replicate HyperOS3 Slider Effect
  • Replicate HyperOS3 Switch Effect
  • Replicate HyperOS3 TabRow Effect
  • Replicate HyperOS3 Checkbox Effect
  • Replicate HyperOS3 Dropdown Effect
  • Migrate all Modifier.composed to Modifier.Node
  • Migrate to official NavigationBackHandler
  • Use Modifier.draggable instead of Modifier.detect*DragGestures
  • Improve RTL support

Existing Components/APIs Changes

  • Icons are now stored separately in the miuix-icons
  • Renamed original Listpopup to SuperListPopup
  • Removed getWindowSize, please use the official LocalWindowInfo instead
  • Parameters previously related to Left and Right have been renamed to Start and End

What's Changed

... (truncated)

Commits

Updates top.yukonga.miuix.kmp:miuix-icons-android from 0.8.0-rc04 to 0.8.1

Release notes

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

v0.8.0

Highlights

  • Add WindowDialog / WindowBottomSheet / WindowListPopup / WindowDropdown / WindowSpinner components
  • Refactor Monet color support
  • Replicate HyperOS3 Slider Effect
  • Replicate HyperOS3 Switch Effect
  • Replicate HyperOS3 TabRow Effect
  • Replicate HyperOS3 Checkbox Effect
  • Replicate HyperOS3 Dropdown Effect
  • Migrate all Modifier.composed to Modifier.Node
  • Migrate to official NavigationBackHandler
  • Use Modifier.draggable instead of Modifier.detect*DragGestures
  • Improve RTL support

Existing Components/APIs Changes

  • Icons are now stored separately in the miuix-icons
  • Renamed original Listpopup to SuperListPopup
  • Removed getWindowSize, please use the official LocalWindowInfo instead
  • Parameters previously related to Left and Right have been renamed to Start and End

What's Changed

... (truncated)

Commits

Updates top.yukonga.miuix.kmp:miuix-icons-android from 0.8.0-rc04 to 0.8.1

Release notes

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

v0.8.0

Highlights

  • Add WindowDialog / WindowBottomSheet / WindowListPopup / WindowDropdown / WindowSpinner components
  • Refactor Monet color support
  • Replicate HyperOS3 Slider Effect
  • Replicate HyperOS3 Switch Effect
  • Replicate HyperOS3 TabRow Effect
  • Replicate HyperOS3 Checkbox Effect
  • Replicate HyperOS3 Dropdown Effect
  • Migrate all Modifier.composed to Modifier.Node
  • Migrate to official NavigationBackHandler
  • Use Modifier.draggable instead of Modifier.detect*DragGestures
  • Improve RTL support

Existing Components/APIs Changes

  • Icons are now stored separately in the miuix-icons
  • Renamed original Listpopup to SuperListPopup
  • Removed getWindowSize, please use the official LocalWindowInfo instead
  • Parameters previously related to Left and Right have been renamed to Start and End

What's Changed

... (truncated)

Commits

Updates dev.chrisbanes.haze:haze-android from 1.7.1 to 1.7.2

Release notes

Sourced from dev.chrisbanes.haze:haze-android's releases.

1.7.2

What's Changed

Full Changelog: chrisbanes/haze@1.7.1...1.7.2

Changelog

Sourced from dev.chrisbanes.haze:haze-android's changelog.

Changelog

All notable changes to this project are documented here.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

2.0.0 WIP TBD { id="2.0.0" }

Major architectural refactor introducing a pluggable visual effects system for improved modularity and extensibility.

Highlights

New VisualEffect Interface

Haze now uses a VisualEffect interface that separates the core effect infrastructure from specific effect implementations. This enables better separation of concerns, a smaller core module, and potential for custom visual effects in the future.

New haze-blur Module

All blur functionality has been extracted from the core haze module into a separate haze-blur module:

implementation("dev.chrisbanes.haze:haze:2.0.0")
implementation("dev.chrisbanes.haze:haze-blur:2.0.0")

New blurEffect {} API

All blur-related properties now require a blurEffect {} wrapper:

Modifier.hazeEffect(state = hazeState) {
  blurEffect {
    blurRadius = 20.dp
    tints = listOf(HazeTint(...))
  }
}

Breaking Changes

  • New module dependency: Blur functionality now requires the haze-blur module
  • API nesting: Blur properties (blurRadius, tints, style, noiseFactor, progressive, mask, etc.) now require blurEffect {} wrapper
  • Package changes: Blur classes moved to dev.chrisbanes.haze.blur package:
    • HazeStyledev.chrisbanes.haze.blur.HazeStyle
    • HazeTintdev.chrisbanes.haze.blur.HazeTint
    • HazeProgressivedev.chrisbanes.haze.blur.HazeProgressive
    • LocalHazeStyledev.chrisbanes.haze.blur.LocalHazeStyle
  • Removed APIs: rememberHazeState(blurEnabled) parameter removed (use blurEffect { blurEnabled = ... })

... (truncated)

Commits

Updates io.github.kyant0:capsule from 2.1.2 to 2.1.3

Commits

Updates com.android.application from 8.13.2 to 9.0.1

Updates com.android.library from 8.13.2 to 9.0.1

Updates com.android.library from 8.13.2 to 9.0.1

Updates org.jetbrains.kotlin.android from 2.3.0 to 2.3.10

Release notes

Sourced from org.jetbrains.kotlin.android's releases.

Kotlin 2.3.10

Changelog

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83983 Revert of KT-83081
  • KT-83314 JSpecify @NullMarked changes Java equals(Object) to equals(Any?) causing override conflict in Kotlin 2.3
  • KT-82863 @NoInfer regression since 2.2.20
  • KT-82841 "kotlin.NoWhenBranchMatchedException" in when with !is check & non-sealed class in the middle of hierarchy

JVM. Reflection

  • KT-83608 Kotlin-reflect: "Unknown origin of public abstract operator fun invoke(p1: P1, p2: P2): R"
  • KT-83361 "KotlinReflectionInternalError: Type parameter not found: 0" on super types with Kotlin 2.3.0
  • KT-42199 "KotlinReflectionInternalError: Unknown origin of public abstract operator fun invoke" on function reference to FunctionN.invoke
  • KT-81024 Reflection: New KType implementation fails on arguments comparison for a Nothing type parameter

Tools. Compiler Plugins

  • KT-83266 "Unsupported class file major version 69" for "produceReleaseComposeMapping" task with Kotlin 2.3
  • KT-83099 Compose compiler does not generate stack trace mappings for project files

Tools. Gradle

  • KT-83070 The KGP api reference is missing a description
  • KT-82459 Improve iOS simulator boot implementation

Tools. Gradle. JS

  • KT-82946 Js, Wasm: Upgrade NPM dependencies

Tools. Gradle. Multiplatform

  • KT-83687 Revert deprecation of 'androidTarget' for AGP lower than 9

Kotlin 2.3.10-RC2

ChangeLog

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83983 Revert of KT-83081

Kotlin 2.3.10-RC

Changelog

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.android's changelog.

2.3.10

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83983 Revert of KT-83081
  • KT-83314 JSpecify @NullMarked changes Java equals(Object) to equals(Any?) causing override conflict in Kotlin 2.3
  • KT-82863 @NoInfer regression since 2.2.20
  • KT-82841 "kotlin.NoWhenBranchMatchedException" in when with !is check & non-sealed class in the middle of hierarchy

JVM. Reflection

  • KT-83608 Kotlin-reflect: "Unknown origin of public abstract operator fun invoke(p1: P1, p2: P2): R"
  • KT-83361 "KotlinReflectionInternalError: Type parameter not found: 0" on super types with Kotlin 2.3.0
  • KT-42199 "KotlinReflectionInternalError: Unknown origin of public abstract operator fun invoke" on function reference to FunctionN.invoke
  • KT-81024 Reflection: New KType implementation fails on arguments comparison for a Nothing type parameter

Tools. Compiler Plugins

  • KT-83266 "Unsupported class file major version 69" for "produceReleaseComposeMapping" task with Kotlin 2.3
  • KT-83099 Compose compiler does not generate stack trace mappings for project files

Tools. Gradle

  • KT-83070 The KGP api reference is missing a description
  • KT-82459 Improve iOS simulator boot implementation

Tools. Gradle. JS

  • KT-82946 Js, Wasm: Upgrade NPM dependencies

Tools. Gradle. Multiplatform

  • KT-83687 Revert deprecation of 'androidTarget' for AGP lower than 9
Commits
  • 679366a Add ChangeLog for 2.3.10-RC2
  • 14ba833 Serialization: remove potential data race during extension registration
  • fb8d334 Revert "K2: implement equality for ConeAttribute.EnhancedNullability"
  • 412afb7 Add ChangeLog for 2.3.10-RC
  • edea41e [Gradle] Un-deprecate 'androidTarget()'
  • 0946452 Bump version of the ASM dependency
  • 655fb78 Reflection: always compute JVM signature of built-in functions manually
  • 58d3875 Fix mergeReleaseComposeMapping task failure when build cache is enabled
  • 56e0a79 Copy R8 outputs to Compose folder when transforming obfuscation file
  • e0eb174 Fix classId for detecting protobuf enums
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlin.plugin.compose from 2.3.0 to 2.3.10

Release notes

Sourced from org.jetbrains.kotlin.plugin.compose's releases.

Kotlin 2.3.10

Changelog

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83983 Revert of KT-83081
  • KT-83314 JSpecify @NullMarked changes Java equals(Object) to equals(Any?) causing override conflict in Kotlin 2.3
  • KT-82863 @NoInfer regression since 2.2.20
  • KT-82841 "kotlin.NoWhenBranchMatchedException" in when with !is check & non-sealed class in the middle of hierarchy

JVM. Reflection

  • KT-83608 Kotlin-reflect: "Unknown origin of public abstract operator fun invoke(p1: P1, p2: P2): R"
  • KT-83361 "KotlinReflectionInternalError: Type parameter not found: 0" on super types with Kotlin 2.3.0
  • KT-42199 "KotlinReflectionInternalError: Unknown origin of public abstract operator fun invoke" on function reference to FunctionN.invoke
  • KT-81024 Reflection: New KType implementation fails on arguments comparison for a Nothing type parameter

Tools. Compiler Plugins

  • KT-83266 "Unsupported class file major version 69" for "produceReleaseComposeMapping" task with Kotlin 2.3
  • KT-83099 Compose compiler does not generate stack trace mappings for project files

Tools. Gradle

  • KT-83070 The KGP api reference is missing a description
  • KT-82459 Improve iOS simulator boot implementation

Tools. Gradle. JS

  • KT-82946 Js, Wasm: Upgrade NPM dependencies

Tools. Gradle. Multiplatform

  • KT-83687 Revert deprecation of 'androidTarget' for AGP lower than 9

Kotlin 2.3.10-RC2

ChangeLog

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83983 Revert of KT-83081

Kotlin 2.3.10-RC

Changelog

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.plugin.compose's changelog.

2.3.10

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83983 Revert of KT-83081
  • KT-83314 JSpecify @NullMarked changes Java equals(Object) to equals(Any?) causing override conflict in Kotlin 2.3
  • KT-82863 @NoInfer regression since 2.2.20
  • KT-82841 "kotlin.NoWhenBranchMatchedException" in when with !is check & non-sealed class in the middle of hierarchy

JVM. Reflection

  • KT-83608 Kotlin-reflect: "Unknown origin of public abstract operator fun invoke(p1: P1, p2: P2): R"
  • KT-83361 "KotlinReflectionInternalError: Type parameter not found: 0" on super types with Kotlin 2.3.0
  • KT-42199 "KotlinReflectionInternalError: Unknown origin of public abstract operator fun invoke" on function reference to FunctionN.invoke
  • KT-81024 Reflection: New KType implementation fails on arguments comparison for a Nothing type parameter

Tools. Compiler Plugins

  • KT-83266 "Unsupported class file major version 69" for "produceReleaseComposeMapping" task with Kotlin 2.3
  • KT-83099 Compose compiler does not generate stack trace mappings for project files

Tools. Gradle

  • KT-83070 The KGP api reference is missing a description
  • KT-82459 Improve iOS simulator boot implementation

Tools. Gradle. JS

  • KT-82946 Js, Wasm: Upgrade NPM dependencies

Tools. Gradle. Multiplatform

  • KT-83687 Revert deprecation of 'androidTarget' for AGP lower than 9
Commits
  • 679366a Add ChangeLog for 2.3.10-RC2
  • 14ba833 Serialization: remove potential data race during extension registration
  • fb8d334 Revert "K2: implement equality for ConeAttribute.EnhancedNullability"
  • 412afb7 Add ChangeLog for 2.3.10-RC
  • edea41e [Gradle] Un-deprecate 'androidTarget()'
  • 0946452 Bump version of the ASM dependency
  • 655fb78 Reflection: always compute JVM signature of built-in functions manually
  • 58d3875 Fix mergeReleaseComposeMapping task failure when build cache is enabled
  • 56e0a79 Copy R8 outputs to Compose folder when transforming obfuscation file
  • e0eb174 Fix classId for detecting protobuf enums
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlin.plugin.compose from 2.3.0 to 2.3.10

Release notes

Sourced from org.jetbrains.kotlin.plugin.compose's releases.

Kotlin 2.3.10

Changelog

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83983 Revert of KT-83081
  • KT-83314 JSpecify @NullMarked changes Java equals(Object) to equals(Any?) causing override conflict in Kotlin 2.3
  • KT-82863 @NoInfer regression since 2.2.20
  • KT-82841 "kotlin.NoWhenBranchMatchedException" in when with !is check & non-sealed class in the middle of hierarchy

JVM. Reflection

  • KT-83608 Kotlin-reflect: "Unknown origin of public abstract operator fun invoke(p1: P1, p2: P2): R"
  • KT-83361 "KotlinReflectionInternalError: Type parameter not found: 0" on super types with Kotlin 2.3.0
  • KT-42199 "KotlinReflectionInternalError: Unknown origin of public abstract operator fun invoke" on function reference to FunctionN.invoke
  • KT-81024 Reflection: New KType implementation fails on arguments comparison for a Nothing type parameter

Tools. Compiler Plugins

  • KT-83266 "Unsupported class file major version 69" for "produceReleaseComposeMapping" task with Kotlin 2.3
  • KT-83099 Compose compiler does not generate stack trace mappings for project files

Tools. Gradle

  • KT-83070 The KGP api reference is missing a description
  • KT-82459 Improve iOS simulator boot implementation

Tools. Gradle. JS

  • KT-82946 Js, Wasm: Upgrade NPM dependencies

Tools. Gradle. Multiplatform

  • KT-83687 Revert deprecation of 'androidTarget' for AGP lower than 9

Kotlin 2.3.10-RC2

ChangeLog

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83983 Revert of KT-83081

Kotlin 2.3.10-RC

Changelog

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.plugin.compose's changelog.

2.3.10

Compiler

  • KT-83984 Data races around kotlinx.serialization plugin protobuf extensions registration
  • KT-83317 ClassCastException: with cast kotlin.UInt to java.lang.Number when defining constant
  • KT-83031 K2: unstable resolution of EnhancedNullability from type-use NotNull in presence of unused code
  • KT-81700 flaky overload resolution behaviors (false-positive errors, different final candidates, compile-time failures)
  • KT-83983 Revert of KT-83081
  • KT-83314 JSpecify @NullMarked changes Java equals(Object) to equals(Any?) causing override conflict in Kotlin 2.3
  • KT-82863 @NoInfer regression since 2.2.20
  • KT-82841 "kotlin.NoWhenBranchMatchedException" in when with !is check & non-sealed class in the middle of hierarchy

JVM. Reflection

  • KT-83608 Kotlin-reflect: "Unknown origin of public abstract operator fun invoke(p1: P1, p2: P2): R"
  • KT-83361 "KotlinReflectionInternalError: Type parameter not found: 0" on super types with Kotlin 2.3.0
  • KT-42199 "KotlinReflectionInternalError: Unknown origin of public abstract operator fun invoke" on function reference to FunctionN.invoke
  • KT-81024 Reflection: New KType implementation fails on arguments comparison for a Nothing type parameter

Tools. Compiler Plugins

  • KT-83266 "Unsupported class file major version 69" for "produceReleaseComposeMapping" task with Kotlin 2.3
  • KT-83099 Compose compiler does not generate stack trace mappings for project files

Tools. Gradle

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

| Package | From | To |
| --- | --- | --- |
| gradle-wrapper | `9.2.0` | `9.3.1` |
| androidx.activity:activity-compose | `1.12.2` | `1.12.4` |
| androidx.navigation:navigation-compose | `2.9.6` | `2.9.7` |
| androidx.compose:compose-bom | `2025.12.01` | `2026.02.00` |
| [top.yukonga.miuix.kmp:miuix-android](https://github.com/compose-miuix-ui/miuix) | `0.8.0-rc04` | `0.8.1` |
| [top.yukonga.miuix.kmp:miuix-icons-android](https://github.com/compose-miuix-ui/miuix) | `0.8.0-rc04` | `0.8.1` |
| [dev.chrisbanes.haze:haze-android](https://github.com/chrisbanes/haze) | `1.7.1` | `1.7.2` |
| [io.github.kyant0:capsule](https://github.com/Kyant0/Capsule) | `2.1.2` | `2.1.3` |
| com.android.application | `8.13.2` | `9.0.1` |
| com.android.library | `8.13.2` | `9.0.1` |
| [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) | `2.3.0` | `2.3.10` |
| [org.jetbrains.kotlin.plugin.compose](https://github.com/JetBrains/kotlin) | `2.3.0` | `2.3.10` |
| [com.google.devtools.ksp](https://github.com/google/ksp) | `2.3.4` | `2.3.5` |
| [org.lsposed.lsplugin.cmaker](https://github.com/LSPosed/LSPlugin) | `1.2` | `1.3` |



Updates `gradle-wrapper` from 9.2.0 to 9.3.1

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

Updates `androidx.navigation:navigation-compose` from 2.9.6 to 2.9.7

Updates `androidx.compose:compose-bom` from 2025.12.01 to 2026.02.00

Updates `top.yukonga.miuix.kmp:miuix-android` from 0.8.0-rc04 to 0.8.1
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](https://github.com/compose-miuix-ui/miuix/commits)

Updates `top.yukonga.miuix.kmp:miuix-icons-android` from 0.8.0-rc04 to 0.8.1
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](https://github.com/compose-miuix-ui/miuix/commits)

Updates `top.yukonga.miuix.kmp:miuix-icons-android` from 0.8.0-rc04 to 0.8.1
- [Release notes](https://github.com/compose-miuix-ui/miuix/releases)
- [Commits](https://github.com/compose-miuix-ui/miuix/commits)

Updates `dev.chrisbanes.haze:haze-android` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/chrisbanes/haze/releases)
- [Changelog](https://github.com/chrisbanes/haze/blob/main/CHANGELOG.md)
- [Commits](chrisbanes/haze@1.7.1...1.7.2)

Updates `io.github.kyant0:capsule` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/Kyant0/Capsule/releases)
- [Commits](Kyant0/Capsule@2.1.2...2.1.3)

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

Updates `com.android.library` from 8.13.2 to 9.0.1

Updates `com.android.library` from 8.13.2 to 9.0.1

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

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

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

Updates `com.google.devtools.ksp` from 2.3.4 to 2.3.5
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](google/ksp@2.3.4...2.3.5)

Updates `org.lsposed.lsplugin.cmaker` from 1.2 to 1.3
- [Commits](https://github.com/LSPosed/LSPlugin/commits)

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
- dependency-name: androidx.activity:activity-compose
  dependency-version: 1.12.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: androidx.navigation:navigation-compose
  dependency-version: 2.9.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: androidx.compose:compose-bom
  dependency-version: 2026.02.00
  dependency-type: direct:production
  dependency-group: maven
- dependency-name: top.yukonga.miuix.kmp:miuix-android
  dependency-version: 0.8.1
  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.1
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: dev.chrisbanes.haze:haze-android
  dependency-version: 1.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: io.github.kyant0:capsule
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: com.android.application
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: com.android.library
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: com.android.library
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.android
  dependency-version: 2.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: com.google.devtools.ksp
  dependency-version: 2.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: org.lsposed.lsplugin.cmaker
  dependency-version: '1.3'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 14, 2026
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