| Commit message (Expand) | Author | Age | Files | Lines |
| * | Redact ingored_parameters from CachedResponse.url | Jordan Cook | 2021-09-15 | 2 | -6/+24 |
| * | Alias/rename old_data_on_error to stale_if_error for consistency with Cache-C... | Jordan Cook | 2021-09-06 | 1 | -8/+14 |
| * | Use blake2 instead of sha256 for hashing request info | Jordan Cook | 2021-09-06 | 2 | -3/+4 |
| * | Add a bit of missing test coverage | Jordan Cook | 2021-09-06 | 4 | -13/+36 |
| * | Allow match_headers to optionally accept a list of specific headers to match | Jordan Cook | 2021-09-06 | 4 | -13/+8 |
| * | Alias/rename 'include_get_headers' to 'match_headers' for clarity (backwards-... | Jordan Cook | 2021-09-06 | 1 | -6/+12 |
| * | Revert renaming DynamoDB backend classes; a minor inconsistency is probably b... | Jordan Cook | 2021-08-30 | 1 | -6/+6 |
| * | Use pathlib.Path objects for all file paths in Filesystem and SQLite backends | Jordan Cook | 2021-08-29 | 2 | -12/+11 |
| * | Allow has_url(), delete_url(), and create_key() to optionally take requests.R... | Jordan Cook | 2021-08-28 | 1 | -2/+20 |
| * | Add some additional tests for cache key normalization | Jordan Cook | 2021-08-28 | 1 | -2/+39 |
| * | Enable conditional requests by default | Jordan Cook | 2021-08-26 | 1 | -14/+6 |
| * | Minor optimization: exclude redundant CachedResponse.cache_key and CachedHTTP... | Jordan Cook | 2021-08-25 | 1 | -2/+1 |
| * | Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ... | Jordan Cook | 2021-08-25 | 1 | -6/+6 |
| * | Add BaseCache.update() method as a shortcut for exporting to a different cach... | Jordan Cook | 2021-08-25 | 1 | -0/+11 |
| * | Fix incorrect location of redirects.sqlite when using filesystem backend | Jordan Cook | 2021-08-23 | 2 | -1/+8 |
| * | Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and Fil... | Jordan Cook | 2021-08-21 | 2 | -0/+15 |
| * | Add support for SQLite in-memory databases | Jordan Cook | 2021-08-20 | 1 | -1/+16 |
| * | Make DynamoDB and MongoDB naming consistent | Jordan Cook | 2021-08-20 | 1 | -2/+2 |
| * | Add pytest-rerunfailures to rerun a flaky test | Jordan Cook | 2021-08-20 | 1 | -0/+2 |
| * | Add FileCache.paths() wrapper method, and return a list instead of generator | Jordan Cook | 2021-08-20 | 1 | -11/+11 |
| * | Use pytest tmpdir fixture + UUID instead of NamedTemporaryFile | Jordan Cook | 2021-08-19 | 1 | -29/+19 |
| * | Rename DbDict to SQLiteDict for consistency with other backends (with aliases... | Jordan Cook | 2021-08-19 | 3 | -17/+17 |
| * | s/whitelist/allowlist | Jordan Cook | 2021-08-19 | 1 | -1/+1 |
| * | Increase integration test timeout for DynamoDB, since it has a longer startup... | Jordan Cook | 2021-08-14 | 4 | -15/+15 |
| * | Add support for custom cache keys | Jordan Cook | 2021-08-14 | 2 | -2/+13 |
| * | Add unit tests for new header support | Jordan Cook | 2021-08-14 | 4 | -14/+116 |
| * | Add support for Last-Modified + If-Modified-Since headers | Jordan Cook | 2021-08-14 | 1 | -5/+0 |
| * | Convert CacheActions into an attrs class | Jordan Cook | 2021-08-14 | 1 | -7/+17 |
| * | Drop testing for requests <=0.21 | Jordan Cook | 2021-08-14 | 1 | -4/+0 |
| * | Remove deprecated 'core' module and BaseCache.remove_old_entries() | Jordan Cook | 2021-08-14 | 2 | -21/+5 |
| * | Drop support for python 3.6 | Jordan Cook | 2021-08-14 | 2 | -8/+0 |
| * | Add a basic PR template and code of conductv0.7.4 | Jordan Cook | 2021-08-14 | 1 | -0/+0 |
| * | Run integration tests in parallel, and combine MongoDB and GridFS tests into ... | Jordan Cook | 2021-08-12 | 2 | -41/+29 |
| * | Parallelize unit tests per module instead of per function | Jordan Cook | 2021-08-12 | 2 | -15/+15 |
| * | Add more test coverage for cache_control and cache_keys modules | Jordan Cook | 2021-08-12 | 3 | -4/+43 |
| * | Add test coverage for optional serialization dependencies | Jordan Cook | 2021-08-12 | 2 | -33/+52 |
| * | Add some more details to contributing guide, and add sample caches for 0.7 pa... | Jordan Cook | 2021-08-10 | 4 | -0/+4 |
| * | SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c... | Jordan Cook | 2021-08-10 | 1 | -0/+21 |
| * | Apply whitespace/EOF fixes and isort updates | Jordan Cook | 2021-08-08 | 17 | -16/+25 |
| * | Add example for using requests-cache with responses | Jordan Cook | 2021-08-07 | 1 | -0/+61 |
| * | Add better examples for using requests-cache with requests-mock | Jordan Cook | 2021-08-07 | 5 | -0/+132 |
| * | For filesystem backend, add an appropriate file extension to cache files | Jordan Cook | 2021-08-03 | 1 | -2/+11 |
| * | Use BaseCache.clear() BaseStorage.clear() prioer to integration tests | Jordan Cook | 2021-08-02 | 1 | -2/+1 |
| * | Add a `BaseCache.delete_urls()` method | Jordan Cook | 2021-08-02 | 1 | -3/+13 |
| * | Update `DbDict.bulk_delete()` to support deleting more items than SQLite's va... | Jordan Cook | 2021-08-02 | 1 | -4/+27 |
| * | Update `DbCache.clear()` to succeed even if the database is corrupted | Jordan Cook | 2021-08-02 | 1 | -3/+3 |
| * | Fix generate_test_db script, and add a basic script for testing cache write s... | Jordan Cook | 2021-07-31 | 1 | -27/+20 |
| * | Add CachedResponse.cache_key attribute and update in CachedSession.send() | Jordan Cook | 2021-07-20 | 3 | -8/+11 |
| * | Add support for Response.next when 302 responses are cached directly | Jordan Cook | 2021-07-16 | 1 | -2/+17 |
| * | Fix cache_control option to correctly toggle cache header usage (off by default) | Jordan Cook | 2021-07-09 | 2 | -8/+19 |