Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 21, 2025

Bumps me.saket.telephoto:zoomable-image-coil from 0.6.2 to 0.17.0.

Release notes

Sourced from me.saket.telephoto:zoomable-image-coil's releases.

0.17.0

Highlights

  • #45, #88, #140, #150, #152, #158: Upscaled images can now be zoomed.
  • saket/telephoto#135: Zoom to a specific pixel using ZoomFocalPoint:
    val imageState = rememberZoomableImageState()
    imageState.zoomableState.zoomTo(
      zoomFactor = 2f,
      focal = ZoomFocalPoint.moveToViewportCenter(…), // or zoomAround()
    )
  • saket/telephoto#141: Selectively disable zooming or panning:
    ZoomableAsyncImage(
      model = "https://dog.ceo",
      contentDescription = "",
      gestures = EnabledZoomGestures.ZoomOnly,  // or PanOnly
    )

⚠️ Potentially breaking changes

  • When a small image is upscaled to fit the viewport, its starting scale can be larger than its maximum zoom limit. In such cases, the image wouldn't respond to zoom gestures. telephoto now automatically increases the max zoom limit when this happens, ensuring the image can still be zoomed.
    • To disable this, pass DynamicZoomSpec.fixed(…) to rememberZoomableState().
    • If you're using a custom DoubleClickToZoomListener listener, review its behavior with small images.
  • The receiver of DoubleClickToZoomListener#onDoubleClick() has changed. This API was already marked experimental.
  • FlickToDismiss() now uses rubber banding. More on this below.

Improvements

  • ZoomableImage() / Modifier.zoomable
    • Added DynamicZoomSpec for lazy calculation of zoom limits using the layout info.
    • Improved zooming using mouse-wheel scrolls on JVM.
    • Migrated to LocalHapticFeedback so haptics can be customized or disabled.
  • SubSamplingImage()

Bug fixes

  • saket/telephoto#146: Added missing contentPadding param to ZoomableAsyncImage() (by @​xertrec).
  • saket/telephoto#160: Fixed ignored overzoom effect for under-zooms (by @​FooIbar).
  • Fixed broken double-click zooming for images that use ContentScale.FillBounds.
  • zoomTo() and zoomBy() no longer crash when given invalid or out-of-bound zoom factors.

Unreleased libraries

This release also includes updates to FlickToDismiss(). While it hasn't been officially released yet, some major apps have already started using it. I plan to announce it soon, but in the meantime here are the changes:

  • Improved drag physics and added a rubber banding effect. You can customize this via rememberFlickToDismissState().
  • A haptic feedback is now played when the dismiss threshold is crossed. This can customized via LocalHapticFeedback.

0.16.0

... (truncated)

Commits
  • 010d9de Enable rubber banding in FlickToDismiss() by default
  • 9893d17 Prepare to release v0.17.0
  • c38fe92 Verify disabling of pan using a screenshot test
  • 26b97c2 Add some doc to EnabledZoomGesture's constructor
  • 977ec77 Regenerate public API surface
  • 94b1746 Fix a NoSuchMethodError in Modifier.zoomablePeekOverlay()
  • a734a3f Fix warnings in tests
  • ecea86f Rename ZoomInteractions -> EnabledZoomGestures
  • 1f1075f Use ZoomInteractions in ZoomableGlideImage()
  • 4b9b591 Use ZoomInteractions in coil3.ZoomableAsyncImage()
  • Additional commits viewable in compare view

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Bumps [me.saket.telephoto:zoomable-image-coil](https://github.com/saket/telephoto) from 0.6.2 to 0.17.0.
- [Release notes](https://github.com/saket/telephoto/releases)
- [Commits](saket/telephoto@0.6.2...0.17.0)

---
updated-dependencies:
- dependency-name: me.saket.telephoto:zoomable-image-coil
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Sep 21, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 5, 2025

Superseded by #628.

@dependabot dependabot bot closed this Oct 5, 2025
@dependabot dependabot bot deleted the dependabot/gradle/me.saket.telephoto-zoomable-image-coil-0.17.0 branch October 5, 2025 22:07
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