-
Notifications
You must be signed in to change notification settings - Fork 130
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 #1384
Conversation
🦋 Changeset detectedLatest commit: d800eb7 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
The latest changes of this PR are not available as alpha, since there are no linked |
4c4fc73
to
b1a82bb
Compare
this would be a breaking change as the end users are gonna get type errors for their old usage of the plugin as the public interface of interacting with |
b1a82bb
to
86eae84
Compare
💻 Website PreviewThe latest changes are available as preview in: https://be8cfe09.envelop.pages.dev |
c9a9708
to
5330631
Compare
9017e8e
to
aba0370
Compare
a23dec1
to
3ac13be
Compare
155ebf1
to
badb21f
Compare
b8a99c7
to
bba78d6
Compare
84b0f2e
to
fba5809
Compare
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: packages/plugins/response-cache-redis/yarn.lock
|
fba5809
to
1098459
Compare
a59ff8b
to
0f2b690
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
147f684
to
544361d
Compare
🚀 Snapshot Release (
|
Package | Version | Info |
---|---|---|
@envelop/apollo-federation |
5.0.1-alpha-20250115115408-d800eb7392fbada8593b6c36cec59eee497e4e58 |
npm ↗︎ unpkg ↗︎ |
@envelop/response-cache-redis |
4.1.3-alpha-20250115115408-d800eb7392fbada8593b6c36cec59eee497e4e58 |
npm ↗︎ unpkg ↗︎ |
✅ Benchmark Results
|
This PR contains the following updates:
^4.27.9
->^5.0.0
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: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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.