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

Bump flask-caching from 1.9.0 to 2.0.2 #163

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2023

Bumps flask-caching from 1.9.0 to 2.0.2.

Release notes

Sourced from flask-caching's releases.

2.0.2

https://github.com/pallets-eco/flask-caching/blob/4b522cf488d355690b36a5d5eda02b34d6e80d5f/CHANGES.rst

2.0.1

https://github.com/pallets-eco/flask-caching/blob/4b522cf488d355690b36a5d5eda02b34d6e80d5f/CHANGES.rst

2.0.0

https://github.com/pallets-eco/flask-caching/blob/4b522cf488d355690b36a5d5eda02b34d6e80d5f/CHANGES.rst

1.11.1

https://github.com/pallets-eco/flask-caching/blob/4b522cf488d355690b36a5d5eda02b34d6e80d5f/CHANGES.rst

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

... (truncated)

Changelog

Sourced from flask-caching's changelog.

Version 2.0.2

Released 2023-01-12

  • fix issue with boto3 dependencie due to latest cachelib released
  • migrate flask_caching.backends.RedisCluster dependency from redis-py-cluster to redis-py
  • bug fix: make the make_cache_key attributed of decorated view functions writeable. :pr:431, issue [#97](https://github.com/pallets-eco/flask-caching/issues/97)

Version 2.0.1

Released 2022-07-30

  • Relax dependency pin to allow Flask 2.x.x

Version 2.0.0

Released 2022-06-26

  • fix bug where flask_caching.backends.RedisSentinelCache.get_many would query wrong host&port combination. :pr:372
  • Remove flask_caching.backends.FileSystemCache method overrides. It now shares 100% of cachelib.FileSystemCache API and is fully compatible. Functionality relient on implementation details of said overrides from older releases might not work anymore. :pr:369
  • Add proxy to underlaying has method of cache clients. :pr:356
  • flask_caching.backends.FileSystemCache now stores timestamps in a universal (non-frammed) way following the lastest version of cachelib.FileSystemCache. The change also reduces overhead from 17 bytes (via previous method using pickle) to 4 bytes (using python's struct). This, however, will break compatibily since older timestamps are serialized with a different strategy.

Version 1.11.1

Released 2022-05-27

  • Add cachelib to setup.py: :pr:354

Version 1.11.0

Released 2022-05-27

  • Add suport for cached/memoized generators. :pr:[#286](https://github.com/pallets-eco/flask-caching/issues/286)
  • Add support for Flask 2.0 async. :pr:[#282](https://github.com/pallets-eco/flask-caching/issues/282)
  • Cachelib is now used as backend. :pr:[#308](https://github.com/pallets-eco/flask-caching/issues/308)
  • Drop support for python 3.6. :pr:[#332](https://github.com/pallets-eco/flask-caching/issues/332)
  • Add support for dynamic cache timeouts [#296](https://github.com/pallets-eco/flask-caching/issues/296)
  • Fix bug in CACHE_OPTIONS reading for redis in RedisSentinelCache. :pr:[#343](https://github.com/pallets-eco/flask-caching/issues/343)

Version 1.10.1

... (truncated)

Commits
  • ed4c255 Release 2.0.2 (#442)
  • 580ee60 bug fix: make cached view function make_cache_key attr writeable (#431)
  • 972c666 pin cachelib to previous release (#441)
  • f48fa38 Bump wheel from 0.37.1 to 0.38.1 in /requirements (#432)
  • cc33f16 Bump pre-commit from 2.20.0 to 2.21.0 in /requirements (#434)
  • 569d959 Bump asgiref from 3.5.2 to 3.6.0 in /requirements (#433)
  • 2afb673 Bump types-redis from 4.3.21.6 to 4.3.21.7 in /requirements (#435)
  • 580048d Bump pallets-sphinx-themes from 2.0.2 to 2.0.3 in /requirements (#436)
  • b1d30a0 Bump tox from 3.27.1 to 3.28.0 in /requirements (#437)
  • a71eae9 Bump pytest-asyncio from 0.20.2 to 0.20.3 in /requirements (#438)
  • 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)

Bumps [flask-caching](https://github.com/pallets-eco/flask-caching) from 1.9.0 to 2.0.2.
- [Release notes](https://github.com/pallets-eco/flask-caching/releases)
- [Changelog](https://github.com/pallets-eco/flask-caching/blob/master/CHANGES.rst)
- [Commits](pallets-eco/flask-caching@v1.9.0...v2.0.2)

---
updated-dependencies:
- dependency-name: flask-caching
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 13, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants