Skip to content

chore(deps): update dependency ioredis to v4.31.0#693

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/ioredis-4.x-lockfile
Open

chore(deps): update dependency ioredis to v4.31.0#693
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/ioredis-4.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 27, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
ioredis 4.27.64.31.0 age confidence
@​types/ioredis 4.26.44.28.10 age confidence

Release Notes

luin/ioredis (ioredis)

v4.31.0

Compare Source

Features

v4.30.1

Compare Source

Bug Fixes

v4.30.0

Compare Source

Features
  • added the option for disabling slots refresh, fixed concurrent calls to refreshSlotsCache (#​1972) (3ef36dc)

v4.29.1

Compare Source

Features
  • Adds support for Redis 7 commands
  • Node v20 is now part of the test matrix, but support for Node v6 got removed
  • Introduces a cluster subscriber group that enables sharded pub/sub
Bug Fixes
  • Fixed the release workflow to be able to release from the v4 branch
  • Reviewed several test cases

v4.28.5

Compare Source

Bug Fixes
  • add @​ioredis/interface-generator to dev deps (aa3b3e9)
  • add the missing typing for Redis#call() (747dd30)
  • better support for CJS importing (687d3eb)
  • disable slotsRefreshInterval by default (370fa62)
  • Fix the NOSCRIPT behavior when using pipelines (bc1b168)
  • improve typing for auto pipelining (4e8c567)
  • improve typing for pipeline (d18f3fe)
  • make fields private when possible (d5c2f20)
  • parameter declaration of Redis#duplicate (a29d9c4)
  • remove dropBufferSupport option (04e68ac)
  • remove unused Command#isCustomCommand (46ade6b)
  • rename interfaces by dropping prefix I (d1d9dba)
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (60c2af9)
  • support passing keyPrefix via redisOptions (6b0dc1e)
Features
  • add @​since to method comments (13eff8e)
  • add declarations for methods (1e10c95)
  • add tests for cluster (1eba58b)
  • always parse username passed via URI (c6f41f6)
  • drop support of Node.js 10 (f9a5071)
  • drop support of third-party Promise libraries (2001ec6)
  • expose official declarations (7a436b1)
  • improve typings for cluster (06782e6)
  • improve typings for pipeline (334242b)
  • improve typings for transformers (94c1e24)
  • Pipeline-based script loading (8df6ee2)
  • Refactor code with modern settings (a8ffa80)
  • skip ready check on NOPERM error (b530a0b), closes #​1293
  • support commands added in Redis v7 (53ca412)
  • support defining custom commands via constructor options (f293b97)
  • support Redis Functions introduced in Redis 7.0 (32eb381)
BREAKING CHANGES
  • slotsRefreshInterval is disabled by default,
    previously, the default value was 5000.
  • allowUsernameInURI is removed and ioredis will always
    use the username passed via URI.
    Previously, the username part in new 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 so
    you very likely have never used it.
  • Support for third-party Promise libraries is dropped. Related methods (exports.Promise = require('bluebird')) are kept but they don't take any effects. The native Promise will always be used.
  • We now require Node.js v12 or newer.
  • Redis can't be called as a function anymore as it's now a class.
    Please change Redis() to new Redis(). Note that Redis() was already deprecated
    in the previous version.

4.28.5 (2022-02-06)

Bug Fixes
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (#​1497) (f357a31)

4.28.4 (2022-02-02)

Bug Fixes

4.28.3 (2022-01-11)

Bug Fixes

4.28.2 (2021-12-01)

Bug Fixes

4.28.1 (2021-11-23)

Bug Fixes

v4.28.4

Compare Source

Bug Fixes
  • add @​ioredis/interface-generator to dev deps (aa3b3e9)
  • add the missing typing for Redis#call() (747dd30)
  • better support for CJS importing (687d3eb)
  • disable slotsRefreshInterval by default (370fa62)
  • Fix the NOSCRIPT behavior when using pipelines (bc1b168)
  • improve typing for auto pipelining (4e8c567)
  • improve typing for pipeline (d18f3fe)
  • make fields private when possible (d5c2f20)
  • parameter declaration of Redis#duplicate (a29d9c4)
  • remove dropBufferSupport option (04e68ac)
  • remove unused Command#isCustomCommand (46ade6b)
  • rename interfaces by dropping prefix I (d1d9dba)
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (60c2af9)
  • support passing keyPrefix via redisOptions (6b0dc1e)
Features
  • add @​since to method comments (13eff8e)
  • add declarations for methods (1e10c95)
  • add tests for cluster (1eba58b)
  • always parse username passed via URI (c6f41f6)
  • drop support of Node.js 10 (f9a5071)
  • drop support of third-party Promise libraries (2001ec6)
  • expose official declarations (7a436b1)
  • improve typings for cluster (06782e6)
  • improve typings for pipeline (334242b)
  • improve typings for transformers (94c1e24)
  • Pipeline-based script loading (8df6ee2)
  • Refactor code with modern settings (a8ffa80)
  • skip ready check on NOPERM error (b530a0b), closes #​1293
  • support commands added in Redis v7 (53ca412)
  • support defining custom commands via constructor options (f293b97)
  • support Redis Functions introduced in Redis 7.0 (32eb381)
BREAKING CHANGES
  • slotsRefreshInterval is disabled by default,
    previously, the default value was 5000.
  • allowUsernameInURI is removed and ioredis will always
    use the username passed via URI.
    Previously, the username part in new 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 so
    you very likely have never used it.
  • Support for third-party Promise libraries is dropped. Related methods (exports.Promise = require('bluebird')) are kept but they don't take any effects. The native Promise will always be used.
  • We now require Node.js v12 or newer.
  • Redis can't be called as a function anymore as it's now a class.
    Please change Redis() to new Redis(). Note that Redis() was already deprecated
    in the previous version.

4.28.5 (2022-02-06)

Bug Fixes
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (#​1497) (f357a31)

4.28.4 (2022-02-02)

Bug Fixes

4.28.3 (2022-01-11)

Bug Fixes

4.28.2 (2021-12-01)

Bug Fixes

4.28.1 (2021-11-23)

Bug Fixes

v4.28.3

Compare Source

Bug Fixes
  • add @​ioredis/interface-generator to dev deps (aa3b3e9)
  • add the missing typing for Redis#call() (747dd30)
  • better support for CJS importing (687d3eb)
  • disable slotsRefreshInterval by default (370fa62)
  • Fix the NOSCRIPT behavior when using pipelines (bc1b168)
  • improve typing for auto pipelining (4e8c567)
  • improve typing for pipeline (d18f3fe)
  • make fields private when possible (d5c2f20)
  • parameter declaration of Redis#duplicate (a29d9c4)
  • remove dropBufferSupport option (04e68ac)
  • remove unused Command#isCustomCommand (46ade6b)
  • rename interfaces by dropping prefix I (d1d9dba)
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (60c2af9)
  • support passing keyPrefix via redisOptions (6b0dc1e)
Features
  • add @​since to method comments (13eff8e)
  • add declarations for methods (1e10c95)
  • add tests for cluster (1eba58b)
  • always parse username passed via URI (c6f41f6)
  • drop support of Node.js 10 (f9a5071)
  • drop support of third-party Promise libraries (2001ec6)
  • expose official declarations (7a436b1)
  • improve typings for cluster (06782e6)
  • improve typings for pipeline (334242b)
  • improve typings for transformers (94c1e24)
  • Pipeline-based script loading (8df6ee2)
  • Refactor code with modern settings (a8ffa80)
  • skip ready check on NOPERM error (b530a0b), closes #​1293
  • support commands added in Redis v7 (53ca412)
  • support defining custom commands via constructor options (f293b97)
  • support Redis Functions introduced in Redis 7.0 (32eb381)
BREAKING CHANGES
  • slotsRefreshInterval is disabled by default,
    previously, the default value was 5000.
  • allowUsernameInURI is removed and ioredis will always
    use the username passed via URI.
    Previously, the username part in new 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 so
    you very likely have never used it.
  • Support for third-party Promise libraries is dropped. Related methods (exports.Promise = require('bluebird')) are kept but they don't take any effects. The native Promise will always be used.
  • We now require Node.js v12 or newer.
  • Redis can't be called as a function anymore as it's now a class.
    Please change Redis() to new Redis(). Note that Redis() was already deprecated
    in the previous version.

4.28.5 (2022-02-06)

Bug Fixes
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (#​1497) (f357a31)

4.28.4 (2022-02-02)

Bug Fixes

4.28.3 (2022-01-11)

Bug Fixes

4.28.2 (2021-12-01)

Bug Fixes

4.28.1 (2021-11-23)

Bug Fixes

v4.28.2

Compare Source

Bug Fixes
  • add @​ioredis/interface-generator to dev deps (aa3b3e9)
  • add the missing typing for Redis#call() (747dd30)
  • better support for CJS importing (687d3eb)
  • disable slotsRefreshInterval by default (370fa62)
  • Fix the NOSCRIPT behavior when using pipelines (bc1b168)
  • improve typing for auto pipelining (4e8c567)
  • improve typing for pipeline (d18f3fe)
  • make fields private when possible (d5c2f20)
  • parameter declaration of Redis#duplicate (a29d9c4)
  • remove dropBufferSupport option (04e68ac)
  • remove unused Command#isCustomCommand (46ade6b)
  • rename interfaces by dropping prefix I (d1d9dba)
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (60c2af9)
  • support passing keyPrefix via redisOptions (6b0dc1e)
Features
  • add @​since to method comments (13eff8e)
  • add declarations for methods (1e10c95)
  • add tests for cluster (1eba58b)
  • always parse username passed via URI (c6f41f6)
  • drop support of Node.js 10 (f9a5071)
  • drop support of third-party Promise libraries (2001ec6)
  • expose official declarations (7a436b1)
  • improve typings for cluster (06782e6)
  • improve typings for pipeline (334242b)
  • improve typings for transformers (94c1e24)
  • Pipeline-based script loading (8df6ee2)
  • Refactor code with modern settings (a8ffa80)
  • skip ready check on NOPERM error (b530a0b), closes #​1293
  • support commands added in Redis v7 (53ca412)
  • support defining custom commands via constructor options (f293b97)
  • support Redis Functions introduced in Redis 7.0 (32eb381)
BREAKING CHANGES
  • slotsRefreshInterval is disabled by default,
    previously, the default value was 5000.
  • allowUsernameInURI is removed and ioredis will always
    use the username passed via URI.
    Previously, the username part in new 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 so
    you very likely have never used it.
  • Support for third-party Promise libraries is dropped. Related methods (exports.Promise = require('bluebird')) are kept but they don't take any effects. The native Promise will always be used.
  • We now require Node.js v12 or newer.
  • Redis can't be called as a function anymore as it's now a class.
    Please change Redis() to new Redis(). Note that Redis() was already deprecated
    in the previous version.

4.28.5 (2022-02-06)

Bug Fixes
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (#​1497) (f357a31)

4.28.4 (2022-02-02)

Bug Fixes

4.28.3 (2022-01-11)

Bug Fixes

4.28.2 (2021-12-01)

Bug Fixes

4.28.1 (2021-11-23)

Bug Fixes

v4.28.1

Compare Source

Bug Fixes
  • add @​ioredis/interface-generator to dev deps (aa3b3e9)
  • add the missing typing for Redis#call() (747dd30)
  • better support for CJS importing (687d3eb)
  • disable slotsRefreshInterval by default (370fa62)
  • Fix the NOSCRIPT behavior when using pipelines (bc1b168)
  • improve typing for auto pipelining (4e8c567)
  • improve typing for pipeline (d18f3fe)
  • make fields private when possible (d5c2f20)
  • parameter declaration of Redis#duplicate (a29d9c4)
  • remove dropBufferSupport option (04e68ac)
  • remove unused Command#isCustomCommand (46ade6b)
  • rename interfaces by dropping prefix I (d1d9dba)
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (60c2af9)
  • support passing keyPrefix via redisOptions (6b0dc1e)
Features
  • add @​since to method comments (13eff8e)
  • add declarations for methods (1e10c95)
  • add tests for cluster (1eba58b)
  • always parse username passed via URI (c6f41f6)
  • drop support of Node.js 10 (f9a5071)
  • drop support of third-party Promise libraries (2001ec6)
  • expose official declarations (7a436b1)
  • improve typings for cluster (06782e6)
  • improve typings for pipeline (334242b)
  • improve typings for transformers (94c1e24)
  • Pipeline-based script loading (8df6ee2)
  • Refactor code with modern settings (a8ffa80)
  • skip ready check on NOPERM error (b530a0b), closes #​1293
  • support commands added in Redis v7 (53ca412)
  • support defining custom commands via constructor options (f293b97)
  • support Redis Functions introduced in Redis 7.0 (32eb381)
BREAKING CHANGES
  • slotsRefreshInterval is disabled by default,
    previously, the default value was 5000.
  • allowUsernameInURI is removed and ioredis will always
    use the username passed via URI.
    Previously, the username part in new 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 so
    you very likely have never used it.
  • Support for third-party Promise libraries is dropped. Related methods (exports.Promise = require('bluebird')) are kept but they don't take any effects. The native Promise will always be used.
  • We now require Node.js v12 or newer.
  • Redis can't be called as a function anymore as it's now a class.
    Please change Redis() to new Redis(). Note that Redis() was already deprecated
    in the previous version.

4.28.5 (2022-02-06)

Bug Fixes
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (#​1497) (f357a31)

4.28.4 (2022-02-02)

Bug Fixes

4.28.3 (2022-01-11)

Bug Fixes

4.28.2 (2021-12-01)

Bug Fixes

4.28.1 (2021-11-23)

Bug Fixes

v4.28.0

Compare Source

Bug Fixes
  • add @​ioredis/interface-generator to dev deps (aa3b3e9)
  • add the missing typing for Redis#call() (747dd30)
  • better support for CJS importing (687d3eb)
  • disable slotsRefreshInterval by default (370fa62)
  • Fix the NOSCRIPT behavior when using pipelines (bc1b168)
  • improve typing for auto pipelining (4e8c567)
  • improve typing for pipeline (d18f3fe)
  • make fields private when possible (d5c2f20)
  • parameter declaration of Redis#duplicate (a29d9c4)
  • remove dropBufferSupport option (04e68ac)
  • remove unused Command#isCustomCommand (46ade6b)
  • rename interfaces by dropping prefix I (d1d9dba)
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (60c2af9)
  • support passing keyPrefix via redisOptions (6b0dc1e)
Features
  • add @​since to method comments (13eff8e)
  • add declarations for methods (1e10c95)
  • add tests for cluster (1eba58b)
  • always parse username passed via URI (c6f41f6)
  • drop support of Node.js 10 (f9a5071)
  • drop support of third-party Promise libraries (2001ec6)
  • expose official declarations (7a436b1)
  • improve typings for cluster (06782e6)
  • improve typings for pipeline (334242b)
  • improve typings for transformers (94c1e24)
  • Pipeline-based script loading (8df6ee2)
  • Refactor code with modern settings (a8ffa80)
  • skip ready check on NOPERM error (b530a0b), closes #​1293
  • support commands added in Redis v7 (53ca412)
  • support defining custom commands via constructor options (f293b97)
  • support Redis Functions introduced in Redis 7.0 (32eb381)
BREAKING CHANGES
  • slotsRefreshInterval is disabled by default,
    previously, the default value was 5000.
  • allowUsernameInURI is removed and ioredis will always
    use the username passed via URI.
    Previously, the username part in new 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 so
    you very likely have never used it.
  • Support for third-party Promise libraries is dropped. Related methods (exports.Promise = require('bluebird')) are kept but they don't take any effects. The native Promise will always be used.
  • We now require Node.js v12 or newer.
  • Redis can't be called as a function anymore as it's now a class.
    Please change Redis() to new Redis(). Note that Redis() was already deprecated
    in the previous version.

4.28.5 (2022-02-06)

Bug Fixes
  • Reset loaded script hashes to force a reload of scripts after reconnect of redis (#​1497) (f357a31)

4.28.4 (2022-02-02)

Bug Fixes

4.28.3 (2022-01-11)

Bug Fixes

4.28.2 (2021-12-01)

Bug Fixes

4.28.1 (2021-11-23)

Bug Fixes

v4.27.11

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
  • SENTINEL: actively failover detection under an option (#​1363) (f02e383)

4.27.4 (2021-06-04)

Performance Improvements

4.27.3 (2021-05-22)

Bug Fixes

4.27.2 (2021-05-04)

Bug Fixes
  • cluster: avoid ClusterAllFailedError in certain cases (aa9c5b1), closes #​1330

4.27.1 (2021-04-24)

Bug Fixes
  • clears commandTimeout timer as each respective command gets fulfilled (#​1336) (d65f8b2)

v4.27.10

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
  • ha

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title fix(deps): update dependency ioredis to v4.28.5 fix(deps): update dependency ioredis to v4.28.5 - autoclosed Dec 8, 2024
@renovate renovate Bot closed this Dec 8, 2024
@renovate renovate Bot deleted the renovate/ioredis-4.x-lockfile branch December 8, 2024 18:32
@renovate renovate Bot changed the title fix(deps): update dependency ioredis to v4.28.5 - autoclosed fix(deps): update dependency ioredis to v4.28.5 Dec 9, 2024
@renovate renovate Bot reopened this Dec 9, 2024
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 4585e15 to 2da282e Compare December 9, 2024 09:43
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 2da282e to e5a2b58 Compare February 1, 2025 18:09
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from e5a2b58 to ca64319 Compare March 5, 2025 23:07
@renovate renovate Bot changed the title fix(deps): update dependency ioredis to v4.28.5 fix(deps): update dependency ioredis to v4.29.1 Mar 5, 2025
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from ca64319 to c96c348 Compare April 11, 2025 16:15
@renovate renovate Bot changed the title fix(deps): update dependency ioredis to v4.29.1 fix(deps): update dependency ioredis to v4.30.0 Apr 11, 2025
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from c96c348 to a5994fe Compare August 10, 2025 13:36
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from a5994fe to d2548a9 Compare August 19, 2025 14:52
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from d2548a9 to 106253e Compare August 31, 2025 14:45
@renovate renovate Bot changed the title fix(deps): update dependency ioredis to v4.30.0 fix(deps): update dependency ioredis to v4.30.1 Sep 16, 2025
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 106253e to 9c675c2 Compare September 16, 2025 16:35
@renovate renovate Bot changed the title fix(deps): update dependency ioredis to v4.30.1 chore(deps): update dependency ioredis to v4.30.1 Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 9c675c2 to 7bf6a68 Compare November 10, 2025 19:00
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 7bf6a68 to ed27919 Compare November 18, 2025 22:46
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from ed27919 to 7b99ea0 Compare March 1, 2026 14:23
@renovate renovate Bot changed the title chore(deps): update dependency ioredis to v4.30.1 chore(deps): update dependency ioredis to v4.31.0 Mar 1, 2026
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 7b99ea0 to f63d1cd Compare April 8, 2026 20:32
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from f63d1cd to 93ea67c Compare April 29, 2026 15:58
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 93ea67c to 377bb5e Compare May 12, 2026 12:59
@renovate renovate Bot force-pushed the renovate/ioredis-4.x-lockfile branch from 377bb5e to 874e6f4 Compare May 28, 2026 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants