Releases: litert/redis.js
Releases · litert/redis.js
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
SREM
command. - feat(command): Added basic supports for
ZADD
,ZREM
,ZRANGE
commands. - 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
/RPOP
with 2nd argumentcount
. -
fix(command): fixed command
MOVE
. -
feat(command): added command
COPY
supports. -
feat(command): added command
SWAPDB
supports. -
feat(command): added command
TIME
supports 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
WatchClient
class. - Replaced TSLint with ESLint.
Release v1.0.3
Changes
- Fixed: The pipeline doesn't switch database following the parent client.
Release v1.0.2
Changes
- Migrate deps from
@litert/events
to@litert/observable
.