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: v4.23.0
Choose a base ref
...
head repository: redis/ioredis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.23.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Mar 14, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bfc194d View commit details
  2. chore(release): 4.23.1 [skip ci]

    ## [4.23.1](v4.23.0...v4.23.1) (2021-03-14)
    
    ### Bug Fixes
    
    * **cluster:** issues when code is processed by babel ([#1298](#1298)) ([bfc194d](bfc194d)), closes [#1288](#1288)
    semantic-release-bot committed Mar 14, 2021
    Copy the full SHA
    4ba66ad View commit details
Showing with 11 additions and 3 deletions.
  1. +7 −0 Changelog.md
  2. +2 −1 lib/pipeline.ts
  3. +1 −1 package-lock.json
  4. +1 −1 package.json
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [4.23.1](https://github.com/luin/ioredis/compare/v4.23.0...v4.23.1) (2021-03-14)


### Bug Fixes

* **cluster:** issues when code is processed by babel ([#1298](https://github.com/luin/ioredis/issues/1298)) ([bfc194d](https://github.com/luin/ioredis/commit/bfc194dcad2af527e802d6f5b060f0b0779e840d)), closes [#1288](https://github.com/luin/ioredis/issues/1288)

# [4.23.0](https://github.com/luin/ioredis/compare/v4.22.0...v4.23.0) (2021-02-25)


3 changes: 2 additions & 1 deletion lib/pipeline.ts
Original file line number Diff line number Diff line change
@@ -32,7 +32,8 @@ export default function Pipeline(redis) {
Commander.call(this);

this.redis = redis;
this.isCluster = this.redis.constructor.name === "Cluster";
this.isCluster =
this.redis.constructor.name === "Cluster" || this.redis.isCluster;
this.isPipeline = true;
this.options = redis.options;
this._queue = [];
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ioredis",
"version": "4.23.0",
"version": "4.23.1",
"description": "A robust, performance-focused and full-featured Redis client for Node.js.",
"main": "built/index.js",
"files": [