summaryrefslogtreecommitdiff
path: root/HISTORY.md
diff options
context:
space:
mode:
authorJordan Cook <JWCook@users.noreply.github.com>2022-06-10 17:36:29 -0500
committerGitHub <noreply@github.com>2022-06-10 17:36:29 -0500
commit319a68b6f5a38344fd70c3db346e78f9a78a0d8c (patch)
tree7200860b18f3c031cf26ba45407e4f90ed3de895 /HISTORY.md
parent46800f82180425d42cc894d0c0798c6bbd56bb39 (diff)
parentb812445f77a34d5802c142cb3880463f26ce8e9b (diff)
downloadrequests-cache-319a68b6f5a38344fd70c3db346e78f9a78a0d8c.tar.gz
Merge pull request #647 from JWCook/filesystem-decoded-body
Add option to decode human-readable response content for filesystem backend
Diffstat (limited to 'HISTORY.md')
-rw-r--r--HISTORY.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/HISTORY.md b/HISTORY.md
index a229e25..454eb87 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -39,11 +39,15 @@
* Add optional integration with MongoDB TTL to improve performance for removing expired responses
* Disabled by default. See 'Backends: MongoDB' docs for details.
* DynamoDB:
+ * Store responses in plain (human-readable) document format instead of fully serialized binary
* Create default table in on-demand mode instead of provisioned
* Add optional integration with DynamoDB TTL to improve performance for removing expired responses
* This is enabled by default, but may be disabled
* Filesystem:
* The default file format has been changed from pickle to JSON
+* Filesystem, MongoDB, and DynamoDB:
+ * Decode JSON and text response bodies so the saved response can be fully human-readable/editable.
+ May be disabled with `decode_content=False`.
* SQLite, Redis, MongoDB, and GridFS: Close open database connections when `CachedSession` is used as a contextmanager, or if `CachedSession.close()` is called
**Request matching & filtering:**