2022-07-17
This release has been more maintenance and bug fixes but I wanted to call out @trevor-scheer, @alphmth, and many others who helped test and post any issues. It really helps 👏
Sqlite v3.5.3 Released
This was a maintenance release but did update sqlite3
to the latest version which should help with some minor bug issues that were seen on that module.
Redis v2.3.8 Released
We have now fixed the Redis.Cluster issue and added in supporting documentation to go along with it. 🎉
const KeyvRedis = require('@keyv/redis');
const Redis = require('ioredis');
const Keyv = require('keyv');
const redis = new Redis.Cluster('redis://user:pass@localhost:6379');
const keyvRedis = new KeyvRedis(redis);
const keyv = new Keyv({ store: keyvRedis });
https://github.com/jaredwray/keyv/blob/main/packages/redis/README.md
Keyv v4.3.3 Released
We have updated the getMany
type definition based on this pull request from @trevor-scheer: #384
What's Changed
- Reintroduce
getMany
optional method by @trevor-scheer in #384 - adding unmet peer dependency for eslint by @jaredwray in #402
- fixed redis issue by @alphmth in #406
- redis - removing console.log messages from previous bug fix by @jaredwray in #408
- sqlite - upgrading tsd to 0.22.0 by @jaredwray in #409
- sqlite - upgrading sqlite3 to 5.0.9 by @jaredwray in #410
- sqlite - upgrading ava to 4.3.1 by @jaredwray in #411
- postgres - upgrading ava to 4.3.1 and tsd to 0.22.0 by @jaredwray in #412
- mysql - upgrading ava to 4.3.1 and tsd to 0.22.0 by @jaredwray in #413
- etcd - upgrading tsd, typescript, and ava to latest by @jaredwray in #414
- tiered - upgrading tsd to 0.22.0 and ava to 4.3.1 by @jaredwray in #416
Full Changelog: 2022-07-03...2022-07-17