Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: redis/ioredis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.2.4
Choose a base ref
...
head repository: redis/ioredis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.2.5
Choose a head ref
  • 5 commits
  • 16 files changed
  • 5 contributors

Commits on Nov 6, 2022

  1. test(functional): monitor result compare lowercase more changes - rel…

    …ated to issue #1671 (#1675)
    
    Signed-off-by: Boaz Sade <boaz@dragonflydb.io>
    boazsade authored Nov 6, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    kwasniew Mateusz Kwasniewski
    Copy the full SHA
    c275e9a View commit details

Commits on Dec 3, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    kwasniew Mateusz Kwasniewski
    Copy the full SHA
    807cfc0 View commit details

Commits on Jan 14, 2023

  1. chore(deps): bump json5 from 2.2.0 to 2.2.3 (#1700)

    Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3.
    - [Release notes](https://github.com/json5/json5/releases)
    - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
    - [Commits](json5/json5@v2.2.0...v2.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: json5
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    29954a7 View commit details
  2. Copy the full SHA
    cdded57 View commit details
  3. chore(release): 5.2.5 [skip ci]

    ## [5.2.5](v5.2.4...v5.2.5) (2023-01-14)
    
    ### Bug Fixes
    
    * Named export to support ESM imports in Typescript ([#1695](#1695)) ([cdded57](cdded57))
    ioredis-robot authored and semantic-release-bot committed Jan 14, 2023
    Copy the full SHA
    ef2d2cd View commit details
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [5.2.5](https://github.com/luin/ioredis/compare/v5.2.4...v5.2.5) (2023-01-14)


### Bug Fixes

* Named export to support ESM imports in Typescript ([#1695](https://github.com/luin/ioredis/issues/1695)) ([cdded57](https://github.com/luin/ioredis/commit/cdded5703ded8dff02d7df3362ae25120bb75e97))

## [5.2.4](https://github.com/luin/ioredis/compare/v5.2.3...v5.2.4) (2022-11-02)


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1072,7 +1072,7 @@ cluster.get("foo", (err, res) => {
state stabilized after a failover, so adding a delay before resending can prevent a ping pong effect.
- `redisOptions`: Default options passed to the constructor of `Redis` when connecting to a node.
- `slotsRefreshTimeout`: Milliseconds before a timeout occurs while refreshing slots from the cluster (default `1000`).
- `slotsRefreshInterval`: Milliseconds between every automatic slots refresh (default `5000`).
- `slotsRefreshInterval`: Milliseconds between every automatic slots refresh (by default, it is disabled).
### Read-Write Splitting
Loading