summaryrefslogtreecommitdiff
path: root/HISTORY.md
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook.git@proton.me>2022-10-20 13:17:57 -0500
committerJordan Cook <jordan.cook.git@proton.me>2022-10-20 13:23:45 -0500
commit10fba0bcb772a2e46e758e4173d1ab99ec287e93 (patch)
treef16d1135f034ed8af8ac2aa0441efd7ba1072755 /HISTORY.md
parentacdbe633a80ae9a8d9deb20c1255124f7e159b33 (diff)
downloadrequests-cache-10fba0bcb772a2e46e758e4173d1ab99ec287e93.tar.gz
Add support for header values as bytes
Diffstat (limited to 'HISTORY.md')
-rw-r--r--HISTORY.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/HISTORY.md b/HISTORY.md
index d4a03bb..790cdf8 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -88,16 +88,19 @@
* `OriginalResponse.cache_key` and `expires` will be populated for any new response that was written to the cache
* Add request wrapper methods with return type hints for all HTTP methods (`CachedSession.get()`, `head()`, etc.)
-**Bugfixes:**
+**Compatibility fixes:**
+* Add support for header values as bytes for compatibility with OAuth1 features of `requests-oauthlib`
+* 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
+
+**Other Bugfixes:**
* 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`
* 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`
@@ -138,6 +141,7 @@ 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`
+* Add support for header values as bytes for compatibility with OAuth1 features of `requests-oauthlib`
* Update to cattrs 22.2
## 0.9.6 (2022-08-24)