Skip to content

Bump glide_version from 4.8.0 to 4.11.0 - #25

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/glide_version-4.11.0
Open

Bump glide_version from 4.8.0 to 4.11.0#25
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/gradle/glide_version-4.11.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 20, 2020

Copy link
Copy Markdown

Bumps glide_version from 4.8.0 to 4.11.0.
Updates glide from 4.8.0 to 4.11.0

Release notes

Sourced from glide's releases.

Glide 4.11.0

Features

  • Add a thread timeout for Glide's threads to reduce memory when Glide is infrequently used in an application (db3acef)
  • Add getters to Bitmap Pool for cache statistics (1382e56, thanks to vtsuei@)
  • Add methods to concurrent integration libraries that allow releasing resources back to Glide's pool (277765705)
  • Allow decoding videos from ByteBuffers so that remote videos can be decoded when using a disk cache strategy other than the default (9190698, #4021)

Bugs

  • Improve ModelLoader error text (83ba102)
  • Fix errors with thumbnail loaders that could cause flashing to placeholders (690f815)
  • Fix an exception using Arrays.addAll on some devices/versions of Android (42d3f07)
  • Work around framework bug that breaks heic/heif decoding on Android Q for applications that opt in to legacy storage or request ACCESS_MEDIA_LOCATION (1c51b24)
  • Improve hardware bitmap use on P+ where more file descriptors are available (e8c841c)
  • Avoid removing caller added listeners in GlideFutures (0acd87c)
  • Avoid propagating unexpected callbacks from cancelled or failed model loaders (7e750ca)
  • Switch to the support exif library to avoid spurious logs (bd6f894, #3851)
  • Fix deadlock when recursively clearing resources, typically GIFs (100ac4a)

Deprecations

Behavior Changes

  • Allow decoding files via FileDescriptors when all other types fail so that files with headers exceeding the buffer size can be decoded (typically DNGs with metadata at the end of the file (9281d8e, thanks to timurrrr@)

Breaking Changes

Build Changes

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)
Commits

Updates okhttp3-integration from 4.8.0 to 4.11.0

Release notes

Sourced from okhttp3-integration's releases.

Glide 4.11.0

Features

  • Add a thread timeout for Glide's threads to reduce memory when Glide is infrequently used in an application (db3acef)
  • Add getters to Bitmap Pool for cache statistics (1382e56, thanks to vtsuei@)
  • Add methods to concurrent integration libraries that allow releasing resources back to Glide's pool (277765705)
  • Allow decoding videos from ByteBuffers so that remote videos can be decoded when using a disk cache strategy other than the default (9190698, #4021)

Bugs

  • Improve ModelLoader error text (83ba102)
  • Fix errors with thumbnail loaders that could cause flashing to placeholders (690f815)
  • Fix an exception using Arrays.addAll on some devices/versions of Android (42d3f07)
  • Work around framework bug that breaks heic/heif decoding on Android Q for applications that opt in to legacy storage or request ACCESS_MEDIA_LOCATION (1c51b24)
  • Improve hardware bitmap use on P+ where more file descriptors are available (e8c841c)
  • Avoid removing caller added listeners in GlideFutures (0acd87c)
  • Avoid propagating unexpected callbacks from cancelled or failed model loaders (7e750ca)
  • Switch to the support exif library to avoid spurious logs (bd6f894, #3851)
  • Fix deadlock when recursively clearing resources, typically GIFs (100ac4a)

Deprecations

Behavior Changes

  • Allow decoding files via FileDescriptors when all other types fail so that files with headers exceeding the buffer size can be decoded (typically DNGs with metadata at the end of the file (9281d8e, thanks to timurrrr@)

Breaking Changes

Build Changes

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)
Commits

Updates compiler from 4.8.0 to 4.11.0

Release notes

Sourced from compiler's releases.

Glide 4.11.0

Features

  • Add a thread timeout for Glide's threads to reduce memory when Glide is infrequently used in an application (db3acef)
  • Add getters to Bitmap Pool for cache statistics (1382e56, thanks to vtsuei@)
  • Add methods to concurrent integration libraries that allow releasing resources back to Glide's pool (277765705)
  • Allow decoding videos from ByteBuffers so that remote videos can be decoded when using a disk cache strategy other than the default (9190698, #4021)

Bugs

  • Improve ModelLoader error text (83ba102)
  • Fix errors with thumbnail loaders that could cause flashing to placeholders (690f815)
  • Fix an exception using Arrays.addAll on some devices/versions of Android (42d3f07)
  • Work around framework bug that breaks heic/heif decoding on Android Q for applications that opt in to legacy storage or request ACCESS_MEDIA_LOCATION (1c51b24)
  • Improve hardware bitmap use on P+ where more file descriptors are available (e8c841c)
  • Avoid removing caller added listeners in GlideFutures (0acd87c)
  • Avoid propagating unexpected callbacks from cancelled or failed model loaders (7e750ca)
  • Switch to the support exif library to avoid spurious logs (bd6f894, #3851)
  • Fix deadlock when recursively clearing resources, typically GIFs (100ac4a)

Deprecations

Behavior Changes

  • Allow decoding files via FileDescriptors when all other types fail so that files with headers exceeding the buffer size can be decoded (typically DNGs with metadata at the end of the file (9281d8e, thanks to timurrrr@)

Breaking Changes

Build Changes

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)
Commits

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 dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 20, 2020
Bumps `glide_version` from 4.8.0 to 4.11.0.

Updates `glide` from 4.8.0 to 4.11.0
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](bumptech/glide@4.8.0...v4.11.0)

Updates `okhttp3-integration` from 4.8.0 to 4.11.0
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](bumptech/glide@4.8.0...v4.11.0)

Updates `compiler` from 4.8.0 to 4.11.0
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](bumptech/glide@4.8.0...v4.11.0)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/gradle/glide_version-4.11.0 branch from b497717 to 852ff3a Compare June 20, 2020 21:22
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