Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #48

Merged
merged 2 commits into from
Mar 1, 2025
Merged

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 1, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
gradle (source) minor 8.12 -> 8.13 age adoption passing confidence
org.jlleitschuh.gradle:ktlint-gradle dependencies minor 12.1.2 -> 12.2.0 age adoption passing confidence
io.mockk:mockk (source) dependencies patch 1.13.14 -> 1.13.17 age adoption passing confidence
org.junit.jupiter:junit-jupiter (source) dependencies minor 5.11.4 -> 5.12.0 age adoption passing confidence
io.coil-kt.coil3:coil-bom dependencies minor 3.0.4 -> 3.1.0 age adoption passing confidence
com.squareup.okio:okio dependencies minor 3.9.1 -> 3.10.2 age adoption passing confidence
androidx.recyclerview:recyclerview (source) dependencies minor 1.3.2 -> 1.4.0 age adoption passing confidence
androidx.constraintlayout:constraintlayout (source) dependencies patch 2.2.0 -> 2.2.1 age adoption passing confidence
com.android.tools:desugar_jdk_libs dependencies patch 2.1.4 -> 2.1.5 age adoption passing confidence
androidx.activity:activity-compose (source) dependencies minor 1.9.3 -> 1.10.1 age adoption passing confidence
androidx.paging:paging-compose (source) dependencies patch 3.3.5 -> 3.3.6 age adoption passing confidence
androidx.paging:paging-runtime (source) dependencies patch 3.3.5 -> 3.3.6 age adoption passing confidence
dev.icerock.moko:resources-generator dependencies patch 0.24.4 -> 0.24.5 age adoption passing confidence
dev.icerock.moko:resources dependencies patch 0.24.4 -> 0.24.5 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-protobuf dependencies minor 1.7.3 -> 1.8.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json-okio dependencies minor 1.7.3 -> 1.8.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json dependencies minor 1.7.3 -> 1.8.0 age adoption passing confidence
com.mikepenz:aboutlibraries-compose-m3 dependencies minor 11.3.0 -> 11.6.3 age adoption passing confidence
com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin dependencies minor 11.3.0 -> 11.6.3 age adoption passing confidence
com.android.tools.build:gradle (source) dependencies minor 8.7.3 -> 8.8.2 age adoption passing confidence

Release Notes

gradle/gradle (gradle)

v8.13

Compare Source

v8.12.1: 8.12.1

Compare Source

The Gradle team is excited to announce Gradle 8.12.1.

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle:
Abhiraj Adhikary,
Ayush Saxena,
Björn Kautler,
davidburstrom,
Dominic Fellbaum,
Emmanuel Ferdman,
Finn Petersen,
Johnny Lim,
Mahdi Hosseinzadeh,
Martin Bonnin,
Paint_Ninja,
Petter Måhlén,
Philip Wedemann,
stegeto22,
Tanish,
TheGoesen,
Tim Nielens,
Trout Zhang,
Victor Merkulov

Upgrade instructions

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

./gradlew wrapper --gradle-version=8.12.1

See the Gradle 8.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.

mockk/mockk (io.mockk:mockk)

v1.13.16

Compare Source

What's Changed

Full Changelog: mockk/mockk@1.13.14...1.13.16

coil-kt/coil (io.coil-kt.coil3:coil-bom)

v3.1.0

Compare Source

  • Improve AsyncImage performance.
    • Runtime performance is improved by 25% to 40% depending on if the composable is being instantiated or reused. Allocations are also reduced by 35% to 48%. More info here.
  • Add ColorImage and deprecate FakeImage.
    • ColorImage is useful for returning a fake value in tests and previews. It solves the same use case as FakeImage, but is more easily accessible in coil-core instead of coil-test.
  • Remove coil-compose-core's dependency on Dispatchers.Main.immedate.
    • This also fixes a case where AsyncImagePainter would not execute ImageRequests synchronously in Paparazzi and Roborazzi screenshot tests.
  • Add support for data URIs with the format: data:[<mediatype>][;base64],<data>
  • Add AnimatedImageDecoder.ENCODED_LOOP_COUNT to support using the encoded repeat count in a GIF's metadata.
  • Add Extras to NetworkRequest to support custom extensions.
  • Add DiskCache.Builder.cleanupCoroutineContext and deprecate DiskCache.Builder.cleanupDispatcher.
  • Add ImageLoader.Builder.imageDecoderEnabled to optionally disable using android.graphics.ImageDecoder on API 29 and above.
  • Log a warning if there is no registered Keyer for an ImageRequest's data type.
  • Make CrossfadePainter public.
  • Support Transformations on all multiplatform targets.
  • Support 0 as Expires header value in CacheControlCacheStrategy.
  • Fix AsyncImage/SubcomposeAsyncImage/rememberAsyncImage not launching a new ImageRequest if its ContentScale changes to/from None.
  • Update to Kotlin 2.1.10.
    • NOTE: This release requires compiling with Kotlin 2.1.0 or greater if you use Kotlin native due to an LLVM update.
  • Update to Compose 1.7.3.
  • Update androidx.core to 1.15.0.
