chore(deps): update dependency ioredis to v5 #78
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.27.9
->^5.0.0
Release Notes
luin/ioredis (ioredis)
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:authpassword@127.0.0.1:6380/4")
was ignored unless
allowUsernameInURI
is specified:new Redis("redis://username:authpassword@127.0.0.1:6380/4?allowUsernameInURI=true")
.Now, if you don't want to send username to Redis, just leave the username part empty:
new Redis("redis://:authpassword@127.0.0.1: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.
v4.28.5
Compare Source
Bug Fixes
v4.28.4
Compare Source
Bug Fixes
v4.28.3
Compare Source
Bug Fixes
v4.28.2
Compare Source
Bug Fixes
v4.28.1
Compare Source
Bug Fixes
v4.28.0
Compare Source
Features
4.27.11 (2021-10-11)
Bug Fixes
4.27.10 (2021-10-04)
Bug Fixes
4.27.9 (2021-08-30)
Bug Fixes
4.27.8 (2021-08-18)
Bug Fixes
4.27.7 (2021-08-01)
Bug Fixes
4.27.6 (2021-06-13)
Bug Fixes
4.27.5 (2021-06-05)
Bug Fixes
4.27.4 (2021-06-04)
Performance Improvements
4.27.3 (2021-05-22)
Bug Fixes
4.27.2 (2021-05-04)
Bug Fixes
4.27.1 (2021-04-24)
Bug Fixes
v4.27.11
Compare Source
Bug Fixes
v4.27.10
Compare Source
Bug Fixes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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 this update again.
This PR has been generated by Mend Renovate. View repository job log here.