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.9.2
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.9.3
Choose a head ref
  • 5 commits
  • 23 files changed
  • 6 contributors

Commits on Jan 30, 2026

  1. fix: fix issue with moved command for replicas (#2064)

    * fix: fix issue with moved command for replicas
    
    * test: fix tests
    
    * test: update tests, replace two tests with one test, which checks all required logic in a simple manner
    
    * test: fix test race condition
    
    * test: fix monitor test
    
    ---------
    
    Co-authored-by: devandscorp <[email protected]>
    DevandScorp and devandscorp authored Jan 30, 2026
    Configuration menu
    Copy the full SHA
    de4eed4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8adb1ae View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2026

  1. fix(types): optional properties on RedisOptions allow explicit undefi…

    …ned (#2066)
    
    * optional properties on RedisOptions, SentinelConnectionOptions, ClusterOptions
    
    when exactOptionalPropertyTypes is true in the consuming application's tsconfig, you cannot send in an explicit undefined for these fields, causing the developer to jump through extra hoops needlessly to get i.e. the username and password provided to the options in a type-safe manner. This fix corrects this by explicitly specifying undefined as an allowed type on the username and password properties within RedisOptions, SentinelConnectionOptions, and ClusterOptions.
    
    ```ts
    new Redis({
      ...
      password: process.env.REDIS_PASSWORD,
    })
    ```
    
    * fix: add missing | undefined to remaining optional properties
    
    ---------
    
    Co-authored-by: Pavel Pashov <[email protected]>
    avocadojesus and PavelPashov authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    0a1a898 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. chore(release): 5.9.3 [skip ci]

    ## [5.9.3](v5.9.2...v5.9.3) (2026-02-12)
    
    ### Bug Fixes
    
    * autopipelining to route writes to masters with scaleReads ([#2072](#2072)) ([8adb1ae](8adb1ae))
    * fix issue with moved command for replicas ([#2064](#2064)) ([de4eed4](de4eed4))
    * **types:** optional properties on RedisOptions allow explicit undefined ([#2066](#2066)) ([0a1a898](0a1a898))
    ioredis-robot authored and semantic-release-bot committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    326528b View commit details
    Browse the repository at this point in the history
  2. chore(release): 5.9.3 [skip ci]

    ## [5.9.3](v5.9.2...v5.9.3) (2026-02-12)
    
    ### Bug Fixes
    
    * autopipelining to route writes to masters with scaleReads ([#2072](#2072)) ([8adb1ae](8adb1ae))
    * fix issue with moved command for replicas ([#2064](#2064)) ([de4eed4](de4eed4))
    * **types:** optional properties on RedisOptions allow explicit undefined ([#2066](#2066)) ([0a1a898](0a1a898))
    ioredis-robot authored and semantic-release-bot committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    cd19ab0 View commit details
    Browse the repository at this point in the history
Loading