Skip to content

build(deps): bump the maven-dependencies group across 1 directory with 18 updates#117

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/main/maven-dependencies-0364e28852
Open

build(deps): bump the maven-dependencies group across 1 directory with 18 updates#117
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/main/maven-dependencies-0364e28852

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the maven-dependencies group with 18 updates in the / directory:

Package From To
androidx.lifecycle:lifecycle-process 2.8.7 2.10.0
gradle-wrapper 9.2.0 9.4.1
androidx.activity:activity-compose 1.11.0 1.13.0
androidx.webkit:webkit 1.14.0 1.15.0
androidx.biometric:biometric 1.2.0-alpha05 1.4.0-alpha06
androidx.compose:compose-bom 2025.11.00 2026.03.01
androidx.lifecycle:lifecycle-runtime-ktx 2.9.4 2.10.0
androidx.lifecycle:lifecycle-runtime-compose 2.9.4 2.10.0
androidx.lifecycle:lifecycle-viewmodel-compose 2.9.4 2.10.0
com.google.code.gson:gson 2.10.1 2.13.2
com.patrykandpatrick.vico:compose-m3 2.0.0-alpha.13 3.1.0
org.lsposed.libcxx:libcxx 28.1.13356709 29.0.14206865
com.android.application 8.13.1 9.1.0
com.android.library 8.13.1 9.1.0
org.jetbrains.kotlin.android 2.2.21 2.3.20
org.jetbrains.kotlin.plugin.compose 2.2.21 2.3.20
com.google.devtools.ksp 2.3.1 2.3.6
org.lsposed.lsplugin.cmaker 1.2 1.4

Updates androidx.lifecycle:lifecycle-process from 2.8.7 to 2.10.0

Updates gradle-wrapper from 9.2.0 to 9.4.1

Release notes

Sourced from gradle-wrapper's releases.

9.4.1

The Gradle team is excited to announce Gradle 9.4.1.

Here are the highlights of this release:

  • Java 26 support
  • Non-class-based JVM tests
  • Enhanced console progress bar

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle: akankshaa-00, Attila Kelemen, Björn Kautler, dblood, Dennis Rieks, duvvuvenkataramana, John Burns, Julian, kevinstembridge, Niels Doucet, Philip Wedemann, ploober, Richard Hernandez, Roberto Perez Alcolea, Sebastian Lövdahl, stephan2405, Stephane Landelle, Ujwal Suresh Vanjare, Victor Merkulov, Vincent Potuček, Vladimir Sitnikov.

Upgrade instructions

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

./gradlew wrapper --gradle-version=9.4.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.

... (truncated)

Commits

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

Updates androidx.webkit:webkit from 1.14.0 to 1.15.0

Updates androidx.biometric:biometric from 1.2.0-alpha05 to 1.4.0-alpha06

Updates androidx.compose:compose-bom from 2025.11.00 to 2026.03.01

Updates androidx.lifecycle:lifecycle-runtime-ktx from 2.9.4 to 2.10.0

Updates androidx.lifecycle:lifecycle-runtime-compose from 2.9.4 to 2.10.0

Updates androidx.lifecycle:lifecycle-viewmodel-compose from 2.9.4 to 2.10.0

Updates androidx.lifecycle:lifecycle-runtime-compose from 2.9.4 to 2.10.0

Updates androidx.lifecycle:lifecycle-viewmodel-compose from 2.9.4 to 2.10.0

Updates com.google.code.gson:gson from 2.10.1 to 2.13.2

Release notes

Sourced from com.google.code.gson:gson's releases.

Gson 2.13.2

The main changes in this release are just newer dependencies.

What's Changed

New Contributors

Full Changelog: google/gson@gson-parent-2.13.1...gson-parent-2.13.2

Gson 2.13.1

What's Changed

New Contributors

Full Changelog: google/gson@gson-parent-2.13.0...gson-parent-2.13.1

Gson 2.13.0

