Releases: litert/redis.js
Releases · litert/redis.js
v3.0.5
v3.0.3
What's Changed
- build(deps-dev): bump braces from 3.0.2 to 3.0.3 by @dependabot in #10
- fix(command): return keys in HMGET command correctly by @fenying in #11
- fix(protocol): decode "*-1" correctly by @fenying in #12
- Feat blmove command by @yunbookf in #13
New Contributors
Full Changelog: v3.0.2...v3.0.3
v3.0.2
What's Changed
- fix(command): Incorrect preprocessing of arguments for SREMcommand.
- feat(command): Added basic supports for ZADD,ZREM,ZRANGEcommands.
- fix(docs): Fixed the links to the command documents.
- build(test): Initialized test flows.
New Contributors
Full Changelog: v3.0.0...v3.0.2
v3.0.0
v2.0.2
v2.0.1
Changes
- 
fix(connection): refactored connection management - Not use internal reconnection anymore. Instead, if a connection dead, redis.js will try
 reconnect only when a command requested. Except for subscriber clients.
- Disabled command timeout by default.
 
- Not use internal reconnection anymore. Instead, if a connection dead, redis.js will try
- 
fix(protocol): fixed empty list like *-1<CR><LF>.
- 
fix(command): fixed command LPOP/RPOPwith 2nd argumentcount.
- 
fix(command): fixed command MOVE.
- 
feat(command): added command COPYsupports.
- 
feat(command): added command SWAPDBsupports.
- 
feat(command): added command TIMEsupports with methodstime,secTime,msTime,usTime.
- 
feat(command): added ACL user supports to command AUTH.
Release v1.2.2
Changes
- config(deps): replaced exception mechanism with @litert/exception.
Release v1.2.0
Changes
- 
Added following command methods: - mExists
- eval
- evalSHA
- scriptLoad
- scriptFlush
- scriptKill
- scriptExists
- scriptDebug
 
Release v1.1.0
Changes
- Fixed the watch mode with a new WatchClientclass.
- Replaced TSLint with ESLint.
Release v1.0.3
Changes
- Fixed: The pipeline doesn't switch database following the parent client.