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.3
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.4
Choose a head ref
  • 3 commits
  • 15 files changed
  • 3 contributors

Commits on Oct 29, 2022

  1. Add node 18 to CI (#1655)

    silverwind authored Oct 29, 2022
    Copy the full SHA
    4de8cdb View commit details

Commits on Nov 2, 2022

  1. Copy the full SHA
    6f1ab9f View commit details
  2. chore(release): 5.2.4 [skip ci]

    ## [5.2.4](v5.2.3...v5.2.4) (2022-11-02)
    
    ### Bug Fixes
    
    * passing in family parameter in URL in node 18 ([#1673](#1673)) ([6f1ab9f](6f1ab9f))
    ioredis-robot authored and semantic-release-bot committed Nov 2, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0add883 View commit details
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12.x, 14.x, 16.x]
node: [12.x, 14.x, 16.x, 18.x]
redis: ['2', '6']
steps:
- name: Git checkout
@@ -29,7 +29,7 @@ jobs:
- run: npm run test:tsd
- run: npm run test:cov || npm run test:cov || npm run test:cov
- name: Coveralls
if: matrix.node == '16.x' && matrix.redis == '6'
if: matrix.node == '18.x' && matrix.redis == '6'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [5.2.4](https://github.com/luin/ioredis/compare/v5.2.3...v5.2.4) (2022-11-02)


### Bug Fixes

* passing in family parameter in URL in node 18 ([#1673](https://github.com/luin/ioredis/issues/1673)) ([6f1ab9f](https://github.com/luin/ioredis/commit/6f1ab9f374bff2d62cf64ff6bfca1cf9f03d14d5))

## [5.2.3](https://github.com/luin/ioredis/compare/v5.2.2...v5.2.3) (2022-08-23)


Loading