Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 26, 2025

Bumps the dependencies group with 36 updates in the / directory:

Package From To
com.android.tools.build:gradle 8.11.0 8.11.1
com.android.application 8.11.0 8.11.1
com.android.library 8.11.0 8.11.1
com.android.test 8.11.0 8.11.1
org.jetbrains.kotlinx:kotlinx-datetime 0.7.0 0.7.1-0.6.x-compat
io.nlopez.compose.rules:detekt 0.4.22 0.4.26
androidx.core:core-splashscreen 1.1.0-rc01 1.2.0-rc01
tech.annexflow.compose:constraintlayout-compose-multiplatform 0.6.0 0.6.0-shaded-core
io.coil-kt.coil3:coil 3.2.0 3.3.0
io.coil-kt.coil3:coil-compose 3.2.0 3.3.0
io.coil-kt.coil3:coil-svg 3.2.0 3.3.0
io.coil-kt.coil3:coil-network-ktor3 3.2.0 3.3.0
com.vladsch.flexmark:flexmark 0.42.14 0.64.8
com.google.dagger:dagger 2.56.2 2.57
com.google.dagger:dagger-compiler 2.56.2 2.57
io.sentry:sentry-android 8.16.0 8.17.0
io.sentry:sentry-android-timber 8.16.0 8.17.0
org.slf4j:slf4j-api 1.7.36 2.0.17
androidx.lifecycle:lifecycle-runtime 2.9.1 2.9.2
androidx.lifecycle:lifecycle-viewmodel-compose 2.9.1 2.9.2
androidx.lifecycle:lifecycle-service 2.9.1 2.9.2
androidx.lifecycle:lifecycle-runtime-testing 2.9.1 2.9.2
io.ktor:ktor-client-android 3.1.2 3.2.2
io.ktor:ktor-client-content-negotiation 3.1.2 3.2.2
io.ktor:ktor-serialization-kotlinx-json 3.1.2 3.2.2
io.ktor:ktor-client-logging-jvm 3.1.2 3.2.2
io.ktor:ktor-client-mock 3.1.2 3.2.2
commons-codec:commons-codec 1.18.0 1.19.0
no.nordicsemi.android:ble 2.10.1 2.10.2
no.nordicsemi.android:ble-common 2.10.1 2.10.2
org.mockito.kotlin:mockito-kotlin 5.4.0 6.0.0
io.mockk:mockk 1.14.4 1.14.5
com.google.firebase:firebase-messaging 24.1.2 25.0.0
com.squareup.okio:okio 3.14.0 3.15.0
com.squareup.okio:okio-fakefilesystem 3.14.0 3.15.0
com.squareup.wire 5.3.3 5.3.5

Updates com.android.tools.build:gradle from 8.11.0 to 8.11.1

Updates com.android.application from 8.11.0 to 8.11.1

Updates com.android.library from 8.11.0 to 8.11.1

Updates com.android.test from 8.11.0 to 8.11.1

Updates org.jetbrains.kotlinx:kotlinx-datetime from 0.7.0 to 0.7.1-0.6.x-compat

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-datetime's releases.

