Skip to content

Releases: jaredwray/keyv

2022-09-02

02 Sep 17:06
Compare
Choose a tag to compare

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 🎉 :

  • brotli: Brotli compression adapter
  • Gzip: Gzip compression adapter

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

21 Aug 18:10
Compare
Choose a tag to compare

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

Full Changelog: 2022-08-08...2022-08-21

2022-08-08

08 Aug 16:08
cdebd49
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: 2022-07-17...2022-08-08

2022-07-17

17 Jul 23:35
Compare
Choose a tag to compare

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

Full Changelog: 2022-07-03...2022-07-17

2022-07-03

03 Jul 18:11
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2022-06-20...2022-07-03

2022-06-20

20 Jun 17:59
a471119
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2022-05-23...2022-06-20

2022-05-23

23 May 17:55
2930eeb
Compare
Choose a tag to compare

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

Full Changelog: 2022-05-09...2022-05-23

2022-05-09

10 May 02:13
45490d5
Compare
Choose a tag to compare

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

20 Apr 23:51
Compare
Choose a tag to compare

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

Full Changelog: 2022-04-02...2022-04-20

2022-04-02

02 Apr 21:37
25ae54f
Compare
Choose a tag to compare

What's Changed

  • etcd upgrading module xo to version 0.48.0 by @jaredwray in #251
  • implement has() by @alphmth in #244
  • delete all implementation by @alphmth in #247
  • upgrading xo to version 0.48.0 by @jaredwray in #253
  • upgrading test-suite module xo to version 0.48.0 by @jaredwray in #255
  • get many by @alphmth in #254
  • support typescript by @alphmth in #257
  • support compress by @alphmth in #259
  • Maintenance release for memcache by @jaredwray in #262
  • maintenance updates for redis by @jaredwray in #263
  • 2022-04 maintenance updates for mongo by @jaredwray in #264
  • upgrading test-suite module ava to version 4.1.0 by @jaredwray in #265
  • 2022-04 maintenance updates for keyv by @jaredwray in #266

Full Changelog: 2022-02-19...2022-04-02