| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Enable bugbear extension and fix warnings | Jordan Cook | 2023-05-08 | 1 | -1/+1 |
| | | |||||
| * | Set default serializers for each backend using param defaults instead of ↵ | Jordan Cook | 2023-01-13 | 1 | -5/+6 |
| | | | | | 'default_serializer' class attributes | ||||
| * | Make CachedResponse.cache_key available from all cache access methods | Jordan Cook | 2022-12-30 | 1 | -1/+1 |
| | | |||||
| * | Update type hints to appease Pylance and stricter mypy settings | Jordan Cook | 2022-12-13 | 1 | -3/+3 |
| | | |||||
| * | Consolidate BaseCache convenience methods into contains(), filter(), and ↵ | Jordan Cook | 2022-06-11 | 1 | -2/+2 |
| | | | | | delete() | ||||
| * | Split up remove_expired_reponses() into remove() and reset_expiration() ↵ | Jordan Cook | 2022-06-11 | 1 | -2/+2 |
| | | | | | methods, with more granular arguments | ||||
| * | Add decode_content option for storage classes, and use as the default ↵ | Jordan Cook | 2022-06-10 | 1 | -2/+11 |
| | | | | | behavior for Filesystem, DynamoDB, and MongoDB backends | ||||
| * | Add a BaseStorage.default_serializer attribute, to be more explicit about ↵ | Jordan Cook | 2022-04-22 | 1 | -2/+4 |
| | | | | | which backends use something other than pickle by default | ||||
| * | Merge *PickleDict storage classes into parent classes | Jordan Cook | 2022-04-22 | 1 | -2/+2 |
| | | |||||
| * | Ensure BaseCache.cache_name gets set if a backend class is initialized ↵ | Jordan Cook | 2022-04-19 | 1 | -1/+1 |
| | | | | | directly (mainly for debug/logging purposes) | ||||
| * | Move backend docs to user guide, separate from API reference docs | Jordan Cook | 2022-04-17 | 1 | -1/+7 |
| | | |||||
| * | Move detailed backend docs from rst docstings to md files | Jordan Cook | 2022-04-16 | 1 | -56/+0 |
| | | |||||
| * | Add 'Use Cases' section to each backend's docs | Jordan Cook | 2022-03-17 | 1 | -4/+23 |
| | | |||||
| * | Add lock around remove_expired_responses() for SQLite, Filesystem, and ↵ | Jordan Cook | 2022-02-22 | 1 | -0/+4 |
| | | | | | GridFS backends | ||||
| * | Improve filesystem backend thread safety | Jordan Cook | 2022-02-22 | 1 | -3/+7 |
| | | |||||
| * | Fix serialization in filesystem backend with binary content that is also ↵ | Jordan Cook | 2022-02-15 | 1 | -12/+4 |
| | | | | | valid UTF-8 | ||||
| * | Re-enable mypy pre-commit hook with attrs as an explicit hook dependency for ↵ | Jordan Cook | 2021-09-08 | 1 | -2/+4 |
| | | | | | correct mypy-attrs behavior | ||||
| * | Use pathlib.Path objects for all file paths in Filesystem and SQLite backends | Jordan Cook | 2021-08-29 | 1 | -30/+29 |
| | | |||||
| * | Reorganize user docs: break down User Guide and Advanced Usage sections into ↵ | Jordan Cook | 2021-08-26 | 1 | -1/+1 |
| | | | | | smaller pages | ||||
| * | Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ↵ | Jordan Cook | 2021-08-25 | 1 | -3/+3 |
| | | | | | main User Guide page | ||||
| * | Add FileCache.cache_dir property | Jordan Cook | 2021-08-25 | 1 | -0/+5 |
| | | |||||
| * | Fix incorrect location of redirects.sqlite when using filesystem backend | Jordan Cook | 2021-08-23 | 1 | -4/+12 |
| | | |||||
| * | Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and ↵ | Jordan Cook | 2021-08-21 | 1 | -16/+12 |
| | | | | | Filesystem backends | ||||
| * | Add FileCache.paths() wrapper method, and return a list instead of generator | Jordan Cook | 2021-08-20 | 1 | -8/+19 |
| | | |||||
| * | Better backend docs | Jordan Cook | 2021-08-20 | 1 | -3/+31 |
| | | |||||
| * | Rename DbDict to SQLiteDict for consistency with other backends (with ↵ | Jordan Cook | 2021-08-19 | 1 | -2/+2 |
| | | | | | aliases for backwards-compatibility) | ||||
| * | For filesystem backend, add an appropriate file extension to cache files | Jordan Cook | 2021-08-03 | 1 | -8/+23 |
| | | |||||
| * | Some serialization fixes & updates: | Jordan Cook | 2021-07-03 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | * Fix tests on python 3.6: * Make `cattrs` optional again * Don't run tests for serializers with missing optional dependencies * Show any skipped tests in pytest output * Fix redirect serialization for backends that serialize all values (DynamoDB and Redis) * Otherwise, the redirect value (which is just another key) will get converted into a `CachedResponse` * Make `pickle` serializer use `cattrs` if installed * Make `bson` serializer compatible with both `pymongo` version and standalone `bson` library * Split up `CattrStage` and preconf converters into separate modules * Turn preconf converters into `Stage` objects * Add `DeprecationWarning` for previous method of using `itsdangerous`, now that there's a better way to initialize it via `SerializerPipeline` * Remove `suppress_warnings` kwarg that's now unused * Make `SerializerPipeline`, `Stage`, and `CattrStage` importable from top-level package (`from requests_cache import ...`) * Add some more details to docs and docstrings | ||||
| * | addressing comments from JWCook | Parker Hancock | 2021-06-21 | 1 | -2/+1 |
| | | |||||
| * | extirpated 'is_binary' from pipelines | Parker Hancock | 2021-06-14 | 1 | -4/+13 |
| | | |||||
| * | Integrate serializers with backends | Jordan Cook | 2021-06-11 | 1 | -4/+6 |
| | | |||||
| * | Make cattrs optional, and other cleanup | Jordan Cook | 2021-05-26 | 1 | -1/+0 |
| | | |||||
| * | Add use_temp option to SQLite backend | Jordan Cook | 2021-04-22 | 1 | -0/+3 |
| | | | | | Closes #243 | ||||
| * | Store responses for filesystem backend in a 'responses' subdirectory, to ↵ | Jordan Cook | 2021-04-22 | 1 | -5/+7 |
| | | | | | avoid deleting redirects.sqlite with clear() | ||||
| * | For SQLite and filesystem backends, resolve file paths in BaseStorage class ↵ | Jordan Cook | 2021-04-21 | 1 | -6/+5 |
| | | | | | rather than BaseCache class | ||||
| * | Add a filesystem backend | Jordan Cook | 2021-04-21 | 1 | -0/+87 |
