Skip to content

Commit

Permalink
Merge pull request #614 from JWCook/parameter-forwarding
Browse files Browse the repository at this point in the history
Fix forwarding connection parameters for redis-py 4.2 and pymongo 4.1 on python <=3.8
  • Loading branch information
JWCook committed Apr 22, 2022
2 parents e85e3c0 + 259f803 commit 39fb312
Show file tree
Hide file tree
Showing 10 changed files with 404 additions and 386 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
@@ -1,14 +1,14 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.2.0
hooks:
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.1.0
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
Expand All @@ -26,7 +26,7 @@ repos:
- id: flake8
additional_dependencies: [flake8-comprehensions]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
rev: v0.942
hooks:
- id: mypy
files: requests_cache
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.md
@@ -1,5 +1,9 @@
# History

## 0.9.4 (2022-04-22)
* 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

## 0.9.3 (2022-02-22)
* Fix handling BSON serializer differences between pymongo's `bson` and standalone `bson` codec.
* Handle `CorruptGridFile` error in GridFS backend
Expand Down

0 comments on commit 39fb312

Please sign in to comment.