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 dependency io.github.qdsfdhvh:image-loader to v1.6.6 #71

Merged
merged 1 commit into from
Sep 8, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 8, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

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

v1.6.6

Compare Source

What's Changed

🐛 Fixes

📦 Dependencies

Full Changelog: 1.6.5...1.6.6

v1.6.5

Compare Source

What's Changed

🚀 Features

🐛 Fixes

💬 Other

📦 Dependencies

Full Changelog: 1.6.4...1.6.5

v1.6.4

Compare Source

What's Changed

Added takeFrom support like Kamel, may be easier to configure at some times.

val imageLoader = Imageloader {
   takeFrom(OtherImageLoader)
   // ...
}

🚀 Features

🐛 Fixes

📦 Dependencies

Full Changelog: 1.6.3...1.6.4

v1.6.3

Compare Source

What's Changed

🐛 Fixes

Full Changelog: 1.6.2...1.6.3

v1.6.2

Compare Source

What's Changed

🐛 Fixes

Full Changelog: 1.6.1...1.6.2

v1.6.1

Compare Source

What's Changed

🐛 Fixes

📦 Dependencies

💬 Other

📘 Documentation

Full Changelog: 1.6.0...1.6.1

What's Changed

v1.6.0

Compare Source

What's Changed

components {
+    setupDefaultComponents()
-    setupDefaultComponents(imageScope)
}

+  val painter = rememberImagePainter(request)
-  val painter = rememberAsyncImagePainter(request)

+ val action by rememberImageAction(request)
+ val painter = rememberImageActionPainter(action)
+ Image(painter) // option.1
+ when (action) {
+     is ImageEvent.Start -> { LoadingUI() }
+     is ImageResult.Source
+     is ImageResult.Error -> { ErrorUI() }
+     is ImageResult -> { Image(painter) /* option.2 */ }
+     else -> Unit
+ }
- val painter = rememberAsyncImagePainter(request)
- when (val requestState = painter.requestState) {
-     is ImageRequestState.Loading -> { LoadingUI() }
-     is ImageRequestState.Failure -> { Error() }
-     ImageRequestState.Success -> { Image(painter) }
- }

🚀 Features

💬 Other

📦 Dependencies

Full Changelog: 1.5.3...1.6.0

v1.5.3

Compare Source

What's Changed

🚀 Features

Full Changelog: 1.5.2...1.5.3

v1.5.2

Compare Source

What's Changed

🐛 Fixes

📦 Dependencies

📘 Documentation

Full Changelog: 1.5.1...1.5.2

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@Wavesonics Wavesonics merged commit ba0444a into develop Sep 8, 2023
1 of 2 checks passed
@renovate renovate bot deleted the renovate/image.loader branch September 8, 2023 06:04
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