Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Update dependency io.github.qdsfdhvh:image-loader to v1.7.0 #1625

Merged
merged 2 commits into from
Nov 6, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 5, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.github.qdsfdhvh:image-loader 1.6.8 -> 1.7.0 age adoption passing confidence

Release Notes

qdsfdhvh/compose-imageLoader (io.github.qdsfdhvh:image-loader)

v1.7.0

Compare Source

What's Changed

Add @​Composeable AutoSizeImage & AutoSizeBox, these based on Modifier.Node.

Use priority: AutoSizeImage -> AutoSizeBox -> rememberImagePainter.

// Option 1 on 1.7.0+
AutoSizeImage(
    "https://...",
    contentDescription = "image",
)
// Option 2 on 1.7.0+
AutoSizeBox("https://...") { action ->
    when (action) {
        is ImageAction.Success -> {
            Image(
                rememberImageSuccessPainter(action),
                contentDescription = "image",
            )
        }
        is ImageAction.Loading -> {}
        is ImageAction.Failure -> {}
    }
}
// Option 3
Image(
    painter = rememberImagePainter("https://.."),
    contentDescription = "image",
)

🚀 Features

💬 Other

📦 Dependencies

Full Changelog: 1.6.8...1.7.0

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (rebase) November 5, 2023 13:38
@chrisbanes chrisbanes disabled auto-merge November 6, 2023 18:28
@chrisbanes chrisbanes enabled auto-merge (rebase) November 6, 2023 18:28
Copy link
Contributor Author

renovate bot commented Nov 6, 2023

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.

@chrisbanes chrisbanes merged commit 999ffed into main Nov 6, 2023
8 checks passed
@chrisbanes chrisbanes deleted the renovate/io.github.qdsfdhvh-image-loader-1.x branch November 6, 2023 19:05
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant