| Commit message (Expand) | Author | Age | Files | Lines |
| * | Redact ingored_parameters from CachedResponse.urlv0.7.5v0.7 | Jordan Cook | 2021-09-15 | 2 | -21/+33 |
| * | Fix incorrect debug message for skipping cache write | Jordan Cook | 2021-09-15 | 1 | -1/+2 |
| * | Add aliases for forwards-compatibility with v0.8+ | Jordan Cook | 2021-09-09 | 3 | -2/+6 |
| * | Fix incorrect location of redirects.sqlite when using filesystem backend | Jordan Cook | 2021-08-23 | 2 | -10/+18 |
| * | Update changelog, contributors, and bump version | Jordan Cook | 2021-08-12 | 1 | -1/+1 |
| * | Parallelize unit tests per module instead of per function | Jordan Cook | 2021-08-12 | 2 | -3/+4 |
| * | Ensure httpdate strings from headers get converted to UTC | Jordan Cook | 2021-08-12 | 1 | -5/+4 |
| * | Add test coverage for optional serialization dependencies | Jordan Cook | 2021-08-12 | 1 | -9/+8 |
| * | SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c... | Jordan Cook | 2021-08-10 | 1 | -6/+10 |
| * | Apply whitespace/EOF fixes and isort updates | Jordan Cook | 2021-08-08 | 2 | -3/+0 |
| * | Add better examples for using requests-cache with requests-mock | Jordan Cook | 2021-08-07 | 1 | -1/+1 |
| * | More doc formatting and class/module links | Jordan Cook | 2021-08-07 | 1 | -8/+8 |
| * | For filesystem backend, add an appropriate file extension to cache files | Jordan Cook | 2021-08-03 | 2 | -11/+31 |
| * | Pretty-print JSON by default | Jordan Cook | 2021-08-03 | 1 | -1/+8 |
| * | Add a `BaseCache.delete_urls()` method | Jordan Cook | 2021-08-02 | 1 | -0/+4 |
| * | Update `DbDict.bulk_delete()` to support deleting more items than SQLite's va... | Jordan Cook | 2021-08-02 | 1 | -8/+16 |
| * | Update `DbCache.clear()` to succeed even if the database is corrupted | Jordan Cook | 2021-08-02 | 1 | -13/+31 |
| * | Add separate Dependabot schedules for requests+urllib3 (daily) vs everything ... | Jordan Cook | 2021-07-21 | 1 | -1/+1 |
| * | Add doc section and sample response for YAML serializer | Jordan Cook | 2021-07-21 | 1 | -2/+2 |
| * | Add CachedResponse.cache_key attribute and update in CachedSession.send() | Jordan Cook | 2021-07-20 | 4 | -13/+17 |
| * | Fix unpickling CachedResponse on python 3.6 | Jordan Cook | 2021-07-16 | 1 | -0/+6 |
| * | Update changelog, bump project version, and bump black version | Jordan Cook | 2021-07-16 | 1 | -1/+1 |
| * | Add support for Response.next when 302 responses are cached directly | Jordan Cook | 2021-07-16 | 2 | -4/+25 |
| * | Make CachedResponse a non-slotted class to allow client code to set arbitrary... | Jordan Cook | 2021-07-16 | 1 | -12/+5 |
| * | Bump versionv0.7.1 | Jordan Cook | 2021-07-09 | 1 | -1/+1 |
| * | Fix cache_control option to correctly toggle cache header usage (off by default) | Jordan Cook | 2021-07-09 | 1 | -0/+9 |
| * | Add mypy to CI jobs, and add py.typed to indicate PEP-561 compliance | Jordan Cook | 2021-07-06 | 1 | -0/+1 |
| * | Improve type annotations and fix type checking errors | Jordan Cook | 2021-07-06 | 12 | -94/+144 |
| * | Update changelog | Jordan Cook | 2021-07-06 | 1 | -2/+4 |
| * | Some serialization fixes & updates: | Jordan Cook | 2021-07-03 | 9 | -152/+194 |
| * | Add option to exclude expired responses in keys(), values(), and response_cou... | Jordan Cook | 2021-07-03 | 2 | -23/+25 |
| * | Rephrase BaseCache.__str__() count as 'total rows' to be less ambiguous, sinc... | Jordan Cook | 2021-07-03 | 1 | -1/+4 |
| * | Add BaseCache.response_count() method to get an accurate count of valid respo... | Jordan Cook | 2021-07-03 | 1 | -0/+6 |
| * | Merge pull request #286 from parkerhancock/serialization_pipelines | Jordan Cook | 2021-06-22 | 11 | -213/+201 |
| |\ |
|
| | * | removed initialization serializer check | Parker Hancock | 2021-06-21 | 1 | -10/+0 |
| | * | addressing comments from JWCook | Parker Hancock | 2021-06-21 | 3 | -6/+3 |
| | * | moving ForwardRef inside the ImportError try/except clause to address py3.6 i... | Parker Hancock | 2021-06-21 | 1 | -2/+3 |
| | * | Add pyyaml as an optional dependency, and fix import | Jordan Cook | 2021-06-17 | 1 | -2/+2 |
| | * | Fix inifinite loop of doom | Jordan Cook | 2021-06-17 | 1 | -1/+3 |
| | * | cleaning up preconf and builtin serializers | Parker Hancock | 2021-06-15 | 2 | -45/+63 |
| | * | extirpated 'is_binary' from pipelines | Parker Hancock | 2021-06-14 | 7 | -24/+24 |
| | * | changes for multi-version compatibility | Parker Hancock | 2021-06-14 | 1 | -59/+61 |
| | * | initial serialization pipeline refactor | Parker Hancock | 2021-06-14 | 7 | -171/+149 |
| * | | Add ImportError to list of possible deserialization errors to catch | Jordan Cook | 2021-06-20 | 1 | -1/+1 |
| |/ |
|
| * | Rename BaseSerializer methods to dumps/loads | Jordan Cook | 2021-06-11 | 4 | -23/+9 |
| * | Add tests and docs | Jordan Cook | 2021-06-11 | 1 | -1/+0 |
| * | Integrate serializers with backends | Jordan Cook | 2021-06-11 | 10 | -41/+60 |
| * | Allow selecting a serializer by name, class, or instance (with same behavior ... | Jordan Cook | 2021-06-11 | 6 | -62/+86 |
| * | Add annotation for CachedResponse.history and add support for ForwardRef in B... | Jordan Cook | 2021-06-11 | 2 | -1/+8 |
| * | Add a BSON serializer | Jordan Cook | 2021-06-11 | 2 | -1/+30 |