What's Changed

  • A bug in deserializing collections has been fixed. Previously, if you did something like this:

    gson.fromJson(jsonString, new TypeToken<ImmutableList<String>>() {})
    

    then the inferred type would be ImmutableList<String>, but Gson actually gave you an ArrayList<String>. Usually that would lead to an immediate ClassCastException, but in some circumstances the code might sometimes succeed despite the wrong type. Now you will see an exception like this:

    com.google.gson.JsonIOException: Abstract classes can't be instantiated!
    Adjust the R8 configuration or register an InstanceCreator or a TypeAdapter for this type.
    Class name: com.google.common.collect.ImmutableList
    

    because Gson now really is trying to create an ImmutableList through its constructor, but that isn't possible. Either change the requested type (in the TypeToken) to List<String>, or register a TypeAdapter or JsonDeserializer for ImmutableList.

  • The internal classes $Gson$Types and $Gson$Preconditions have been renamed to remove the $ characters. Since these are internal classes (as signaled not only by the package name but by the $ characters), client code should not be affected. If your code was depending on these classes then we suggest making a copy of the class (subject to the license) rather than depending on the new names.

Full Changelog: google/gson@gson-parent-2.12.1...gson-parent-2.13.0

Gson 2.12.1

The only difference between this release and 2.12.0 is that OSGi declarations in the Gson jar now specify that com.google.errorprone.annotations is an optional dependency, not a required one. If you do not use OSGi then there is no effective change.

... (truncated)

