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

fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.8 #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

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

v1.7.8

Compare Source

What's Changed
🚀 Features
🐛 Fixes
💬 Other
Full Changelog: 1.7.7...1.7.8

v1.7.7

Compare Source

What's Changed

🐛 Fixes

📦 Dependencies

Full Changelog: 1.7.6...1.7.7

v1.7.6

Compare Source

What's Changed

🚀 Features

💬 Other

📦 Dependencies

Full Changelog: 1.7.5...1.7.6

v1.7.5

Compare Source

What's Changed

🐛 Fixes

📦 Dependencies

Full Changelog: 1.7.4...1.7.5

v1.7.4

Compare Source

What's Changed

🐛 Fixes

💬 Other

📦 Dependencies

Full Changelog: 1.7.3...1.7.4

v1.7.3

Compare Source

What's Changed

🚀 Features

📦 Dependencies

Full Changelog: 1.7.2...1.7.3

v1.7.2

Compare Source

What's Changed

🚀 Features

📦 Dependencies

Full Changelog: 1.7.1...1.7.2

v1.7.1

Compare Source

What's Changed

🚀 Features

📦 Dependencies

Full Changelog: 1.7.0...1.7.1

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

v1.6.8

Compare Source

What's Changed
🚀 Features
📦 Dependencies
Full Changelog: 1.6.7...1.6.8

v1.6.7

Compare Source

What's Changed
🐛 Fixes
Full Changelog: 1.6.6...1.6.7

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

v1.5.1

Compare Source

What's Changed
🐛 Fixes
Full Changelog: 1.5.0...1.5.1

v1.5.0

Compare Source

What's Changed
🚀 Features
🐛 Fixes
📦 Dependencies
Full Changelog: 1.4.5...1.5.0

v1.4.5

Compare Source

What's Changed
🚀 Features
📦 Dependencies
Full Changelog: 1.4.4...1.4.5

v1.4.4

Compare Source

What's Changed
🐛 Fixes
📦 Dependencies
Full Changelog: 1.4.3...1.4.4

v1.4.3

Compare Source

What's Changed
🐛 Fixes
📦 Dependencies
Full Changelog: 1.4.2...1.4.3

v1.4.2

Compare Source

What's Changed
🐛 Fixes
📦 Dependencies
Full Changelog: 1.4.1...1.4.2

v1.4.1

Compare Source

What's Changed

🚀 Features

💬 Other

📦 Dependencies

Full Changelog: 1.4.0...1.4.1

v1.4.0

Compare Source

What's Changed

🚀 Features

📦 Dependencies

Full Changelog: 1.3.1...1.4.0

v1.3.1

What's Changed

🐛 Fixes

📦 Dependencies

  • Update dependency org.jetbrains.compose to v1.3.1 by @​renovate[bot] in #​93
  • Update dependency androidx.lifecycle:lifecycle-runtime-ktx to v2.6.0 by @​renovate[bot] in #​95
Full Changelog: 1.2.10...1.3.1

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.

@renovate renovate bot changed the title Update dependency io.github.qdsfdhvh:image-loader to v1.3.1 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.5.3 Jul 4, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 27abf9b to 23e1198 Compare July 4, 2023 19:57
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.5.3 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.0 Jul 8, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 23e1198 to ec9ed9e Compare July 8, 2023 10:49
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.0 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.1 Jul 27, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from ec9ed9e to d84938d Compare July 27, 2023 13:28
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.1 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.2 Jul 28, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from d84938d to eae4851 Compare July 28, 2023 07:15
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.2 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.3 Jul 31, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch 2 times, most recently from 2e790b1 to 653f4cc Compare August 5, 2023 06:49
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.3 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.4 Aug 5, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch 4 times, most recently from cc42424 to b6cec45 Compare August 23, 2023 09:45
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.4 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.5 Aug 31, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch 2 times, most recently from b9ad853 to 88d8d9b Compare September 7, 2023 12:02
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.5 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.6 Sep 7, 2023
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.6 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.7 Sep 11, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 88d8d9b to 51764ab Compare September 11, 2023 07:49
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 51764ab to c4975b3 Compare October 10, 2023 04:41
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.7 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.8 Oct 10, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from c4975b3 to 0e23e1d Compare October 12, 2023 18:00
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 0e23e1d to 0b76b5a Compare November 5, 2023 13:18
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.6.8 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.0 Nov 5, 2023
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 0b76b5a to 2bc1be4 Compare January 1, 2024 08:17
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.0 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.1 Jan 1, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 2bc1be4 to b8219fd Compare January 6, 2024 15:10
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.1 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.2 Jan 6, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from b8219fd to d2b2e67 Compare January 8, 2024 16:02
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.2 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.3 Jan 8, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from d2b2e67 to 68fecc0 Compare February 6, 2024 10:26
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.3 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.4 Feb 6, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from 68fecc0 to fa912e6 Compare February 15, 2024 07:16
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.4 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.5 Feb 15, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from fa912e6 to ebfc3d6 Compare February 21, 2024 15:35
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.5 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.6 Feb 21, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from ebfc3d6 to e68c908 Compare March 2, 2024 17:10
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.6 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.7 Mar 2, 2024
@renovate renovate bot force-pushed the renovate/io.github.qdsfdhvh-image-loader-1.x branch from e68c908 to 2e48214 Compare March 3, 2024 13:01
@renovate renovate bot changed the title fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.7 fix(deps): update dependency io.github.qdsfdhvh:image-loader to v1.7.8 Mar 3, 2024
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.

0 participants