summaryrefslogtreecommitdiff
path: root/HISTORY.md
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-28 21:35:11 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-28 23:50:38 -0500
commit7ab67c5e51e8841149a0e9b7b855946d2514a0a7 (patch)
tree84b2fe99e65ab6ba2b145bbdd065749597749819 /HISTORY.md
parent50250771d87e0614d8fe6e14a75ba17539ad7f7d (diff)
downloadrequests-cache-7ab67c5e51e8841149a0e9b7b855946d2514a0a7.tar.gz
Minor edits for Readme and Related Projects
Diffstat (limited to 'HISTORY.md')
-rw-r--r--HISTORY.md17
1 files changed, 7 insertions, 10 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 42cb3b6..966d73d 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,6 +1,6 @@
# History
-## 0.8.0 (TBD)
+## 0.8.0 (2021-TBD)
[See all issues and PRs for 0.8](https://github.com/reclosedev/requests-cache/milestone/3?closed=1)
**Conditional requests:**
@@ -33,19 +33,16 @@
* Note: python 3.6 support in 0.7.x will continue to be maintained until it reaches EOL (2021-12-23)
* Any bugfixes for 0.8 that also apply to 0.7 will be backported
* Add new `appdirs` dependency (for user cache directories)
-* Update `cattrs` from optional to a required dependency
-* Update `itsdangerous` required to an optional dependency
+* Update `cattrs` from optional to required dependency
+* Update `itsdangerous` from required to optional (but recommended) dependency
* Require requests 2.22+ and urllib3 1.25.5+
**Deprecations & removals:**
* Remove deprecated `core` module
-* Remove deprecated `BaseCache.remove_old_entries()` method
-* For consistency with other backends, rename:
- * `DbCache` -> `SQLiteCache`
- * `DbDict` -> `SQLiteDict`
- * `DbPickleDict` -> `SQLitePickleDict`
- * `DynamoDbCache` -> `DynamoCache`
- * `DynamoDbDict` -> `DynamoDict`
+* Remove deprecated `BaseCache.remove_old_entries()` method (use `remove_expired_responses()` instead)
+* For consistent naming across backends, rename:
+ * `Db*` -> `SQLiteCache`, `SQLiteDict`, `SQLitePickleDict`
+ * `DynamoDb*` -> `DynamoCache`, `DynamoDict`
* Add aliases for previous names for backwards-compatibility
-----