-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency ioredis to v5 #2067
base: main
Are you sure you want to change the base?
Conversation
|
f218d93
to
7769260
Compare
7769260
to
45ba5cc
Compare
45ba5cc
to
02ea909
Compare
02ea909
to
93ceee0
Compare
93ceee0
to
a09f19b
Compare
b1c0c4a
to
c92eb3b
Compare
c92eb3b
to
a6e12ee
Compare
a6e12ee
to
39b8929
Compare
39b8929
to
a5dd039
Compare
a5dd039
to
1144f19
Compare
c53c17f
to
1d55c3c
Compare
1d55c3c
to
5f22034
Compare
5f22034
to
aaabae5
Compare
aaabae5
to
4bf212f
Compare
66df229
to
f99d648
Compare
f99d648
to
bc49626
Compare
This PR contains the following updates:
4.28.5
->5.4.2
4.28.10
->5.0.0
Release Notes
luin/ioredis (ioredis)
v5.4.2
Compare Source
Bug Fixes
v5.4.1
Compare Source
Bug Fixes
v5.4.0
Compare Source
Bug Fixes
refreshSlotsCache
is callback concurrently, call the callback only when the refresh process is done (#1881) (804ee07)Features
socketTimeout
inRedis
(#1882) (673ac77)5.3.2 (2023-04-15)
Bug Fixes
5.3.1 (2023-02-12)
Bug Fixes
v5.3.2
Compare Source
Bug Fixes
v5.3.1
Compare Source
Bug Fixes
v5.3.0
Compare Source
Bug Fixes
Features
5.2.6 (2023-01-25)
Bug Fixes
5.2.5 (2023-01-14)
Bug Fixes
Named export to support ESM imports in Typescript (#1695) (cdded57)
With this change, users would be able to import Redis with
import { Redis} from 'ioredis'
. This makes it possible to import Redis in an ESM project. The original way (import Redis from 'ioredis'
) will still be supported but will be deprecated in the next major version.5.2.4 (2022-11-02)
Bug Fixes
5.2.3 (2022-08-23)
Bug Fixes
5.2.2 (2022-07-23)
Bug Fixes
5.2.1 (2022-07-16)
Bug Fixes
v5.2.6
Compare Source
Bug Fixes
v5.2.5
Compare Source
Bug Fixes
Named export to support ESM imports in Typescript (#1695) (cdded57)
With this change, users would be able to import Redis with
import { Redis} from 'ioredis'
. This makes it possible to import Redis in an ESM project. The original way (import Redis from 'ioredis'
) will still be supported but will be deprecated in the next major version.v5.2.4
Compare Source
Bug Fixes
v5.2.3
Compare Source
Bug Fixes
v5.2.2
Compare Source
Bug Fixes
v5.2.1
Compare Source
Bug Fixes
v5.2.0
Compare Source
Features
v5.1.0
Compare Source
Features
5.0.6 (2022-05-31)
Bug Fixes
5.0.5 (2022-05-17)
Bug Fixes
5.0.4 (2022-04-09)
Bug Fixes
5.0.3 (2022-03-31)
Bug Fixes
5.0.2 (2022-03-30)
Bug Fixes
5.0.1 (2022-03-26)
Bug Fixes
v5.0.6
Compare Source
Bug Fixes
v5.0.5
Compare Source
Bug Fixes
v5.0.4
Compare Source
Bug Fixes
v5.0.3
Compare Source
Bug Fixes
v5.0.2
Compare Source
Bug Fixes
v5.0.1
Compare Source
Bug Fixes
v5.0.0
Compare Source
In the update of v5, we've made ioredis even more stable and developer-friendly while minimizing the number of breaking changes, so you can spend more time enjoying your life 😄.
Please refer to the guideline to upgrade your projects: 🚀 Upgrading from v4 to v5.
Bug Fixes
Features
BREAKING CHANGES
slotsRefreshInterval
is disabled by default,previously, the default value was 5000.
allowUsernameInURI
is removed and ioredis will alwaysuse the username passed via URI.
Previously, the
username
part innew Redis("redis://username:[email protected]:6380/4")
was ignored unless
allowUsernameInURI
is specified:new Redis("redis://username:[email protected]:6380/4?allowUsernameInURI=true")
.Now, if you don't want to send username to Redis, just leave the username part empty:
new Redis("redis://:[email protected]:6380/4")
Redis#serverInfo
is removed. This field is never documented soyou very likely have never used it.
exports.Promise = require('bluebird')
) are kept but they don't take any effects. The native Promise will always be used.Redis
can't be called as a function anymore as it's now a class.Please change
Redis()
tonew Redis()
. Note thatRedis()
was already deprecatedin the previous version.
Configuration
📅 Schedule: Branch creation - "* * * * 0,6" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.