blurts-server
blurts-server copied to clipboard
Bump redis from 3.1.1 to 4.3.1
Bumps redis from 3.1.1 to 4.3.1.
Release notes
Sourced from redis's releases.
[email protected]
Enhancements
- Upgrade
@redis/json[email protected]
Enhancements
- Upgrade
@redis/client- Upgrade
@redis/search[email protected]
Enhancements
- Upgrade
@redis/client[email protected]
Enhancements
- Upgrade
@redis/client[email protected]
Enhancements
- Upgrade
@redis/bloom- Upgrade
@redis/client- Upgrade
@redis/graph- Upgrade
@redis/json- Upgrade
@redis/search- Upgrade
@redis/time-series[email protected]
- Upgrade
@node-redis/client- Upgrade
@node-redis/search[email protected]
- Upgrade
@node-redis/client- Upgrade
@node-redis/search- Upgrade
@node-redis/time-series[email protected]
- First release with
@node-redis/graph- Upgrade to
@node-redis/[email protected][email protected]
No release notes provided.
[email protected]
No release notes provided.
[email protected]
This version is a major change and refactor, adding modern JavaScript capabilities and multiple breaking changes. See the migration guide for tips on how to upgrade.
Breaking Changes
... (truncated)
Changelog
Sourced from redis's changelog.
Changelog
v4.0.2 - 13 Jan, 2022
Fixes
- Fix v4 commands in legacy mode (#1820)
- Fix
EXISTScommand reply (#1819)- Fix handler for "redis:invalidate" messages (#1798)
- Fix "SEPARATOR" typo in RediSearch (#1823)
Enhancements
- First release of
@node-redis/bloom- Add support for
Buffers- Enhance
ASKandMOVEDerrors handlerv4.0.1 - 13 Dec, 2021
Fixes
- Fix
NOAUTHerror when using authentication & database (#1681)- Allow to
.quit()in PubSub mode (#1766)- Add an option to configurate
nameon a client (#1758)- Lowercase commands (
client.hset) inlegacyMode- Fix PubSub resubscribe (#1764)
- Fix
RedisSocketOptionstype (#1741)Enhancements
- Add support for
numbers andBuffers inHSET(#1738 #1739)- Export
RedisClientType,RedisClusterTypeand some more types (#1673)- First release of
@node-redis/time-seriesv4.0.0 - 24 Nov, 2021
This version is a major change and refactor, adding modern JavaScript capabilities and multiple breaking changes. See the migration guide for tips on how to upgrade.
Breaking Changes
- All functions return Promises by default
- Dropped support for Node.js 10.x, the minimum supported Node.js version is now 12.x
createClienttakes new and different arguments- The
prefix,rename_commandsconfiguration options tocreateClienthave been removed- The
enable_offline_queueconfiguration option is removed, executing commands on a closed client (without calling.connect()or after calling.disconnect()) will reject immediately- Login credentials are no longer saved when using
.auth()directlyFeatures
- Added support for Promises
... (truncated)
Commits
def9f16Release [email protected]0a37e47upgrade json7a57cc0Release [email protected]5dd7d31close #2192 close #2193 close #2194 close #2195 close #2196 close #2197 close...b10a656Release [email protected]dea8002upgrade sub packages3c3914aRelease [email protected]c73c3efRelease [email protected]35be671upgrade dependencies (#2242)942de1fHandle unhandled errors insocket.reconnectStrategry(#2226)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
@dependabot rebase
It is interesting that all tests pass, since connect-redis says a different invocation is required:
// redis@v4
const { createClient } = require("redis")
let redisClient = createClient({ legacyMode: true })
redisClient.connect().catch(console.error)
// redis@v3
const { createClient } = require("redis")
let redisClient = createClient()
Maybe we can update our client code and use 4.3.1.
Superseded by #2689.