Skip to content

fix(deps): update all dependencies#39

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

fix(deps): update all dependencies#39
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
gradle (source) minor 9.2.19.3.1 age confidence
io.github.takahirom.roborazzi plugin minor 1.56.01.59.0 age confidence
io.github.takahirom.roborazzi:roborazzi-junit-rule dependencies minor 1.56.01.59.0 age confidence
io.github.takahirom.roborazzi:roborazzi-compose dependencies minor 1.56.01.59.0 age confidence
io.github.takahirom.roborazzi:roborazzi dependencies minor 1.56.01.59.0 age confidence
org.robolectric:robolectric (source) dependencies patch 4.164.16.1 age confidence
org.jetbrains.kotlin.plugin.compose (source) plugin patch 2.3.02.3.10 age confidence
org.mockito.kotlin:mockito-kotlin dependencies minor 6.1.06.2.3 age confidence
com.google.devtools.ksp (source) plugin patch 2.3.42.3.5 age confidence
androidx.navigation:navigation-compose (source) dependencies patch 2.9.62.9.7 age confidence
androidx.navigation:navigation-runtime-ktx (source) dependencies patch 2.9.62.9.7 age confidence
com.google.dagger.hilt.android plugin minor 2.57.22.59.1 age confidence
org.jetbrains.kotlin.plugin.serialization (source) plugin patch 2.3.02.3.10 age confidence
androidx.compose:compose-bom dependencies major 2025.12.012026.02.00 age confidence
androidx.activity:activity-compose (source) dependencies patch 1.12.21.12.4 age confidence
org.jetbrains.kotlinx:kotlinx-serialization-json dependencies minor 1.9.01.10.0 age confidence
org.jetbrains.kotlin.android (source) plugin patch 2.3.02.3.10 age confidence
com.google.dagger:hilt-android-testing dependencies minor 2.57.22.59.1 age confidence
com.google.dagger:hilt-android-compiler dependencies minor 2.57.22.59.1 age confidence
com.google.dagger:hilt-android dependencies minor 2.57.22.59.1 age confidence
androidx.compose.foundation:foundation (source) dependencies patch 1.10.01.10.3 age confidence
com.android.library (source) plugin major 8.13.29.0.1 age confidence
com.android.application (source) plugin major 8.13.29.0.1 age confidence

Release Notes

gradle/gradle (gradle)

v9.3.1: 9.3.1

Compare Source

This is a patch release for 9.3.0. We recommend using 9.3.1 instead of 9.3.0.

The following issues were resolved:

Read the Release Notes

Upgrade instructions

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

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

v9.3.0

Compare Source

takahirom/roborazzi (io.github.takahirom.roborazzi)

v1.59.0

Compare Source

ROBORAZZI_DEBUG can now be passed as a command-line parameter

We already have the ROBORAZZI_DEBUG variable to control debug-log output, and it can be set in tests. From this release, you can also enable ROBORAZZI_DEBUG by adding -Proborazzi.debug=true to the command line.

What's Changed

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

v1.58.0

Compare Source

Bugfix: Fixed NoClassDefFoundError in RoborazziPlugin when the Android Plugin is not applied

Previously, we never touched the Android Plugin class when it wasn’t in use; nevertheless, a NoClassDefFoundError was raised because the plugin contained a method that referenced the Android Plugin class. I therefore extracted Android-related code into a separate class to resolve the issue. Thank you, @​rnett, for reporting this.

Update: Device qualifiers

You can now specify device qualifiers via RobolectricDeviceQualifiers. The list has been expanded with new devices such as Pixel9, XRGlasses, and even AIGlasses!
Thank you, @​joergmis, for your contribution.

What's Changed
New Contributors

Full Changelog: takahirom/roborazzi@1.57.0...1.58.0

v1.57.0

Compare Source

Fix AGP 9.0 KMP preview screenshots

We had been using unitTestSources?.**java**?.addGeneratedSourceDirectory, but this approach proved ineffective when we adopted com.android.kotlin.multiplatform.library. Consequently, we migrated to unitTestSources?.**kotlin**?.addGeneratedSourceDirectory for the KMP plugin. Unfortunately, when applying com.android.library, unitTestSources?.kotlin remains non-functional, so we must toggle between the two depending on the plugin.
Thank you for reporting this @​HLCaptain !

