Releases: jaredwray/keyv
2022-09-19
Maintenance Release! 🧰
This release is more around maintenance after the Compression Changes. Here are some of the highlights for each package:
- Redis - Upgraded the redis driver
ioredis
to4.8.2
- Test-Suite - Upgraded
ava
,bignumber.js
, andxo
to their latest - Sqlite - Upgraded the sqlite driver
sqlite3
to5.1.1
- Postgres - Upgraded the postgres driver
pg
to8.8.0
In addition we made the contribution templates used for issues and pull requests more simplistic. 🎉
Full Changelog
- memcache - upgrading ava to 4.3.3 by @jaredwray in #463
- memcache - upgrading typescript to 4.8.2 by @jaredwray in #464
- redis - upgrading ioredis to 5.2.3 by @jaredwray in #465
- redis - upgrading xo to 0.52.3 and fixing import type on index.d.ts by @jaredwray in #466
- redis - upgrading ava to 4.3.3 by @jaredwray in #467
- redis - upgrading typescript to 4.8.2 by @jaredwray in #468
- test-suite - upgrading bignumber.js to 9.1.0 by @jaredwray in #469
- test-suite - upgrading ava to 4.3.3 by @jaredwray in #470
- test-suite - upgrading xo to 0.52.3 by @jaredwray in #471
- offline - upgrading xo to 0.52.3 and readme logo by @jaredwray in #472
- offline - upgrading ava to 4.3.3 by @jaredwray in #473
- offline - upgrading tsd, typescript, and ts-node to latest by @jaredwray in #474
- updating readme with direct link to keyv package by @jaredwray in #477
- updating contributing documentation and templates by @jaredwray in #478
- sqlite - upgrading sqlite3 to 5.1.1 by @jaredwray in #480
- sqlite - upgrading ava to 4.3.3 by @jaredwray in #481
- sqlite - upgrading typescript to 4.8.3 and tsd to 0.24.1 by @jaredwray in #482
- sqlite - upgrading xo to 0.52.3 includes index.d.ts type changes by @jaredwray in #483
- postgres - upgrading xo to 0.52.3 by @jaredwray in #484
- postgres - upgrading ava to 4.3.3 by @jaredwray in #485
- postgres - upgrading typescript to and tsd to 0.24.1 by @jaredwray in #486
- postgres - upgrading pg to 8.8.0 by @jaredwray in #487
- mysql - upgrading ava to 4.3.3 by @jaredwray in #488
- mysql - upgrading typescript to 4.8.3 and tsd to 0.24.1 by @jaredwray in #489
- mysql - upgrading xo to 0.52.3 and index.d.ts with types on import by @jaredwray in #490
- etcd - upgrading ava to 4.3.3 by @jaredwray in #491
- etcd - upgrading xo to 0.52.3 and index.d.ts with types by @jaredwray in #492
- etcd - upgrading typescript to 4.8.3 and tsd to 0.24.1 by @jaredwray in #493
- etcd - removing pify as no longer needed by @jaredwray in #494
- tiered - upgrading ava to 4.3.3 by @jaredwray in #495
- tiered - upgrading typescript to 4.8.3 and tsd to 0.24.1 by @jaredwray in #496
- tiered - upgrading xo to 0.52.3 and index.d.ts types by @jaredwray in #497
Full Changelog: 2022-09-02...2022-09-19
2022-09-02
Compression Adapters for Keyv >=4.5.0
(Breaking Change ⚠️ )
In the past Keyv
had built in Brotli compression support by using the option {compress: true}
. With this change you now need to provide the compression adapter:
const KeyvBrotli = require('@keyv/compress-brotli');
const Keyv = require('keyv');
const keyv = new Keyv({compression: new KeyvBrotli()});
In addition we now support Brotli
and Gzip
via the following adapters 🎉 :
What's Changed
- added-brotli by @alphmth in #433
- adding in readme for @keyv/compress-brotli by @jaredwray in #453
- moving to serialize the test suites by @jaredwray in #454
- updating tiered readme to have correct urls by @jaredwray in #456
- Gzip compression by @alphmth in #457
- compress-brotli - adding in webpack dependency by @jaredwray in #459
- compress-gzip - adding in readme by @jaredwray in #460
- Readme updates to support compression packages by @jaredwray in #461
- support pako by @alphmth in #462
Full Changelog: 2022-08-21...2022-09-02
2022-08-21
Keyv v4.4.1
- getMany() now will return an array of undefined
or null
based on the storage adapters
A major change that has been released is to fix #431 with returning []
instead of an array of values even if it is undefined
. This has been implemented across all supported storage adapters (https://github.com/jaredwray/keyv#storage-adapters).
In addition there were minor updates to some packages which you can read in What's Changed
👇
Redis v2.5.0
- getMany() updates
- Supporting the new getMany() as discussed in Keyv release
Sqlite v3.6.0
- getMany() updates and new sqlite3 version! 👍
- Supporting the new getMany() as discussed in Keyv release
- Sqlite3 is now on 5.0.11 with some fixes in it!
- minor updates to some packages which you can read in
What's Changed
Etcd v1.1.0
- getMany() updates and exponential backoff on retries
- Supporting the new getMany() as discussed in Keyv release
- Now with
cockatiel
we are doing exponential backoff on retries when there is a failure 🛑 - minor updates to some packages which you can read in
What's Changed
Postges v1.3.0
, Mysql v1.4.0
, Tiered v1.0.1
- getMany() updates
Supporting the new getMany() as discussed in Keyv release 🎉 with some maintenance updates you can read in "What's Changed" 👇
What's Changed
- fixed undefined array issue by @alphmth in #432
- keyv - upgrading ava to 4.3.1 by @jaredwray in #434
- keyv - upgrading eslint to 8.22.0 by @jaredwray in #435
- keyv - upgrading xo to 0.51.0 by @jaredwray in #436
- sqlite - upgrading sqlite3 to 5.0.11 by @jaredwray in #437
- sqlite - upgrading ts-node to 10.9.1 by @jaredwray in #438
- sqlite - upgrading tsd to 0.22.0 by @jaredwray in #439
- sqlite - upgrading xo to 0.51.0 by @jaredwray in #440
- postgres - upgrading ts-node to 10.9.1 by @jaredwray in #441
- postgres - upgrading xo to 0.51.0 by @jaredwray in #442
- mysql - upgrading ts-node to 10.9.1 by @jaredwray in #443
- mysql - upgrading xo to 0.51.0 by @jaredwray in #444
- etcd - upgrading xo to 0.51.0 by @jaredwray in #445
- etcd - removing webpack as no longer needed by @jaredwray in #446
- etcd - upgrading cockatiel to 3.0.0 with exponential backoff on retry by @jaredwray in #447
- tiered - upgrading ts-node to 10.9.1 by @jaredwray in #449
- tiered - updating xo to 0.51.0 by @jaredwray in #450
Full Changelog: 2022-08-08...2022-08-21
2022-08-08
New releases including @keyv/redis to v2.4.0
and @keyv/test-suite to v1.7.5
🎉 . A ton of new updates also have been released and thanks to @dylanseago, @airtoxin, and @alphmth for all the help ❤️
@keyv/redis v2.4.0
Biggest update here is the move to ioredis version 5.2.2 which has some bug fixes and updates.
@keyv/test-suite v1.7.5
Ava
and Xo
have been upgraded to their latest and now shipped in test-suite. 🙌
What's Changed
- Fix Keyv.Options type incorrectly defines store option type by @dylanseago in #405
- Delete console.log by @airtoxin in #418
- Issue 403 by @alphmth in #417
- memcache - upgrade ava to 4.3.1 by @jaredwray in #420
- memcache - upgrading ts-node to 10.9.1 by @jaredwray in #422
- redis - upgrading ioredis to 5.2.2 by @jaredwray in #423
- redis - upgrading ava to 4.3.1 by @jaredwray in #424
- redis - upgrading ts-node to 10.9.1 by @jaredwray in #425
- redis - upgrading xo to 0.51.0 by @jaredwray in #426
- test-suite - upgrading ava to 4.3.1 by @jaredwray in #427
- test-suite - upgrading xo to 0.51.0 by @jaredwray in #428
- offline - upgrading ava to 4.3.1 by @jaredwray in #429
- offline - upgrading xo to 0.51.0 by @jaredwray in #430
New Contributors
- @dylanseago made their first contribution in #405
Full Changelog: 2022-07-17...2022-08-08
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
2022-07-03
What's Changed
- revert promise return type by @alphmth in #383
- keyv - upgrading tsd to version 0.22.0 by @jaredwray in #387
- memcache - upgrading ava to version 4.3.0 by @jaredwray in #388
- memcache - upgrading typescript and tsd to latest by @jaredwray in #389
- test-suite - upgrading xo to version 0.50.0 by @jaredwray in #390
- test-suite - upgrading ava to 4.3.0 by @jaredwray in #391
- offline - upgrading xo to 0.50.0 by @jaredwray in #392
- offline - upgrading ava to 4.3.0 by @jaredwray in #393
- offline - upgrading typescript and tsd to latest by @jaredwray in #394
- redis - upgrading ioredis to 5.1.0 by @jaredwray in #395
- redis - upgrading xo to 0.50.0 by @jaredwray in #396
- redis - upgrading ava to 4.3.0 by @jaredwray in #397
- redis - upgrading typescript and tsd to latest by @jaredwray in #398
- etcd - adding unmet peer webpack by @jaredwray in #399
Full Changelog: 2022-06-20...2022-07-03
2022-06-20
What's Changed
- keyv memcache update 337 by @jaredwray in #345
- adding download sheild to readme by @jaredwray in #346
- Fixing yarn workspaces error by @jaredwray in #348
- Added async deserialize/serialize function types by @cesarfd in #349
- Moving to support Nodejs version 14, 16, and 18 by @jaredwray in #350
- updating codecov reporting to correct branch by @jaredwray in #351
- Documentation: How to use our Mono Repo #324 by @becca-miller in #352
- updating readme with iterator example by @jaredwray in #355
- updating licensing and copyright by @jaredwray in #358
- Add multi-key
get
typings overload by @trevor-scheer in #359 - Add missing
getMany
optional method on Store interface by @trevor-scheer in #362 - Fix memcache README code fencing by @trevor-scheer in #363
- adding in xo support for memcache by @jaredwray in #364
- Add instructions for testing locally by @trevor-scheer in #361
- Revert "Add missing
getMany
optional method on Store interface" by @jaredwray in #365 - upgrading ava to version 4.3.0 by @jaredwray in #366
- upgrading tsd and typescript to latest by @jaredwray in #370
- upgrading sqlite package xo to version 0.50.0 by @jaredwray in #371
- upgrading postgres package ava to version 4.3.0 by @jaredwray in #373
- upgrading postgres package xo to version 0.50.0 by @jaredwray in #374
- upgrading postgres packages typescript to latest by @jaredwray in #375
- Make iterator’s
namespace
parameter optional by @dtinth in #368 - upgrading etcd packages xo and ava to latest by @jaredwray in #376
- upgrading mysql packages ava and xo to latest by @jaredwray in #377
- upgrading mysql to latest typescript version by @jaredwray in #378
- upgrading tiered packages ava and xo to latest by @jaredwray in #379
- upgrading tiered packages typescript and tsd to latest by @jaredwray in #380
- upgrading keyv packages ava and xo to latest by @jaredwray in #381
- upgrading keyv packages typescript and tsd to latest by @jaredwray in #382
New Contributors
- @cesarfd made their first contribution in #349
- @becca-miller made their first contribution in #352
- @trevor-scheer made their first contribution in #359
- @dtinth made their first contribution in #368
Full Changelog: 2022-05-23...2022-06-20
2022-05-23
What's Changed
- Remove parameter initializer from type declarations by @theaussiepom in #327
- Add disconnect to type declarations by @gafderks in #328
- optional to support backward compatibilty by @alphmth in #330
- fixed instance bug by @alphmth in #329
- Remove references to lerna/bootstrap by @mcfedr in #332
- Fix return of has in tiered by @mcfedr in #334
- Wait for set promise in tiered by @mcfedr in #333
- Add support for rediss protocol by @airtoxin in #331
- added readme by @alphmth in #335
- fix memory leak by @alphmth in #338
- updating sqlite modules to latest by @jaredwray in #339
- upgrading postgres modules to latest by @jaredwray in #340
- upgrading mysql modules to latest version by @jaredwray in #341
- updating etcd xo module to latest version by @jaredwray in #342
- upgrading tiered modules to latest by @jaredwray in #343
New Contributors
- @theaussiepom made their first contribution in #327
- @gafderks made their first contribution in #328
- @mcfedr made their first contribution in #332
- @airtoxin made their first contribution in #331
Full Changelog: 2022-05-09...2022-05-23
2022-05-09
What's Changed
- doc: add iterator usage document by @kennylbj in #295
- Support tiered by @alphmth in #291
- moving to yarn workspaces and removing lerna by @jaredwray in #302
- covered lines in test by @alphmth in #305
- Issue 300 by @alphmth in #306
- close connection for redis by @alphmth in #307
- #311 🐛 Fix loadStore to support mongodb+srv:// URIs by @Otoris in #312
- added pify as dependency by @alphmth in #313
- memcache maintenance upgrade with ava and typescript by @jaredwray in #314
- redis upgrades of ava, ioredis, and typescript by @jaredwray in #315
- mongo updates with ava, typescript, and mongodb by @jaredwray in #316
- etcd - upgrading typescript to latest by @jaredwray in #317
- keyv upgrading compress-brotli, ava, and typescript to latest by @jaredwray in #318
- offline - upgrading tsd, typescript, and ava by @jaredwray in #319
- test-suite upgrading ava module to latest by @jaredwray in #320
New Contributors
Full Changelog: 2022-04-20...2022-05-09
2022-04-20
What's Changed
- fix typescript issues (old node + previous @types/keyv compat issues) by @d-fischer in #267
- added test for lines by @alphmth in #273
- Add valid constructor calls and arguments to types by @iamEAP in #272
- initial commit for supporting offline by @alphmth in #261
- covered all lines by @alphmth in #275
- fixed type issue in redis by @alphmth in #279
- Bug 277 by @alphmth in #280
- Bug 278 by @alphmth in #283
- Bug 278 by @alphmth in #284
- fixed memchache uncovered lines by @alphmth in #285
- upgrading typescript tsd and ava to latest for postgres by @jaredwray in #287
- upgrading typescript tsd and ava for mysql by @jaredwray in #288
- upgrading typescript, tsd, and ava for etcd by @jaredwray in #289
- change better sqlite to sqlite3 by @alphmth in #290
- fixing test concurrency with lerna by @jaredwray in #292
- fixing report coverage on memcache by @jaredwray in #293
New Contributors
- @d-fischer made their first contribution in #267
- @iamEAP made their first contribution in #272
Full Changelog: 2022-04-02...2022-04-20