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

Bump glide from 4.6.1 to 4.10.0 #19

Conversation

dependabot-preview[bot]
Copy link

Bumps glide from 4.6.1 to 4.10.0.

Release notes

Sourced from glide's releases.

Glide 4.10.0

Features

  • Added a Mocks library to mock GlideExecutor in unit/emulator tests (e021f6bf83c909a7511c8182cce0af9c58912834)
  • Added an integration library to integrate with Guava's ListenableFuture class (9fb1036645ec4e7cb159e7ca215f85375d8e4f67)
  • Add granular options for rounded corners (f36a9fa9182227d7cebb3b5eaa6cc26e7d26aea5, thanks to dlos@)
  • Include day/night mode in resource id cache keys (1b391c42f22e967c070a6a105b1e37730ab6ea6e)
  • Add an API that can be called on Glide manually to clear memory, especially when apps are backgrounded (8a094e972e686ddd1223371c268f0a4758e0b1ef, thanks to mikewallstedt@)
  • Add simple support for wide gamut color spaces (15a21b125d0d131df7bc405a947e69b4d40709ae, 7910f68b31c5f3fb465a2834b6b579464ef0f1c6)
  • Release more memory in the background on M+ (525e7ba82ec883fb518087879269836f888bd584)
  • Support Fragments not hosted by Acitivities (71359c7e385dc7d287f0da5d9e6d533ca41c76e4, thanks to Daniel Tomasiewicz)
  • Handle contexts with null application contexts (31b501d1955a7bbc1d3a6ed92307a2aa8c43e392, thanks to Daniel Tomasiewicz)

Bugs

  • Fixed incorrect downsampling for rotated images when using Target.SIZE_ORIGINAL (79dac0d1f522cab3d254f0fb91264e06e09568c6, thanks to sonyamollinger@)
  • Fixed returning negative byte values converting ByteBuffers to InputStreams (24f9c28eadc0a54d034bd0b75b4b3d7809f3c3b6, thanks to sonyamollinger@)
  • Make sure to cancel all preload requests in cancelAll() (047c22d77ebb497db29cf329c2388274ee413f20, thanks @​paynemiller92)
  • Fixed a series of concurrency bugs introduced by allowing requests to start on background threads (bee634818cff229570d0fd392130cd76ea2c3639, 5cccdfba8bbced57669629f93c92a59eb0439382, 01ea6a544d6159ed986e4f8628a4d962a7aa520d, b2a46ef7a385abd5df38ee11b8be85868768739e, 6dc03d84d5a009e6a4535381f5b3ec8aeced2912, 4de2cda0a2a5ed08273b11b8796c2c2d1327e788, b96b00096607cee23763e4dd049a297d85b89911, 890712279a997ded1b22d64ea6059c911b2f8a55, 53438b90f982d27652c2bae7cd9daf9be8d5a03a)
  • Make sure the specified numbers of threads are actually used in the animation executor (#3575, ac4aa53c6b8e4f7fa4b014ee84b858610106ec4e, thanks to @​yuriy-budiyev)
  • Avoid blinking when calling RequestManager#pause when the thumbnail portion of a request is complete the full portion is still running (2f561534cd49171d0e372f1c613d1aa4ddcae36d)
  • Make it less likely to mix support and non-support fragments (219330630652a6d9bd088c0a7e971cf796872de1, thanks to @​limuyang2)
  • Avoid downsampling incorrectly in FitCenter and CenterInside when there was
    an exact power of 2 match in one dimension but not the other (3df54453089c5ec02af552c713d5907985aee12a)
  • Always use orientation corrected sizes in Downsampler (#3673, ebdf8beb59df8d62c0a978ad967098dae8f666cf)
  • Fix transparency in GifDecoder when using RGB_565 (29c553df470401211dd080c2b3c8b69916e7ea25, thanks to @​lihongyu)
  • Handle security exceptions trying to open MediaStore Uris when applications are given access to a MediaStore Uri via an Intent (#3504, 9c48b48eb17d8d1c005352730d66d0dc85da5efe)
  • Fix an unused AnimationExecutor (7bb6f11c43c245a4e150d93d293a40c75fe99796, thanks to @​phxnirvana)

Deprecations

  • Deprecate method to set custom tags in CustomViewTarget (c8d646ebf857a676a6b682b5e78d382c52b8c5ab)

Behavior Changes

  • Custom tags in CustomViewTarget are now ignored because they cause Glide to ignore calls to clear() (c8d646ebf857a676a6b682b5e78d382c52b8c5ab)

Breaking Changes

Build Changes

  • Updated target SDK to 28 (#3880, thanks to @​prempalsingh)
  • Disable BuildConfig generation (4039981e719071473fa66515027188bdb71313ad, thanks to @​technoir42)
  • Update Truth (5bb469166d49ddb49d7e164fded2b58b48d45916, cd37a54f076392402af6df7b80bda07d96e012c7, thanks to @​cpovirk)
  • Migrated Glide to androidx (d8278f43a94484f20822170b71ac7b66269a2aa6)
  • Update OkHttp to 3.12.1 (f3fafcd3cb93e384263434b19e72ad926c249188)

Glide 4.9.0

Features

  • Allow applying RequestOptions directly in a RequestBuilder without the generated API (ed20643)

For example previously to apply centerCrop you'd have use a static method and apply():

</tr></table> ... (truncated)
Commits
  • 3bb8782 Bump version to 4.10.0
  • 3084bac Add tests for GlideFutures
  • e31e1e9 Merge pull request #3880 from prempalsingh:patch-1
  • 79dac0d Downsampler preserves original size for Target.SIZE_ORIGINAL for all downsamp...
  • 24f9c28 Update ByteBufferStream read() to return byte values from 0-255 or -1 if EOF ...
  • 0d6ae15 Update targetSdkVersion to 28
  • e021f6b Move MockGlideExecutor into public 'mocks' package
  • 9fb1036 Add integration library for use with Guava's ListenableFuture class.
  • 9bb2c19 Merge pull request #3854 from paynemiller92:master
  • 3c3f6c2 Add @​Syntethic annotation to queue property for access
  • 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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Bumps [glide](https://github.com/bumptech/glide) from 4.6.1 to 4.10.0.
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](bumptech/glide@v4.6.1...v4.10.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Sep 19, 2019
@dependabot-preview
Copy link
Author

Superseded by #66.

@dependabot-preview dependabot-preview bot deleted the dependabot/gradle/com.github.bumptech.glide-glide-4.10.0 branch April 30, 2021 04:20
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants