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 flask-caching from 1.8.0 to 1.10.1 in /api/requirements #248

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 18, 2021

Bumps flask-caching from 1.8.0 to 1.10.1.

Release notes

Sourced from flask-caching's releases.

1.10.1

Released on March 17th 2021

  • A GoogleCloudStorageCache backend has been added to the user contributed caching backends. PR #214.
  • Fix a regression introduced in the last release which broke all applications subclassing the Cache class.
  • Add test_generic_get_bytes test case. PR #236.
  • Various improvements and fixes.

1.10.0

Released on March 4th 2021

DEPRECATION NOTICE

  • uwsgicache is not officially maintained anymore and deprecated.

  • Caching backends are now loaded using the full path to the caching backend class. For officially supported caching backends it is sufficient to just specify the name of the backend class. See the documentation for a full list of caching backends: https://flask-caching.readthedocs.io/en/latest/#configuring-flask-caching

    In the next major release (2.0), this will be the only supported way.

Added

  • Important: The way caching backends are loaded have been refactored. Instead of passing the name of the initialization function one can now use the full path to the caching backend class. For example: CACHE_TYPE="flask_caching.contrib.UWSGICache". In the next major release (2.0), this will be the only supported way.
    Thanks to @​gergelypolonkai for doing the heavy lifting here!
  • Add Type Annotations. PR #198.
  • Add some basic logging to SimpleCache and FileSystemCache for better observability. PR #203.
  • Add option in memoize to ignore args via args_to_ignore. PR #201.
  • Add a Redis Cluster Mode (RedisClusterCache) caching backend. PR #173.

Changed

  • Switch from Travis-CI to GitHub Actions
  • Do not let PIP install this package on unsupported Python Versions. PR #179.
  • Stop marking wheels as Python 2 compatible. PR #196.

Fixed

  • Fix add() in RedisCache without a timeout. PR #218.
  • Fix error in how the FileSystemCache counts the number of files. PR #210.
  • Fix default_timeout not being properly passed to its super constructor. PR #187.
  • Fix kwargs not being passed on in function _memoize_make_cache_key. PR #184.
  • Fix uWSGI initialization by checking if uWSGI has the cache2 option enabled. PR #176.
  • Documentation updates and fixes.

... (truncated)

Changelog

Sourced from flask-caching's changelog.

Version 1.10.1

Released 2021-03-17

  • A GoogleCloudStorageCache backend has been added to the user contributed caching backends. PR [#214](https://github.com/sh4nks/flask-caching/issues/214) <https://github.com/sh4nks/flask-caching/pull/214>_.
  • Fix a regression introduced in the last release which broke all applications subclassing the Cache class.
  • Add test_generic_get_bytes test case. PR [#236](https://github.com/sh4nks/flask-caching/issues/236) <https://github.com/sh4nks/flask-caching/pull/236>_.
  • Various improvements and fixes.

Version 1.10.0

Released 2021-03-04

  • Important: The way caching backends are loaded have been refactored. Instead of passing the name of the initialization function one can now use the full path to the caching backend class. For example: CACHE_TYPE="flask_caching.backends.SimpleCache". In the next major release (2.0), this will be the only supported way.
  • UWSGICache is not officially supported anymore and moved to the user contributed backends.
  • Switch from Travis-CI to GitHub Actions
  • Fix add() in RedisCache without a timeout. PR [#218](https://github.com/sh4nks/flask-caching/issues/218) <https://github.com/sh4nks/flask-caching/pull/218>_.
  • Fix error in how the FileSystemCache counts the number of files. PR [#210](https://github.com/sh4nks/flask-caching/issues/210) <https://github.com/sh4nks/flask-caching/pull/210>_.
  • Type Annotations have been added. PR [#198](https://github.com/sh4nks/flask-caching/issues/198) <https://github.com/sh4nks/flask-caching/pull/198>_.
  • Add some basic logging to SimpleCache and FileSystemCache for better observability. PR [#203](https://github.com/sh4nks/flask-caching/issues/203) <https://github.com/sh4nks/flask-caching/pull/203>_.
  • Add option in memoize to ignore args PR [#201](https://github.com/sh4nks/flask-caching/issues/201) <https://github.com/sh4nks/flask-caching/pull/201>_.
  • Stop marking wheels as Python 2 compatible. PR [#196](https://github.com/sh4nks/flask-caching/issues/196) <https://github.com/sh4nks/flask-caching/pull/196>_.
  • Fix default_timeout not being properly passed to its super constructor. PR [#187](https://github.com/sh4nks/flask-caching/issues/187) <https://github.com/sh4nks/flask-caching/pull/187>_.
  • Fix kwargs not being passed on in function _memoize_make_cache_key. PR [#184](https://github.com/sh4nks/flask-caching/issues/184) <https://github.com/sh4nks/flask-caching/pull/184>_.
  • Add a Redis Cluster Mode caching backend. PR [#173](https://github.com/sh4nks/flask-caching/issues/173) <https://github.com/sh4nks/flask-caching/pull/173>_.
  • Do not let PIP install this package on unsupported Python Versions. PR [#179](https://github.com/sh4nks/flask-caching/issues/179) <https://github.com/sh4nks/flask-caching/pull/179>_.
  • Fix uWSGI initialization by checking if uWSGI has the 'cache2' option

... (truncated)

Commits
  • 31f6949 Exclude contrib from coverage
  • 588099f Fix project_urls by adding https://
  • 8101442 v1.10.0 -> v1.10.1
  • 8920351 Update changelog for 1.10.1
  • 9818aa8 Merge pull request #236 from oittaa/test_generic_get_bytes
  • 72642e8 Fix a regression when the Cache class is subclassed
  • e68af2e Use long description from README and add some useful links
  • 6908583 Set max line length to 88 (same as black's default)
  • d252d66 Fix pre-commit not targeting an immutable rev
  • 6ace510 Add test_generic_get_bytes
  • 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 dependabot bot added the dependencies Pull requests that update a dependency file label Mar 18, 2021
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github May 30, 2022

Superseded by #732.

@dependabot dependabot bot closed this May 30, 2022
@dependabot dependabot bot deleted the dependabot/pip/api/requirements/flask-caching-1.10.1 branch May 30, 2022 01:28
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