square/okio (com.squareup.okio:okio)

v3.10.2

Compare Source

2025-01-08

  • Fix: okio-nodefilesystem artifact is no longer empty.

v3.10.1

Compare Source

2025-01-07

  • New: FileSystem.close() may prevent future access and/or clean up associated resources depending on the backing implementation. FakeFileSystem will prevent future operations once closed.
  • InputStreams created from BufferedSource.inputStream() now have a more efficient version of InputStream.transferTo() which reduces memory copies.
  • okio-nodefilesystem is no longer publised as a JS project, but a Kotlin multiplatform project with only a JS target. This change should not affect consumers in any way, and is motivated by the Kotlin Gradle plugin deprecating the JS-only plugin. Please use 3.10.2 to ensure this change actually does not affect your builds.

v3.10.0

Compare Source

2025-01-06

This version is equivalent to the subsequent 3.10.1, but it did not fully publish to Maven Central due to infrastructure problems.

google/desugar_jdk_libs (com.android.tools:desugar_jdk_libs)

v2.1.5

  • Added support for Stream.toList(), which was added in JDK-16 and Android 14
    (API level 34).
Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-protobuf)

v1.8.0

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

This release contains all of the changes from 1.8.0-RC. Kotlin 2.1.0 is used as a default, while upcoming 2.1.10 is also supported.
Also added small bugfixes, including speedup of ProtoWireType.from (#​2879).

mikepenz/AboutLibraries (com.mikepenz:aboutlibraries-compose-m3)

v11.6.3

Compare Source

🐛 Fixes

  • Fix exportLibraryDefinitions with exportVariant defined

v11.6.2

Compare Source

🐛 Fixes

  • Fix build cache in combination with Android product flavors causes issues
  • Fix license caching not properly checking fallback license url

v11.6.1

Compare Source

[!IMPORTANT]
Please use 11.6.2 instead, 11.6.1 failed to properly release and has some missing artifacts.

🐛 Fixes

  • Fix build cache in combination with Android product flavors causes issues
  • Fix license caching not properly checking fallback license url

v11.6.0

Compare Source

🚀 Features

  • Deprecate View Based UI
  • Add ability to show description in compose UI
  • Add flag to skip spdx license name/url/content mapping

🐛 Fixes

💬 Other

  • Use fromHtml via AnnotatedString on Android
  • Binary Compatibility Validation
  • Snapshot tests
  • Update dependencies | Compose 1.7.8

v11.5.0

Compare Source

🚀 Features

🐛 Fixes

💬 Other

v11.4.0

Compare Source

[!IMPORTANT]
This version drops support for any version of Gradle below 7.x.
The Android library now requires compileSdk=35
This version also requires the host app to use Kotlin 2.x or higher

[!IMPORTANT]
When using the plugin in a convention plugin. Ensure to use Grade 8.12.x or newer
https://docs.gradle.org/8.12/userguide/compatibility.html#kotlin

🐛 Fixes

  • Improve config cache support

💬 Other

  • Migrate project to use a shared convention plugin
  • Bump gradle/actions from 3 to 4
  • Update sample to use m3
  • Update convention plugin
  • Cleanup build and dependencies more

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) March 1, 2025 01:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a0ef750 to f2367fe Compare March 1, 2025 05:30
Copy link
Author

renovate bot commented Mar 1, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot merged commit 2e914fb into main Mar 1, 2025
1 check passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 1, 2025 13:29
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.

1 participant