Files
fastapi-cache/CHANGELOG.md

64 lines
797 B
Markdown
Raw Normal View History

2020-10-08 15:10:34 +08:00
# ChangeLog
## 0.2
### 0.2.1
- Support cache jinja2 template response.
### 0.2.0
- Make `request` and `response` optional.
2022-10-25 09:26:24 +07:00
- Add typing info to the `cache` decorator.
2020-10-08 15:10:34 +08:00
## 0.1
2022-08-09 13:45:53 -03:00
### 0.1.10
- Add `Cache-Control:no-cache` support.
2022-06-17 11:01:47 +08:00
### 0.1.9
- Replace `aioredis` with `redis-py`.
2021-11-12 09:37:02 +08:00
### 0.1.8
- Support `dynamodb` backend.
2021-10-09 16:51:05 +08:00
### 0.1.7
- Fix default json coder for datetime.
2021-10-28 15:52:21 +08:00
- Add `enable` param to `init`.
2021-10-09 16:51:05 +08:00
### 0.1.6
- Fix redis cache.
- Encode key builder.
2021-07-23 09:38:47 +08:00
### 0.1.5
2021-07-22 10:54:10 -05:00
- Fix setting expire for redis (#24)
- Update expire key
2021-07-23 09:38:47 +08:00
### 0.1.4
- Fix default expire for memcached. (#13)
- Update default key builder. (#12)
2021-01-06 10:34:30 +08:00
### 0.1.3
- Fix cache key builder.
### 0.1.2
- Add default config when init.
- Update JsonEncoder.
2020-10-08 15:10:34 +08:00
### 0.1.1
- Add in-memory support.
### 0.1.0
- First version release.