Skip to content

Releases: adonisjs/redis

Pre-release for v6

15 Jul 22:45
Compare
Choose a tag to compare
Pre-release for v6 Pre-release
Pre-release

Changes

  • Package is now ESM only
  • Some exported types/values has been moved and now use Node subpath exports
  • Removal of Listeners classes via strings, but since it was an undocumented feature, it shouldn't have a big impact
  • redisConfig is nos called defineConfig

Commits

v7.3.2...v8.0.0-0

Add call method

02 Nov 09:00
Compare
Choose a tag to compare
  • feat: add pass-throughs for ioredis#call method (#53) dbd27c5
  • chore: update dependencies (#50) 64a988f

v7.3.1...v7.3.2

Full Changelog: v7.3.1...v7.3.2

Add getdel method and fix config file

13 Aug 18:01
Compare
Choose a tag to compare

PR's

Full Changelog: v7.3.0...v7.3.1

add redisConfig method to infer types from config

18 May 10:22
Compare
Choose a tag to compare
  • feat: add redisConfig method to infer types from config abc1ce3
  • chore: update dependencies b29be63

Full Changelog: v7.2.0...v7.3.0

Upgrade to IoRedis 5.x

08 Apr 06:34
Compare
Choose a tag to compare
  • fix: types to accomodate ioredis breaking changes 844e2e6
  • chore: update dependencies 71b36ae
  • refactor: migrate to new japa (#43) d1d4da9

v7.1.1...v7.2.0

Add "bitfield" redis method

27 Feb 05:24
Compare
Choose a tag to compare
  • chore: do not run tests when publishing to npm 37079ae
  • chore: fix path to test file 14e9776
  • refactor: reorganize meta config f830eda
  • chore: update dependencies 86456d0
  • feat: add bitfield to redis command list (#42) cdb2874

New Contributors

Full Changelog: v7.1.0...v7.1.1

Add support for defining and running lua scripts as command

10 Dec 02:37
Compare
Choose a tag to compare

Define command

import Redis from '@ioc:Adonis/Addons/Redis'

Redis.defineCommand('defineValue', {
  numberOfKeys: 1,
  lua: `redis.call('set', KEYS[1], ARGV[1])`,
})

await Redis.runCommand('defineValue', 'greeting', 'hello world')
  • feat: add support for defining custom lua commands 2ddc054
  • chore: update dependencies a720efd

Full Changelog: v7.0.10...v7.1.0

Update dependencies

09 Dec 02:37
Compare
Choose a tag to compare
  • chore: update dependencies 585260d

Full Changelog: v7.0.9...v7.0.10

Update dependencies

29 Aug 03:58
Compare
Choose a tag to compare
  • chore: update dependencies c3d9b9b

v7.0.8...v7.0.9

Update dependencies

20 Jul 15:55
Compare
Choose a tag to compare
  • chore: update dependencies 2578beb

v7.0.7...v7.0.8