(This is our plugin code, you don't have to write this.)

  val isKmpLibrary = project.plugins.hasPlugin("com.android.kotlin.multiplatform.library")
  if (isKmpLibrary) {
    unitTestSources?.kotlin?.addGeneratedSourceDirectory(
      generateTestsTask,
      GenerateComposePreviewRobolectricTestsTask::outputDir
    )
  } else {
    unitTestSources?.java?.addGeneratedSourceDirectory(
      generateTestsTask,
      GenerateComposePreviewRobolectricTestsTask::outputDir
    )
  }
Bugfix: Compose Preview’s onSizeChanged{} wasn’t called when multiple windows exist.

There is a bug in which Compose Preview’s onSizeChanged{} fails to fire when multiple windows are present. This issue arises because we neglected to invoke

      composeTestRule.mainClock.advanceTimeByFrame()
      composeTestRule.waitForIdle()

Reproducing screenshots image

What's Changed

Full Changelog: takahirom/roborazzi@1.56.0...1.57.0

JetBrains/kotlin (org.jetbrains.kotlin.plugin.compose)

v2.3.10

mockito/mockito-kotlin (org.mockito.kotlin:mockito-kotlin)

v6.2.3

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.3
  • 2026-01-26 - 2 commit(s) by Joshua Selbo, Mark Koops
  • Update exception message now that onGeneric is deprecated (#​583)
  • Improve Result support in matchers and captors (#​582)

v6.2.2

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.2
  • 2026-01-21 - 2 commit(s) by Mark Koops
  • Fix eq() matcher NPE with nullable value class and null value (#​579)
  • Improve support for stubbing Result return values for synchronous and suspendable functions (#​576)

v6.2.1

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.1
  • 2026-01-17 - 2 commit(s) by Joshua Selbo, Mark Koops
  • Solve 6.2.0 regression due to runblocking being unavailable (#​575)
  • Use jvmToolchain API to configure builds (#​572)

v6.2.0

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.0
  • 2026-01-14 - 27 commit(s) by Joshua Selbo, Mark Koops, Tim van der Lippe
  • Improving stubbing support for suspend functions and value classes (#​569)
  • Update PR template to run formatting (#​568)
  • Ignore ktfmt formatting revision in git blame (#​567)
  • Enable Spotless formatting check in CI (#​566)
  • Apply ktfmt formatting (#​565)
  • Add tooling for Spotless + ktfmt (#​562)
  • Follow-up on primitive value classes (#​561)
  • Update MockSettings usage (#​560)
  • Fix anyOrNull matcher with value class wrapping primitive type (#​557)
  • Enhance/unify and document stubbing API, more groundwork towards implementing improved suspend function support (#​556)
  • Add wrappers for mockStatic, mockConstruction (#​551)
  • Add MockedStatic.verify extension fun with lambda last (#​549)
  • Extending/organizing MatchersTest.kt (#​548)
  • Adding value class support to KArgumentCaptor. (#​547)
  • Fix the output directory for the dokka Javadoc plugin (#​546)
  • #​544 Adding value class support to the eq() argument matcher. (#​545)
  • eq() argument matcher does not support for value class type arguments (#​544)
  • Add note about releasing tags via GitHub UI (#​543)
google/ksp (com.google.devtools.ksp)

v2.3.5

Compare Source

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

Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-json)

v1.10.0

==================

This release is based on Kotlin 2.3.0 and contains all of the changes from 1.10.0-RC.
The only additional change is a fix for ProtoBuf packing of Kotlin unsigned types (#​3079).
Big thanks to KosmX for contributing the fix.

For your convenience, the changelog for 1.10.0-RC is duplicated below:

Stabilization of APIs

kotlinx-serialization 1.10 and subsequent releases will be focused on stabilization of existing APIs.
The following APIs and configuration options are no longer experimental because they're widely used without any known major issues:

  • Json configuration options: decodeEnumsCaseInsensitive, allowTrailingComma, allowComments, and prettyPrintIndent. (#​3100)
  • @EncodeDefault annotation and its modes. (#​3106)
  • JsonUnquotedLiteral constructor function (#​2900)
  • JsonPrimitive constructor function overloads that accept unsigned types. (#​3117)
  • JSON DSL functions on JsonElement with Nothing? overloads. (#​3117)

Readiness for return value checker

Kotlin 2.3.0 introduces a new feature aimed
at helping you to catch bugs related to the accidentally ignored return value of the function.
kotlinx-serialization 1.10.0-RC code is fully marked for this feature, meaning that you
can get warnings for unused function calls like Json.encodeToString(...).
To get the warnings, the feature has to be enabled in your project as described here.

Polymorphism improvements

Polymorphic serialization received a couple of improvements in this release:

New subclassesOfSealed utility to automatically register sealed subclasses serializers in polymorphic modules (#​2201).
Use it in your SerializersModule when configuring a polymorphic hierarchy which contains both abstract and sealed classes.
For example, when root of your hierarchy is an interface, but most of your inheritors are sealed classes.
The new function will register all known sealed subclasses for you, so you don’t need to list them one by one.
This makes writing your SerializerModules much faster and simpler.
Big thanks to Paul de Vrieze for contributing this feature.

Class discriminator conflict check rework (#​3105).
If a payload already contains a property with the same name as the configured discriminator (for example, type),
it is called a class discriminator conflict.
To produce a correct output and allow more inputs to be deserialized at the same time, the following changes were made:

  • Conflicts introduced by JsonNamingStrategy transformations are now detected during serialization as well and will cause SerializationException.
    It also affects non-polymorphic classes.
  • Conflicts from ClassDisciminatorMode.ALL_JSON_OBJECTS and SerializersModuleBuilder.polymorphicDefaultSerializer are also detected.
  • It is allowed to deserialize such a conflicting key for both sealed and open polymorphic hierarchies.
    Previously, it was possible in the sealed hierarchies alone due to missing assertion. See #​1664 for details.

General improvements

  • Add .serialName to MissingFieldException for clearer diagnostics. (#​3114)
  • Generate unique Automatic-Module-Name entries for metadata JARs. (#​3109)
  • Revised ProGuard rules and added R8 tests. (#​3041)
  • CBOR: Improved error message when a byte string/array type mismatch is encountered. (#​3052)

Bugfixes

  • Fix the type in the BIGNUM_NEGATIVE tag name. (#​3090)
  • CBOR: Fix various bugs in the decoder implementation to be more strict and consistent with the specification.

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), 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 force-pushed the renovate/all branch 7 times, most recently from ef71adf to 46ee379 Compare January 21, 2026 17:09
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 256b344 to 1ec11a6 Compare January 30, 2026 05:48
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 1ac97ac to 119a10f Compare February 5, 2026 08:57
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from b14c3c4 to 43f90af Compare February 11, 2026 22:37
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