mirror of
https://github.com/hansputera/tiktok-dl.git
synced 2026-04-06 04:01:57 +02:00
fix(deps): update dependency ioredis to v5 - autoclosed #101
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @renovate[bot] on 5/22/2022
This PR contains the following updates:
4.28.5->5.0.5Release Notes
luin/ioredis
v5.0.5Compare Source
Bug Fixes
v5.0.4Compare Source
Bug Fixes
v5.0.3Compare Source
Bug Fixes
v5.0.2Compare Source
Bug Fixes
v5.0.1Compare Source
Bug Fixes
v5.0.0Compare 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
slotsRefreshIntervalis disabled by default,previously, the default value was 5000.
allowUsernameInURIis removed and ioredis will alwaysuse the username passed via URI.
Previously, the
usernamepart innew Redis("redis://username:authpassword@127.0.0.1:6380/4")was ignored unless
allowUsernameInURIis 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#serverInfois 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.Rediscan'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: 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 WhiteSource Renovate. View repository job log here.