v0.7.1

  • Add kotlinx.datetime.Instant and kotlinx.datetime.Clock type aliases to, respectively, kotlin.time.Instant and kotlin.time.Clock to make migration more convenient.
  • Add a fallback timezone database implementation for Darwin that uses the Foundation framework if the timezone database is unavailable on the filesystem (#485).
  • Restore binary compatibility in string format definitions utilizing dates on the JVM (#545).
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-datetime's changelog.

CHANGELOG

0.7.1

  • Add kotlinx.datetime.Instant and kotlinx.datetime.Clock type aliases to, respectively, kotlin.time.Instant and kotlin.time.Clock to make migration more convenient.
  • Add a fallback timezone database implementation for Darwin that uses the Foundation framework if the timezone database is unavailable on the filesystem (#485).
  • Restore binary compatibility in string format definitions utilizing dates on the JVM (#545).
Commits

Updates io.nlopez.compose.rules:detekt from 0.4.22 to 0.4.26

Release notes

Sourced from io.nlopez.compose.rules:detekt's releases.

v0.4.26

What's changed

v0.4.25

Update for ktlint 1.7.0.

What's changed

v0.4.24

Update for ktlint 1.6.0.

What's changed

v0.4.23

It's been a while so the release has a ton of dependency updates to it. But basically, this one has the particularity of being the first in which the kotlin-compiler-embeddable version used in detekt / ktlint rulesets differ.

Apart from that, it has a bunch of small incremental updates in existing rules, plus bugfixes.

This one targets new versions of the linters:

  • detekt 1.23.8
  • ktlint 1.5.0

What's changed

... (truncated)

Commits

Updates androidx.core:core-splashscreen from 1.1.0-rc01 to 1.2.0-rc01

Updates tech.annexflow.compose:constraintlayout-compose-multiplatform from 0.6.0 to 0.6.0-shaded-core

Commits

Updates io.coil-kt.coil3:coil from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-compose from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil-compose's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil-compose's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-svg from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil-svg's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil-svg's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-network-ktor3 from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil-network-ktor3's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil-network-ktor3's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-compose from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil-compose's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil-compose's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-svg from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil-svg's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil-svg's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-network-ktor3 from 3.2.0 to 3.3.0

Release notes

Sourced from io.coil-kt.coil3:coil-network-ktor3's releases.

3.3.0

See CHANGELOG.md.

Changelog

Sourced from io.coil-kt.coil3:coil-network-ktor3's changelog.

[3.3.0] - July 22, 2025

  • New: Introduce a new API to limit MemoryCache.maxSize on Android while the app is backgrounded.
    • If ImageLoader.Builder.memoryCacheMaxSizePercentWhileInBackground is set, the ImageLoader's memory cache will be limited to a percent of its max size while the app is backgrounded. This setting is currently disabled by default.
    • Images will be trimmed from the memory cache to reach the limited max size when the app is backgrounded, however the memory cache's weak references to recently trimmed images are unaffected. This means if an image is currently referenced elsewhere (e.g. AsyncImage, ImageView, etc.) it will still be present in the memory cache.
    • This API is useful to reduce background memory usage, keep your app from being killed earlier, and help reduce memory pressure on your users' devices.
  • New: Add an Svg.Parser argument to SvgDecoder.
    • This enables using custom SVG parsers if the default SVG parser doesn't meet your needs.
  • Add a density argument to SvgDecoder to support providing a custom density multiplier.
  • Add Uri.Builder to support copying and modifying Uris.
  • Add ImageLoader.Builder.mainCoroutineContext to support overriding Coil's Dispatchers.main.immediate usage in tests.
  • Fix CrossfadePainter.intrinsicSize changing when the start image is dereferenced at the end of the animation. This aligns with the behaviour of CrossfadeDrawable.
  • Fix ImageLoaders.executeBlocking being inaccessible from Java.
  • Use kotlinx.io's Okio interop module in coil-network-ktor3.
  • Update kotlinx-datetime to 0.7.1.
    • This release includes binary incompatible changes that only affect the coil-network-cache-control module. See here for more info.
  • Update Kotlin to 2.2.0.
  • Update Compose to 1.8.2.
  • Update Okio to 3.15.0.
  • Update Skiko to 0.9.4.2.
Commits
  • 1731511 Prepare 3.3.0.
  • c68534c Fix accidental binary incompatible change in SvgDecoder. (#3089)
  • 732f7a7 chore(deps): update plugin spotless to v7.2.1 (#3088)
  • fbf7897 chore(deps): update plugin poko to v0.19.2 (#3087)
  • ce87117 chore(deps): update plugin spotless to v7.2.0 (#3085)
  • b9b0232 Add density function to SvgDecoder. (#3081)
  • a709859 Add a new language (persian) to the translations of README.md (#3082)
  • b80e2dd chore(deps): update plugin spotless to v7.1.0 (#3079)
  • 0f6965f fix(deps): update dependency com.vanniktech:gradle-maven-publish-plugin to v0...
  • e507a3f fix(deps): update dependency com.android.tools.build:gradle to v8.11.1 (#3078)
  • Additional commits viewable in compare view

Updates com.vladsch.flexmark:flexmark from 0.42.14 to 0.64.8

Commits

Updates com.google.dagger:dagger from 2.56.2 to 2.57

Release notes

Sourced from com.google.dagger:dagger's releases.

Dagger 2.57

Potential breaking changes

The generated Factory/MembersInjector constructors have changed from public to private. This shouldn’t affect most users since these classes are only meant to be called by Dagger’s other generated code. If you do happen to be broken by this change, you should avoid calling Dagger’s generated Factory/MembersInjector classes directly. For a temporary solution, you can also switch to using the public static methods to create an instance. (165cf20ee)

Bug fixes

Fixes #4779. Unshades the Kotlinx Metadata to support Kotlin 2.2.0 (bfa88b962)

Commits

Updates com.google.dagger:dagger-compiler from 2.56.2 to 2.57

Release notes

Sourced from com.google.dagger:dagger-compiler's releases.

Dagger 2.57

Potential breaking changes

The generated Factory/MembersInjector constructors have changed from public to private. This shouldn’t affect most users since these classes are only meant to be called by Dagger’s other generated code. If you do happen to be broken by this change, you should avoid calling Dagger’s generated Factory/MembersInjector classes directly. For a temporary solution, you can also switch to using the public static methods to create an instance. (165cf20ee)

Bug fixes

Fixes #4779. Unshades the Kotlinx Metadata to support Kotlin 2.2.0 (bfa88b962)

Commits

Updates com.google.dagger:dagger-compiler from 2.56.2 to 2.57

Release notes

Sourced from com.google.dagger:dagger-compiler's releases.

Dagger 2.57

Potential breaking changes

The generated Factory/MembersInjector constructors have changed from public to private. This shouldn’t affect most users since these classes are only meant to be called by Dagger’s other generated code. If you do happen to be broken by this change, you should avoid calling Dagger’s generated Factory/MembersInjector classes directly. For a temporary solution, you can also switch to using the public static methods to create an instance. (165cf20ee)

Bug fixes

Fixes #4779. Unshades the Kotlinx Metadata to support Kotlin 2.2.0 (bfa88b962)

Commits

Updates io.sentry:sentry-android from 8.16.0 to 8.17.0

Release notes

Sourced from io.sentry:sentry-android's releases.

8.17.0

Features

  • Send Timber logs through Sentry Logs (#4490)
    • Enable the Logs feature in your SentryOptions or with the io.sentry.logs.enabled manifest option and the SDK will automatically send Timber logs to Sentry, if the TimberIntegration is enabled.
    • The SDK will automatically detect Timber and use it to send logs to Sentry.
  • Send logcat through Sentry Logs (#4487)
    • Enable the Logs feature in your SentryOptions or with the io.sentry.logs.enabled manifest option and the SDK will automatically send logcat logs to Sentry, if the Sentry Android Gradle plugin is applied.
    • To set the logcat level check the Logcat integration documentation.
  • Read build tool info from sentry-debug-meta.properties and attach it to events (#4314)

Dependencies

  • Bump OpenTelemetry (#4532)
    • opentelemetry-sdk to 1.51.0
    • opentelemetry-instrumentation to 2.17.0
    • opentelemetry-javaagent to 2.17.0
    • opentelemetry-semconv to 1.34.0
    • We are now configuring OpenTelemetry to still behave the same way it did before for span names it generates in GraphQL auto instrumentation (#4537)

Fixes

  • Use Spring Boot Starter 3 in sentry-spring-boot-starter-jakarta (#4545)
    • While refactoring our dependency management, we accidentally added Spring Boot 2 and Spring Boot Starter 2 as dependencies of sentry-spring-boot-starter-jakarta, which is intended for Spring Boot 3.
    • Now, the correct dependencies (Spring Boot 3 and Spring Boot Starter 3) are being added.

8.16.1-alpha.2

Fixes

  • Optimize scope when maxBreadcrumb is 0 (#4504)
  • Fix javadoc on TransportResult (#4528)
  • Session Replay: Fix IllegalArgumentException when Bitmap is initialized with non-positive values (#4536)
  • Set thread information on transaction from OpenTelemetry attributes (#4478)

Internal

  • Flattened PerformanceCollectionData (#4505)
Changelog

Sourced from io.sentry:sentry-android's changelog.

8.17.0

Features

  • Send Timber logs through Sentry Logs (#4490)
    • Enable the Logs feature in your SentryOptions or with the io.sentry.logs.enabled manifest option and the SDK will automatically send Timber logs to Sentry, if the TimberIntegration is enabled.
    • The SDK will automatically detect Timber and use it to send logs to Sentry.
  • Send logcat through Sentry Logs (#4487)
    • Enable the Logs feature in your SentryOptions or with the io.sentry.logs.enabled manifest option and the SDK will automatically send logcat logs to Sentry, if the Sentry Android Gradle plugin is applied.
    • To set the logcat level check the Logcat integration documentation.
  • R...

    Description has been truncated

Bumps the dependencies group with 36 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| com.android.tools.build:gradle | `8.11.0` | `8.11.1` |
| com.android.application | `8.11.0` | `8.11.1` |
| com.android.library | `8.11.0` | `8.11.1` |
| com.android.test | `8.11.0` | `8.11.1` |
| [org.jetbrains.kotlinx:kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) | `0.7.0` | `0.7.1-0.6.x-compat` |
| [io.nlopez.compose.rules:detekt](https://github.com/mrmans0n/compose-rules) | `0.4.22` | `0.4.26` |
| androidx.core:core-splashscreen | `1.1.0-rc01` | `1.2.0-rc01` |
| [tech.annexflow.compose:constraintlayout-compose-multiplatform](https://github.com/lavmee/constraintlayout-compose-multiplatform) | `0.6.0` | `0.6.0-shaded-core` |
| [io.coil-kt.coil3:coil](https://github.com/coil-kt/coil) | `3.2.0` | `3.3.0` |
| [io.coil-kt.coil3:coil-compose](https://github.com/coil-kt/coil) | `3.2.0` | `3.3.0` |
| [io.coil-kt.coil3:coil-svg](https://github.com/coil-kt/coil) | `3.2.0` | `3.3.0` |
| [io.coil-kt.coil3:coil-network-ktor3](https://github.com/coil-kt/coil) | `3.2.0` | `3.3.0` |
| [com.vladsch.flexmark:flexmark](https://github.com/vsch/flexmark-java) | `0.42.14` | `0.64.8` |
| [com.google.dagger:dagger](https://github.com/google/dagger) | `2.56.2` | `2.57` |
| [com.google.dagger:dagger-compiler](https://github.com/google/dagger) | `2.56.2` | `2.57` |
| [io.sentry:sentry-android](https://github.com/getsentry/sentry-java) | `8.16.0` | `8.17.0` |
| [io.sentry:sentry-android-timber](https://github.com/getsentry/sentry-java) | `8.16.0` | `8.17.0` |
| org.slf4j:slf4j-api | `1.7.36` | `2.0.17` |
| androidx.lifecycle:lifecycle-runtime | `2.9.1` | `2.9.2` |
| androidx.lifecycle:lifecycle-viewmodel-compose | `2.9.1` | `2.9.2` |
| androidx.lifecycle:lifecycle-service | `2.9.1` | `2.9.2` |
| androidx.lifecycle:lifecycle-runtime-testing | `2.9.1` | `2.9.2` |
| [io.ktor:ktor-client-android](https://github.com/ktorio/ktor) | `3.1.2` | `3.2.2` |
| [io.ktor:ktor-client-content-negotiation](https://github.com/ktorio/ktor) | `3.1.2` | `3.2.2` |
| [io.ktor:ktor-serialization-kotlinx-json](https://github.com/ktorio/ktor) | `3.1.2` | `3.2.2` |
| [io.ktor:ktor-client-logging-jvm](https://github.com/ktorio/ktor) | `3.1.2` | `3.2.2` |
| [io.ktor:ktor-client-mock](https://github.com/ktorio/ktor) | `3.1.2` | `3.2.2` |
| [commons-codec:commons-codec](https://github.com/apache/commons-codec) | `1.18.0` | `1.19.0` |
| [no.nordicsemi.android:ble](https://github.com/NordicSemiconductor/Android-BLE-Library) | `2.10.1` | `2.10.2` |
| [no.nordicsemi.android:ble-common](https://github.com/NordicSemiconductor/Android-BLE-Library) | `2.10.1` | `2.10.2` |
| [org.mockito.kotlin:mockito-kotlin](https://github.com/mockito/mockito-kotlin) | `5.4.0` | `6.0.0` |
| [io.mockk:mockk](https://github.com/mockk/mockk) | `1.14.4` | `1.14.5` |
| [com.google.firebase:firebase-messaging](https://github.com/firebase/firebase-android-sdk) | `24.1.2` | `25.0.0` |
| [com.squareup.okio:okio](https://github.com/square/okio) | `3.14.0` | `3.15.0` |
| [com.squareup.okio:okio-fakefilesystem](https://github.com/square/okio) | `3.14.0` | `3.15.0` |
| [com.squareup.wire](https://github.com/square/wire) | `5.3.3` | `5.3.5` |



Updates `com.android.tools.build:gradle` from 8.11.0 to 8.11.1

Updates `com.android.application` from 8.11.0 to 8.11.1

Updates `com.android.library` from 8.11.0 to 8.11.1

Updates `com.android.test` from 8.11.0 to 8.11.1

Updates `org.jetbrains.kotlinx:kotlinx-datetime` from 0.7.0 to 0.7.1-0.6.x-compat
- [Release notes](https://github.com/Kotlin/kotlinx-datetime/releases)
- [Changelog](https://github.com/Kotlin/kotlinx-datetime/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx-datetime/commits)

Updates `io.nlopez.compose.rules:detekt` from 0.4.22 to 0.4.26
- [Release notes](https://github.com/mrmans0n/compose-rules/releases)
- [Commits](mrmans0n/compose-rules@v0.4.22...v0.4.26)

Updates `androidx.core:core-splashscreen` from 1.1.0-rc01 to 1.2.0-rc01

Updates `tech.annexflow.compose:constraintlayout-compose-multiplatform` from 0.6.0 to 0.6.0-shaded-core
- [Release notes](https://github.com/lavmee/constraintlayout-compose-multiplatform/releases)
- [Commits](https://github.com/lavmee/constraintlayout-compose-multiplatform/commits)

Updates `io.coil-kt.coil3:coil` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `io.coil-kt.coil3:coil-compose` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `io.coil-kt.coil3:coil-svg` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `io.coil-kt.coil3:coil-network-ktor3` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `io.coil-kt.coil3:coil-compose` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `io.coil-kt.coil3:coil-svg` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `io.coil-kt.coil3:coil-network-ktor3` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/coil-kt/coil/releases)
- [Changelog](https://github.com/coil-kt/coil/blob/main/CHANGELOG.md)
- [Commits](coil-kt/coil@3.2.0...3.3.0)

Updates `com.vladsch.flexmark:flexmark` from 0.42.14 to 0.64.8
- [Commits](https://github.com/vsch/flexmark-java/commits)

Updates `com.google.dagger:dagger` from 2.56.2 to 2.57
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.56.2...dagger-2.57)

Updates `com.google.dagger:dagger-compiler` from 2.56.2 to 2.57
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.56.2...dagger-2.57)

Updates `com.google.dagger:dagger-compiler` from 2.56.2 to 2.57
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.56.2...dagger-2.57)

Updates `io.sentry:sentry-android` from 8.16.0 to 8.17.0
- [Release notes](https://github.com/getsentry/sentry-java/releases)
- [Changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-java@8.16.0...8.17.0)

Updates `io.sentry:sentry-android-timber` from 8.16.0 to 8.17.0
- [Release notes](https://github.com/getsentry/sentry-java/releases)
- [Changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-java@8.16.0...8.17.0)

Updates `io.sentry:sentry-android-timber` from 8.16.0 to 8.17.0
- [Release notes](https://github.com/getsentry/sentry-java/releases)
- [Changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-java@8.16.0...8.17.0)

Updates `org.slf4j:slf4j-api` from 1.7.36 to 2.0.17

Updates `androidx.lifecycle:lifecycle-runtime` from 2.9.1 to 2.9.2

Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.9.1 to 2.9.2

Updates `androidx.lifecycle:lifecycle-service` from 2.9.1 to 2.9.2

Updates `androidx.lifecycle:lifecycle-runtime-testing` from 2.9.1 to 2.9.2

Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.9.1 to 2.9.2

Updates `androidx.lifecycle:lifecycle-service` from 2.9.1 to 2.9.2

Updates `androidx.lifecycle:lifecycle-runtime-testing` from 2.9.1 to 2.9.2

Updates `io.ktor:ktor-client-android` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-client-content-negotiation` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-serialization-kotlinx-json` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-client-logging-jvm` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-client-mock` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-client-content-negotiation` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-serialization-kotlinx-json` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-client-logging-jvm` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `io.ktor:ktor-client-mock` from 3.1.2 to 3.2.2
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.1.2...3.2.2)

Updates `commons-codec:commons-codec` from 1.18.0 to 1.19.0
- [Changelog](https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt)
- [Commits](apache/commons-codec@rel/commons-codec-1.18.0...rel/commons-codec-1.19.0)

Updates `no.nordicsemi.android:ble` from 2.10.1 to 2.10.2
- [Release notes](https://github.com/NordicSemiconductor/Android-BLE-Library/releases)
- [Commits](NordicSemiconductor/Android-BLE-Library@2.10.1...2.10.2)

Updates `no.nordicsemi.android:ble-common` from 2.10.1 to 2.10.2
- [Release notes](https://github.com/NordicSemiconductor/Android-BLE-Library/releases)
- [Commits](NordicSemiconductor/Android-BLE-Library@2.10.1...2.10.2)

Updates `no.nordicsemi.android:ble-common` from 2.10.1 to 2.10.2
- [Release notes](https://github.com/NordicSemiconductor/Android-BLE-Library/releases)
- [Commits](NordicSemiconductor/Android-BLE-Library@2.10.1...2.10.2)

Updates `org.mockito.kotlin:mockito-kotlin` from 5.4.0 to 6.0.0
- [Release notes](https://github.com/mockito/mockito-kotlin/releases)
- [Commits](mockito/mockito-kotlin@5.4.0...v6.0.0)

Updates `io.mockk:mockk` from 1.14.4 to 1.14.5
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](mockk/mockk@1.14.4...1.14.5)

Updates `com.google.firebase:firebase-messaging` from 24.1.2 to 25.0.0
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

Updates `com.squareup.okio:okio` from 3.14.0 to 3.15.0
- [Release notes](https://github.com/square/okio/releases)
- [Changelog](https://github.com/square/okio/blob/master/CHANGELOG.md)
- [Commits](square/okio@parent-3.14.0...parent-3.15.0)

Updates `com.squareup.okio:okio-fakefilesystem` from 3.14.0 to 3.15.0
- [Release notes](https://github.com/square/okio/releases)
- [Changelog](https://github.com/square/okio/blob/master/CHANGELOG.md)
- [Commits](square/okio@parent-3.14.0...parent-3.15.0)

Updates `com.squareup.okio:okio-fakefilesystem` from 3.14.0 to 3.15.0
- [Release notes](https://github.com/square/okio/releases)
- [Changelog](https://github.com/square/okio/blob/master/CHANGELOG.md)
- [Commits](square/okio@parent-3.14.0...parent-3.15.0)

Updates `com.android.application` from 8.11.0 to 8.11.1

Updates `com.android.library` from 8.11.0 to 8.11.1

Updates `com.android.test` from 8.11.0 to 8.11.1

Updates `com.squareup.wire` from 5.3.3 to 5.3.5
- [Changelog](https://github.com/square/wire/blob/master/CHANGELOG.md)
- [Commits](square/wire@5.3.3...5.3.5)

---
updated-dependencies:
- dependency-name: com.android.tools.build:gradle
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.android.application
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.android.library
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.android.test
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlinx:kotlinx-datetime
  dependency-version: 0.7.1-0.6.x-compat
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.nlopez.compose.rules:detekt
  dependency-version: 0.4.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.core:core-splashscreen
  dependency-version: 1.2.0-rc01
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tech.annexflow.compose:constraintlayout-compose-multiplatform
  dependency-version: 0.6.0-shaded-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil-compose
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil-svg
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil-network-ktor3
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil-compose
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil-svg
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.coil-kt.coil3:coil-network-ktor3
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.vladsch.flexmark:flexmark
  dependency-version: 0.64.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.google.dagger:dagger
  dependency-version: '2.57'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.google.dagger:dagger-compiler
  dependency-version: '2.57'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.google.dagger:dagger-compiler
  dependency-version: '2.57'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.sentry:sentry-android
  dependency-version: 8.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.sentry:sentry-android-timber
  dependency-version: 8.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.sentry:sentry-android-timber
  dependency-version: 8.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.slf4j:slf4j-api
  dependency-version: 2.0.17
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-compose
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-service
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime-testing
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-compose
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-service
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: androidx.lifecycle:lifecycle-runtime-testing
  dependency-version: 2.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-android
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-serialization-kotlinx-json
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-logging-jvm
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-mock
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-serialization-kotlinx-json
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-logging-jvm
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.ktor:ktor-client-mock
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: commons-codec:commons-codec
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: no.nordicsemi.android:ble
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nordicsemi.android:ble-common
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nordicsemi.android:ble-common
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.mockito.kotlin:mockito-kotlin
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: io.mockk:mockk
  dependency-version: 1.14.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.google.firebase:firebase-messaging
  dependency-version: 25.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: com.squareup.okio:okio
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.squareup.okio:okio-fakefilesystem
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.squareup.okio:okio-fakefilesystem
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.android.application
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.android.library
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.android.test
  dependency-version: 8.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.squareup.wire
  dependency-version: 5.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Jul 26, 2025
@dependabot dependabot bot requested a review from LionZXY as a code owner July 26, 2025 03:28
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jul 26, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 2, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 9, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 9, 2025
@dependabot dependabot bot deleted the dependabot/gradle/dependencies-96bbb699ba branch August 9, 2025 03:21
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