Compose-Multiplatform-KmpViewModel-Unsplash-Sample icon indicating copy to clipboard operation
Compose-Multiplatform-KmpViewModel-Unsplash-Sample copied to clipboard

Update dependency media.kamel:kamel-image to v1

Open renovate[bot] opened this issue 1 year ago • 0 comments
trafficstars

This PR contains the following updates:

Package Change Age Confidence
media.kamel:kamel-image 0.9.4 -> 1.0.8 age confidence

Release Notes

Kamel-Media/Kamel (media.kamel:kamel-image)

v1.0.8

  • kotlin 2.2.20
  • compose 1.9.0

v1.0.7

  • kotlin 2.2.0
  • compose 1.8.2
Fixes
  • #​175 Android package namespace build warning

v1.0.6

  • kotlin 2.1.21
  • compose 1.8.1

v1.0.5

  • kotlin 2.1.20
  • compose 1.8.0
Fixes
  • #​115 kamel-decoder-animated-image Lowers the android minSdk to 21 and returns a runtime error in onFailure if attempting to use on less than android 28

v1.0.3

  • kotlin 2.1.0
  • compose 1.7.3
Fixes

v1.0.2

  • kotlin 2.1.0
  • compose 1.7.1

v1.0.1

  • kotlin 2.0.21
  • compose 1.7.0

v1.0.0

v1.0.0 Release!

  • kotlin 2.0.21
  • compose 1.6.11
  • ktor: 3.0.0

v0.x -> v1.x notes:

New
  • #​85 WasmJs support!
  • #​96 With media.kamel:kamel-image is now bare bones and lets you pick and choose all mappers, fetchers, and decoders to import into your project that are not included in kamel-core.
  • #​96 media.kamel:kamel-image-default Includes all includes all packages besides kamel-decoder-svg-batik
  • Adds a FileUrlFetcher to support loading non-resource local files
  • String mapper will now handle file:/// uris: asyncPainterResource("file:///$absolutePath")
  • Adds gif support! #​12 with #​100 by @​luca992
  • Prevent out of memory exceptions for xl images with experimental Image resizing image bitmap decoder (Android only right now) #​105 by @​luca992
    • To try out add implementation("media.kamel:kamel-decoder-image-bitmap-resizing:1.0.0-beta.6") and add imageBitmapResizingDecoder() to your KamelConfig
Breaking changes
  • Change media.kamel:kamel-image -> media.kamel:kamel-image-default for the same behavior as pre 1.0.0 releases.
  • Old Depreciated methods removed
Depreciated
Setup
Default Setup

Add the dependency to the common source-set or to any platform source-set:

kotlin {
    sourceSets {
        commonMain {
            dependencies {
                implementation("media.kamel:kamel-image-default:1.0.0")
                // no need to specify ktor engines, one is included for each target
                // ...
            }
        }
    }
}
Granular Setup

For a more granular setup, you can choose which modules to include in your project:

kotlin {
    sourceSets {
        commonMain {
            dependencies {
                // core module (required)
                implementation("media.kamel:kamel-image:1.0.0")
                
                // Note: When using `kamel-image` a ktor engine is not included.
                // To fetch remote images you also must ensure you add your own 
                // ktor engine for each target.
                
                // optional modules (choose what you need and add them to your kamel config)
                implementation("media.kamel:kamel-decoder-image-bitmap:1.0.0")
                implementation("media.kamel:kamel-decoder-image-bitmap-resizing:1.0.0") // android only right now
                implementation("media.kamel:kamel-decoder-image-vector:1.0.0")
                implementation("media.kamel:kamel-decoder-svg-batik:1.0.0")
                implementation("media.kamel:kamel-decoder-svg-std:1.0.0")
                implementation("media.kamel:kamel-decoder-animated-image:1.0.0")

                implementation("media.kamel:kamel-fetcher-resources-jvm:1.0.0")
                implementation("media.kamel:kamel-fetcher-resources-android:1.0.0")
                // ...
            }
        }

        jvmMain {
            dependencies {
                // optional modules (choose what you need and add them to your kamel config)
                implementation("media.kamel:kamel-fetcher-resources-jvm:1.0.0")
                // ...
            }
        }

        androidMain {
            dependencies {
                // optional modules (choose what you need and add them to your kamel config)
                implementation("media.kamel:kamel-fetcher-resources-android:1.0.0")
                // ...
            }
        }
    }
}
Granular Setup: Ktor HttpClient Engine

When using kamel-image ktor engines are not included per target. In order to fetch remote images you also must ensure you add your own ktor engine for each target. You can find the available engines here.

v0.9.5

  • Kotlin 2.0.0
  • Compose 1.6.10
  • Wasm build also published with 0.9.5-wasm

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • [ ] If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar Oct 10 '24 19:10 renovate[bot]