summaryrefslogtreecommitdiff
path: root/HISTORY.md
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook.git@proton.me>2022-10-20 13:03:45 -0500
committerJordan Cook <jordan.cook.git@proton.me>2022-10-20 13:09:55 -0500
commit54d85c12bf4aa98e2798f18b7c4719b1ba493770 (patch)
treed9dd9003a4297c268cff7096e4aaf7a81cba5254 /HISTORY.md
parent2cfccd966876349ffbfd5a44a6db684966468b95 (diff)
downloadrequests-cache-54d85c12bf4aa98e2798f18b7c4719b1ba493770.tar.gz
Explicitly disable pickling CachedSession objects
Diffstat (limited to 'HISTORY.md')
-rw-r--r--HISTORY.md22
1 files changed, 19 insertions, 3 deletions
diff --git a/HISTORY.md b/HISTORY.md
index b3ba499..d4a03bb 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -92,8 +92,12 @@
* Fix usage of memory backend with `install_cache()`
* Fix issue on Windows with occasional missing `CachedResponse.created_at` timestamp
* Add `CachedRequest.path_url` property for compatibility with `RequestEncodingMixin`
-* Add compatibility with cattrs 22.1+
* Fix potential `AttributeError` due to undetected imports when requests-cache is bundled in a PyInstaller package
+* Fix `AttributeError` when attempting to unpickle a `CachedSession` object, and instead disable
+ pickling by raising a `NotImplementedError`
+* Add compatibility with cattrs 22.1+
+* Fix forwarding connection parameters passed to `RedisCache` for redis-py 4.2 and python <=3.8
+* Fix forwarding connection parameters passed to `MongoCache` for pymongo 4.1 and python <=3.8
**Dependencies:**
* Replace `appdirs` with `platformdirs`
@@ -129,15 +133,27 @@ If you encounter a problem not listed here after updating to 1.0, please create
* Internal utility module changes:
* The `cache_control` module (added in `0.7`) has been split up into multiple modules in a new `policy` subpackage
-### 0.9.6 (2022-08-24)
+## 0.9.7 (Unreleased)
+Backport fixes from 1.0:
+* Fix potential `AttributeError` due to undetected imports when requests-cache is bundled in a PyInstaller package
+* Fix `AttributeError` when attempting to unpickle a `CachedSession` object, and instead disable
+ pickling by raising a `NotImplementedError`
+* Update to cattrs 22.2
+
+## 0.9.6 (2022-08-24)
+Backport fixes from 1.0:
* Remove potentially problematic row count from `BaseCache.__str__()`
* Remove upper version constraints for all non-dev dependencies
* Make dependency specification consistent between PyPI and Conda-Forge packages
### 0.9.5 (2022-06-29)
-* Backport bugfixes from 1.0
+Backport fixes from 1.0:
+* Fix usage of memory backend with `install_cache()`
+* Add `CachedRequest.path_url` property
+* Add compatibility with cattrs 22.1
### 0.9.4 (2022-04-22)
+Backport fixes from 1.0:
* Fix forwarding connection parameters passed to `RedisCache` for redis-py 4.2 and python <=3.8
* Fix forwarding connection parameters passed to `MongoCache` for pymongo 4.1 and python <=3.8