Skip to content

chore(deps): bump coil from 3.1.0 to 3.4.0#392

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/coil-3.4.0
Closed

chore(deps): bump coil from 3.1.0 to 3.4.0#392
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/coil-3.4.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 16, 2026

Bumps coil from 3.1.0 to 3.4.0.
Updates io.coil-kt.coil3:coil-compose from 3.1.0 to 3.4.0

Release notes

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

3.4.0

See CHANGELOG.md.

3.3.0

See CHANGELOG.md.

3.2.0

See CHANGELOG.md.

3.2.0-rc02

See CHANGELOG.md.

3.2.0-rc01

See CHANGELOG.md.

Changelog

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

[3.4.0] - February 24, 2026

  • New: Add ConcurrentRequestStrategy to support combining in-flight network requests for the same key. (#2995, #3326)
    • DeDupeConcurrentRequestStrategy enables this behavior and lets waiters wait for the results of an in-flight network request.
      • This behavior is experimental and is currently disabled by default.
      • Currently, requests are always combined based on their diskCacheKey.
    • OkHttpNetworkFetcherFactory, KtorNetworkFetcherFactory, and NetworkFetcher.Factory now accept concurrentRequestStrategy.
  • New: Decode images on JS/WASM using a web worker to avoid blocking the browser main thread. (#3305)
  • New: Add support for Linux native targets (linuxX64 and linuxArm64) for non-Compose multiplatform artifacts. (#3054)
  • New: Add Compose-only APIs to improve transitions between subsequent requests. (#3141, #3175)
    • ImageRequest.Builder.useExistingImageAsPlaceholder enables crossfading from the previous image when no placeholder is set.
    • ImageRequest.Builder.preferEndFirstIntrinsicSize lets CrossfadePainter prefer the end painter's intrinsic size.
  • New: Add ImageLoader.Builder.repeatCount(Int) in coil-gif to set a global animated image repeat count. (#3143)
  • New: Add support for preferring embedded video thumbnails in coil-video. (#3107)
  • New: Publish coil-lint with coil-core and add a lint check to catch accidental kotlin.error() calls in ImageRequest.Builder blocks. (#3304)
  • Set Kotlin language version to 2.1. (#3302)
  • Make BitmapFetcher available in common code. (#3286)
  • Use applicationContext when creating the singleton ImageLoader on Android. (#3246)
  • Cache eligible non-2xx HTTP responses by default (e.g. 404) and stop caching non-cacheable responses (e.g. 500). (#3137, #3139)
  • Fix potential race condition when consuming OkHttp response bodies. (#3186)
  • Fix maxBitmapSize edge case to prevent oversized bitmap crashes on Android. (#3259)
  • Update Kotlin to 2.3.10.
  • Update Compose to 1.9.3.
  • Update Okio to 3.16.4.
  • Update Skiko to 0.9.22.2.
  • Update kotlinx-io-okio to 0.9.0.
  • Update androidx.core to 1.16.0.
  • Update androidx.lifecycle to 2.9.4.
  • Update androidx.exifinterface to 1.4.2.

[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.

... (truncated)

Commits
  • 51638b0 Prepare version 3.4.0.
  • e56678b Add changes for 3.4.0. (#3331)
  • be899b5 Implement ConcurrentRequestStrategy to support awaiting in-flight requests. (...
  • 4981da1 fix(deps): update dependency org.jetbrains.kotlinx:kotlinx-io-okio to v0.9.0 ...
  • 8693061 Enable ktlint trailing commas (#3327)
  • 72f919b Add work around for updateLegacyAbi not updating Android API files. (#3325)
  • 09dab03 Update ktlint to 1.8.0. (#3324)
  • 69944c7 Publish coil-lint with coil-core. Improve coil-lint test coverage. (#3323)
  • 5e1ad4e Fix use of deprecated computeSizeMultiplier overload. (#3321)
  • 896fde5 fix(deps): update androidx.benchmark to v1.5.0-alpha03 (#3314)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-network-okhttp from 3.1.0 to 3.4.0

Release notes

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

3.4.0

See CHANGELOG.md.

3.3.0

See CHANGELOG.md.

3.2.0

See CHANGELOG.md.

3.2.0-rc02

See CHANGELOG.md.

3.2.0-rc01

See CHANGELOG.md.

Changelog

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

[3.4.0] - February 24, 2026

  • New: Add ConcurrentRequestStrategy to support combining in-flight network requests for the same key. (#2995, #3326)
    • DeDupeConcurrentRequestStrategy enables this behavior and lets waiters wait for the results of an in-flight network request.
      • This behavior is experimental and is currently disabled by default.
      • Currently, requests are always combined based on their diskCacheKey.
    • OkHttpNetworkFetcherFactory, KtorNetworkFetcherFactory, and NetworkFetcher.Factory now accept concurrentRequestStrategy.
  • New: Decode images on JS/WASM using a web worker to avoid blocking the browser main thread. (#3305)
  • New: Add support for Linux native targets (linuxX64 and linuxArm64) for non-Compose multiplatform artifacts. (#3054)
  • New: Add Compose-only APIs to improve transitions between subsequent requests. (#3141, #3175)
    • ImageRequest.Builder.useExistingImageAsPlaceholder enables crossfading from the previous image when no placeholder is set.
    • ImageRequest.Builder.preferEndFirstIntrinsicSize lets CrossfadePainter prefer the end painter's intrinsic size.
  • New: Add ImageLoader.Builder.repeatCount(Int) in coil-gif to set a global animated image repeat count. (#3143)
  • New: Add support for preferring embedded video thumbnails in coil-video. (#3107)
  • New: Publish coil-lint with coil-core and add a lint check to catch accidental kotlin.error() calls in ImageRequest.Builder blocks. (#3304)
  • Set Kotlin language version to 2.1. (#3302)
  • Make BitmapFetcher available in common code. (#3286)
  • Use applicationContext when creating the singleton ImageLoader on Android. (#3246)
  • Cache eligible non-2xx HTTP responses by default (e.g. 404) and stop caching non-cacheable responses (e.g. 500). (#3137, #3139)
  • Fix potential race condition when consuming OkHttp response bodies. (#3186)
  • Fix maxBitmapSize edge case to prevent oversized bitmap crashes on Android. (#3259)
  • Update Kotlin to 2.3.10.
  • Update Compose to 1.9.3.
  • Update Okio to 3.16.4.
  • Update Skiko to 0.9.22.2.
  • Update kotlinx-io-okio to 0.9.0.
  • Update androidx.core to 1.16.0.
  • Update androidx.lifecycle to 2.9.4.
  • Update androidx.exifinterface to 1.4.2.

[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.

... (truncated)

Commits
  • 51638b0 Prepare version 3.4.0.
  • e56678b Add changes for 3.4.0. (#3331)
  • be899b5 Implement ConcurrentRequestStrategy to support awaiting in-flight requests. (...
  • 4981da1 fix(deps): update dependency org.jetbrains.kotlinx:kotlinx-io-okio to v0.9.0 ...
  • 8693061 Enable ktlint trailing commas (#3327)
  • 72f919b Add work around for updateLegacyAbi not updating Android API files. (#3325)
  • 09dab03 Update ktlint to 1.8.0. (#3324)
  • 69944c7 Publish coil-lint with coil-core. Improve coil-lint test coverage. (#3323)
  • 5e1ad4e Fix use of deprecated computeSizeMultiplier overload. (#3321)
  • 896fde5 fix(deps): update androidx.benchmark to v1.5.0-alpha03 (#3314)
  • Additional commits viewable in compare view

Updates io.coil-kt.coil3:coil-network-ktor3 from 3.1.0 to 3.4.0

Release notes

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

3.4.0

See CHANGELOG.md.

3.3.0

See CHANGELOG.md.

3.2.0

See CHANGELOG.md.

3.2.0-rc02

See CHANGELOG.md.

3.2.0-rc01

See CHANGELOG.md.

Changelog

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

[3.4.0] - February 24, 2026

  • New: Add ConcurrentRequestStrategy to support combining in-flight network requests for the same key. (#2995, #3326)
    • DeDupeConcurrentRequestStrategy enables this behavior and lets waiters wait for the results of an in-flight network request.
      • This behavior is experimental and is currently disabled by default.
      • Currently, requests are always combined based on their diskCacheKey.
    • OkHttpNetworkFetcherFactory, KtorNetworkFetcherFactory, and NetworkFetcher.Factory now accept concurrentRequestStrategy.
  • New: Decode images on JS/WASM using a web worker to avoid blocking the browser main thread. (#3305)
  • New: Add support for Linux native targets (linuxX64 and linuxArm64) for non-Compose multiplatform artifacts. (#3054)
  • New: Add Compose-only APIs to improve transitions between subsequent requests. (#3141, #3175)
    • ImageRequest.Builder.useExistingImageAsPlaceholder enables crossfading from the previous image when no placeholder is set.
    • ImageRequest.Builder.preferEndFirstIntrinsicSize lets CrossfadePainter prefer the end painter's intrinsic size.
  • New: Add ImageLoader.Builder.repeatCount(Int) in coil-gif to set a global animated image repeat count. (#3143)
  • New: Add support for preferring embedded video thumbnails in coil-video. (#3107)
  • New: Publish coil-lint with coil-core and add a lint check to catch accidental kotlin.error() calls in ImageRequest.Builder blocks. (#3304)
  • Set Kotlin language version to 2.1. (#3302)
  • Make BitmapFetcher available in common code. (#3286)
  • Use applicationContext when creating the singleton ImageLoader on Android. (#3246)
  • Cache eligible non-2xx HTTP responses by default (e.g. 404) and stop caching non-cacheable responses (e.g. 500). (#3137, #3139)
  • Fix potential race condition when consuming OkHttp response bodies. (#3186)
  • Fix maxBitmapSize edge case to prevent oversized bitmap crashes on Android. (#3259)
  • Update Kotlin to 2.3.10.
  • Update Compose to 1.9.3.
  • Update Okio to 3.16.4.
  • Update Skiko to 0.9.22.2.
  • Update kotlinx-io-okio to 0.9.0.
  • Update androidx.core to 1.16.0.
  • Update androidx.lifecycle to 2.9.4.
  • Update androidx.exifinterface to 1.4.2.

[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.

... (truncated)

Commits
  • 51638b0 Prepare version 3.4.0.
  • e56678b Add changes for 3.4.0. (#3331)
  • be899b5 Implement ConcurrentRequestStrategy to support awaiting in-flight requests. (...
  • 4981da1 fix(deps): update dependency org.jetbrains.kotlinx:kotlinx-io-okio to v0.9.0 ...
  • 8693061 Enable ktlint trailing commas (#3327)
  • 72f919b Add work around for updateLegacyAbi not updating Android API files. (#3325)
  • 09dab03 Update ktlint to 1.8.0. (#3324)
  • 69944c7 Publish coil-lint with coil-core. Improve coil-lint test coverage. (#3323)
  • 5e1ad4e Fix use of deprecated computeSizeMultiplier overload. (#3321)
  • 896fde5 fix(deps): update androidx.benchmark to v1.5.0-alpha03 (#3314)
  • Additional commits viewable in compare view

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Mar 16, 2026
Bumps `coil` from 3.1.0 to 3.4.0.

Updates `io.coil-kt.coil3:coil-compose` from 3.1.0 to 3.4.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.1.0...3.4.0)

Updates `io.coil-kt.coil3:coil-network-okhttp` from 3.1.0 to 3.4.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.1.0...3.4.0)

Updates `io.coil-kt.coil3:coil-network-ktor3` from 3.1.0 to 3.4.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.1.0...3.4.0)

---
updated-dependencies:
- dependency-name: io.coil-kt.coil3:coil-compose
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.coil-kt.coil3:coil-network-okhttp
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.coil-kt.coil3:coil-network-ktor3
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/gradle/coil-3.4.0 branch from 9c4e772 to b6ba432 Compare March 18, 2026 08:13
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 18, 2026

Looks like these dependencies are up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Mar 18, 2026
@dependabot dependabot bot deleted the dependabot/gradle/coil-3.4.0 branch March 18, 2026 14:00
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