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.3.1
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.3.2
Choose a head ref
  • 5 commits
  • 16 files changed
  • 4 contributors

Commits on Apr 2, 2023

  1. Verified

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

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

Commits on Apr 15, 2023

  1. fix: add types for known events (#1694)

    Co-authored-by: Zihua Li <i@zihua.li>
    trim21 and luin authored Apr 15, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1a87b23 View commit details
  2. test: skip cluster tests

    luin committed Apr 15, 2023
    Copy the full SHA
    f68290e View commit details
  3. chore(release): 5.3.2 [skip ci]

    ## [5.3.2](v5.3.1...v5.3.2) (2023-04-15)
    
    ### Bug Fixes
    
    * add types for known events ([#1694](#1694)) ([1a87b23](1a87b23))
    ioredis-robot authored and semantic-release-bot committed Apr 15, 2023
    Copy the full SHA
    4c8eb84 View commit details
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -35,12 +35,12 @@ jobs:
flag-name: node-${{matrix.node}}
parallel: true

test-cluster:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and test cluster
run: bash test/cluster/docker/main.sh
# test-cluster:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build and test cluster
# run: bash test/cluster/docker/main.sh

code-coverage:
needs: test
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [5.3.2](https://github.com/luin/ioredis/compare/v5.3.1...v5.3.2) (2023-04-15)


### Bug Fixes

* add types for known events ([#1694](https://github.com/luin/ioredis/issues/1694)) ([1a87b23](https://github.com/luin/ioredis/commit/1a87b237e8f43f1dee44dcab8e9da6855bbf772a))

## [5.3.1](https://github.com/luin/ioredis/compare/v5.3.0...v5.3.1) (2023-02-12)


11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

A robust, performance-focused and full-featured [Redis](http://redis.io) client for [Node.js](https://nodejs.org).

Supports Redis >= 2.6.12 and (Node.js >= 12.22.0). Completely compatible with Redis 7.x.
Supports Redis >= 2.6.12 and the latest version of [Dragonfly](https://dragonflydb.io/). Completely compatible with Redis 7.x.

# Features

@@ -884,6 +884,15 @@ Alternatively, specify the connection through a [`rediss://` URL](https://www.ia
const redis = new Redis("rediss://redis.my-service.com");
```

If you do not want to use a connection string, you can also specify an empty `tls: {}` object:

```javascript
const redis = new Redis({
host: 'redis.my-service.com',
tls: {}
});
```

### TLS Profiles

> **Warning**
2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

Loading