Commits
  • 686fad7 [maven-release-plugin] prepare release gson-parent-2.13.2
  • c2d252a Switch to using central-publishing-maven-plugin. (#2900)
  • 69cb755 Bump the github-actions group with 5 updates (#2894)
  • ea552c2 Bump the maven group across 1 directory with 3 updates (#2898)
  • fdc616d Set top-level permissions for CodeQL workflow (#2889)
  • 9334715 Create scorecard.yml (#2888)
  • f7de5c2 Bump the maven group with 8 updates (#2885)
  • 8c23cd3 Update sources to satisfy a new Error Prone check. (#2887)
  • 5eab3ed Bump the github-actions group with 2 updates (#2886)
  • 5f5c200 Bump the maven group across 1 directory with 10 updates (#2872)
  • Additional commits viewable in compare view

Updates com.patrykandpatrick.vico:compose-m3 from 2.0.0-alpha.13 to 3.1.0

Release notes

Sourced from com.patrykandpatrick.vico:compose-m3's releases.

v3.1.0

Overview

Common

  1. Added pie charts. See the “Basic pie chart” sample chart (Compose, views) and the API reference (Compose, views) for details. Pie charts are experimental; they’ll remain available, but breaking changes are more likely.
  2. In LineCartesianLayer, deprecated PointConnector and introduced Interpolator. The new interface receives all points, enabling true polyline-level interpolation (e.g., Catmull–Rom splines). Interpolator has three built-in singletons and factory functions: Sharp and cubic, functionally identical to their PointConnector counterparts, and catmullRom. Compared to cubic, catmullRom produces straight line segments instead of steps for collinear points.
  3. In HorizontalAxis and VerticalAxis, added tickPosition (Outside, Cross, or Inside) and lineDrawingOrder (UnderLayers or OverLayers).
  4. In LineCartesianLayer, introduced LineFill.colorScale and AreaFill.colorScale.
  5. Improved VerticalAxis performance.

compose

  1. Updated rememberVicoScrollState to preserve the scroll value when scrollEnabled changes.
  2. Improved TextComponent performance.
  3. Fixed the CartesianValueFormatter implementation instantiated by CartesianValueFormatter.decimal ignoring some properties in equals and hashCode, which led to skipped updates.
  4. In DefaultCartesianMarker, fixed the ValueFormatter implementation instantiated by ValueFormatter.default ignoring some properties in equals and hashCode, which led to skipped updates.

views

  1. In connection with common change 3, added tickPosition (outside, cross, or inside) and lineDrawingOrder (underLayers or overLayers) XML attributes to AxisStyle.
  2. Exposed a read–write ScrollHandler.scrollEnabled property, which enables toggling scroll while preserving the scroll value.

v3.1.0-beta.1

Overview

Common

  • In LineCartesianLayer, introduced LineFill.colorScale and AreaFill.colorScale.
  • Relocated selected pie-chart API elements for consistency. Remove and replace unresolved imports.

compose

  • Updated rememberVicoScrollState to preserve the scroll value when scrollEnabled changes.
  • Fixed the CartesianValueFormatter implementation instantiated by CartesianValueFormatter.decimal ignoring some properties in equals and hashCode, which led to skipped updates.
  • In DefaultCartesianMarker, fixed the ValueFormatter implementation instantiated by ValueFormatter.default ignoring some properties in equals and hashCode, which led to skipped updates.

views

  • Exposed a read–write ScrollHandler.scrollEnabled property, which enables toggling scroll while preserving the scroll value.

v3.1.0-alpha.3

Overview

... (truncated)

Commits
  • 7665ba8 Update version from 3.1.0-beta.1 to 3.1.0 (#1408)
  • 616199f Dispatch Claude without a turn limit
  • c636968 Rename claude dispatch request input
  • d19ddbe Refine Claude dispatch prompt
  • 8443f82 Add manual Claude dispatch workflow
  • e9b502e “Bug” issue form: Update version drop-down
  • 9beff54 Update version name
  • 1fe9dae Allow toggling scrollEnabled without losing scroll position
  • a9bd3e4 Fix: CartesianValueFormatter recomposition when properties change (#1405)
  • e67e495 fix(deps): update dependency org.jetbrains.dokka:dokka-gradle-plugin to v2.2....
  • Additional commits viewable in compare view

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

Commits

Updates com.android.application from 8.13.1 to 9.1.0

Updates com.android.library from 8.13.1 to 9.1.0

Updates com.android.library from 8.13.1 to 9.1.0

Updates org.jetbrains.kotlin.android from 2.2.21 to 2.3.20

Updates org.jetbrains.kotlin.plugin.compose from 2.2.21 to 2.3.20

Updates com.google.devtools.ksp from 2.3.1 to 2.3.6

Release notes

Sourced from com.google.devtools.ksp's releases.

2.3.6

What's Changed

  • Fixed an issue where module recompilation would fail on Windows environments when KSP2 was enabled (#2774)
  • Resolved an issue where generated Java sources were ignored when using Android Kotlin Multiplatform with IP-compatible paths (#2744)
  • Fixed a KSP version 2.3.5 CI error exception that does not break build checks (#2763)
  • Added symbol-processing-api and common-deps to compile dependencies (#2789)
  • Improved the detection of built-in Kotlin by removing the reliance on KotlinBaseApiPlugin (#2772)
  • A back-port of a performance optimization in the Intellij / Analysis API (2785 )
  • Added support for nested typealias Kotlin language feature #2588
  • Exclude jdbc package from log4j to prevent vulnerability issue #2651

Contributors

Full Changelog: google/ksp@2.3.5...2.3.6

2.3.5

What's Changed

  • KSPCoreEnvironment.instance_prop leaks memory when used programmatically #2742
  • Missing first annotation argument when toByte is used #2672
  • Fix circular dependency between KSP and KAPT in AGP 9.0 #2743

Contributors

  • Thanks to everyone who reported bugs and participated in discussions!

Full Changelog: google/ksp@2.3.4...2.3.5

2.3.4

What's Changed

  • KSP ignores sources in Kotlin directory #2730
  • Avoid recording Java symbol lookups in non-incremental builds #2728
  • Clean up ThreadLocals when processing is done #2709

Contributors

  • Thanks to everyone who reported bugs and participated in discussions!

Full Changelog: google/ksp@2.3.3...2.3.4

2.3.3

What's Changed

  • Migrate away from a deprecated compilerOptions KGP API #2703

Contributors

  • Thanks to everyone who reported bugs and participated in discussions!

Full Changelog: google/ksp@2.3.2...2.3.3

2.3.2

What's Changed

... (truncated)

Commits
  • a3b48e6 Remove redundant calls to asSequence
  • a9f0719 Add CODEOWNERS file
  • c984ed3 Test for running gradle tasks without caching in a row
  • 42ff48d Clean up file handlers (intellij)
  • ff1076a Make symbol-processing-api and common-deps compile dependency
  • df4922b Cherry-pick optimization to MockFileIndexFacade
  • daa3f9d Replace findPlugin with withType Gradle api
  • 378a29f Improve test exception handling
  • 593e4c3 Copy sources from kotlin-compiler to override intellij-core
  • 0be0984 Update upload-benchmark-data.sh
  • Additional commits viewable in compare view

Updates org.lsposed.lsplugin.cmaker from 1.2 to 1.4

Commits

Updates org.jetbrains.kotlin.plugin.compose from 2.2.21 to 2.3.20

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…h 18 updates

Bumps the maven-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| androidx.lifecycle:lifecycle-process | `2.8.7` | `2.10.0` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `9.2.0` | `9.4.1` |
| androidx.activity:activity-compose | `1.11.0` | `1.13.0` |
| androidx.webkit:webkit | `1.14.0` | `1.15.0` |
| androidx.biometric:biometric | `1.2.0-alpha05` | `1.4.0-alpha06` |
| androidx.compose:compose-bom | `2025.11.00` | `2026.03.01` |
| androidx.lifecycle:lifecycle-runtime-ktx | `2.9.4` | `2.10.0` |
| androidx.lifecycle:lifecycle-runtime-compose | `2.9.4` | `2.10.0` |
| androidx.lifecycle:lifecycle-viewmodel-compose | `2.9.4` | `2.10.0` |
| [com.google.code.gson:gson](https://github.com/google/gson) | `2.10.1` | `2.13.2` |
| [com.patrykandpatrick.vico:compose-m3](https://github.com/patrykandpatrick/vico) | `2.0.0-alpha.13` | `3.1.0` |
| [org.lsposed.libcxx:libcxx](https://github.com/LSPosed/prefab-libcxx) | `28.1.13356709` | `29.0.14206865` |
| com.android.application | `8.13.1` | `9.1.0` |
| com.android.library | `8.13.1` | `9.1.0` |
| org.jetbrains.kotlin.android | `2.2.21` | `2.3.20` |
| org.jetbrains.kotlin.plugin.compose | `2.2.21` | `2.3.20` |
| [com.google.devtools.ksp](https://github.com/google/ksp) | `2.3.1` | `2.3.6` |
| [org.lsposed.lsplugin.cmaker](https://github.com/LSPosed/LSPlugin) | `1.2` | `1.4` |



Updates `androidx.lifecycle:lifecycle-process` from 2.8.7 to 2.10.0

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

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

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

Updates `androidx.biometric:biometric` from 1.2.0-alpha05 to 1.4.0-alpha06

Updates `androidx.compose:compose-bom` from 2025.11.00 to 2026.03.01

Updates `androidx.lifecycle:lifecycle-runtime-ktx` from 2.9.4 to 2.10.0

Updates `androidx.lifecycle:lifecycle-runtime-compose` from 2.9.4 to 2.10.0

Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.9.4 to 2.10.0

Updates `androidx.lifecycle:lifecycle-runtime-compose` from 2.9.4 to 2.10.0

Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.9.4 to 2.10.0

Updates `com.google.code.gson:gson` from 2.10.1 to 2.13.2
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
- [Commits](google/gson@gson-parent-2.10.1...gson-parent-2.13.2)

Updates `com.patrykandpatrick.vico:compose-m3` from 2.0.0-alpha.13 to 3.1.0
- [Release notes](https://github.com/patrykandpatrick/vico/releases)
- [Commits](patrykandpatrick/vico@v2.0.0-alpha.13...v3.1.0)

Updates `org.lsposed.libcxx:libcxx` from 28.1.13356709 to 29.0.14206865
- [Commits](LSPosed/prefab-libcxx@28.1.13356709...29.0.14206865)

Updates `com.android.application` from 8.13.1 to 9.1.0

Updates `com.android.library` from 8.13.1 to 9.1.0

Updates `com.android.library` from 8.13.1 to 9.1.0

Updates `org.jetbrains.kotlin.android` from 2.2.21 to 2.3.20

Updates `org.jetbrains.kotlin.plugin.compose` from 2.2.21 to 2.3.20

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

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

Updates `org.jetbrains.kotlin.plugin.compose` from 2.2.21 to 2.3.20

---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-process
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: gradle-wrapper
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-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-dependencies
- dependency-name: androidx.webkit:webkit
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: androidx.biometric:biometric
  dependency-version: 1.4.0-alpha06
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: androidx.compose:compose-bom
  dependency-version: 2026.03.01
  dependency-type: direct:production
  dependency-group: maven-dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime-compose
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-compose
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime-compose
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-compose
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: com.google.code.gson:gson
  dependency-version: 2.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: com.patrykandpatrick.vico:compose-m3
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: org.lsposed.libcxx:libcxx
  dependency-version: 29.0.14206865
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: com.android.application
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: com.android.library
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: com.android.library
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: org.jetbrains.kotlin.android
  dependency-version: 2.3.20
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.3.20
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: com.google.devtools.ksp
  dependency-version: 2.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.lsposed.lsplugin.cmaker
  dependency-version: '1.4'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-version: 2.3.20
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Apr 13, 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