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.6
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.0
Choose a head ref
  • 6 commits
  • 30 files changed
  • 3 contributors

Commits on Jan 25, 2023

  1. Verified

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

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

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6285e80 View commit details
  4. Copy the full SHA
    3ad7b0b View commit details
  5. Copy the full SHA
    321f8de View commit details
  6. chore(release): 5.3.0 [skip ci]

    # [5.3.0](v5.2.6...v5.3.0) (2023-01-25)
    
    ### Bug Fixes
    
    * unsubscribe not work with stringNumbers ([#1710](#1710)) ([321f8de](321f8de)), closes [#1643](#1643)
    
    ### Features
    
    * Add support ssubscribe ([#1690](#1690)) ([6285e80](6285e80))
    ioredis-robot authored and semantic-release-bot committed Jan 25, 2023
    Copy the full SHA
    0922c48 View commit details
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Release

on:
push:
branches: [main]
on: workflow_dispatch

concurrency:
group: release_version
@@ -16,7 +14,7 @@ jobs:
needs: test
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "lts/*"
17 changes: 8 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,6 @@ jobs:
fail-fast: false
matrix:
node: [12.x, 14.x, 16.x, 18.x]
redis: ['2', '6']
steps:
- name: Git checkout
uses: actions/checkout@v2
@@ -21,19 +20,19 @@ jobs:
- name: Start Redis
uses: supercharge/redis-github-action@1.4.0
with:
redis-version: ${{ matrix.redis }}
redis-version: latest

- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test:tsd
- run: npm run test:cov || npm run test:cov || npm run test:cov
- name: Coveralls
if: matrix.node == '18.x' && matrix.redis == '6'
if: matrix.node == '18.x'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: redis-${{matrix.redis}}-node-${{matrix.node}}
flag-name: node-${{matrix.node}}
parallel: true

test-cluster:
@@ -47,8 +46,8 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [5.3.0](https://github.com/luin/ioredis/compare/v5.2.6...v5.3.0) (2023-01-25)


### Bug Fixes

* unsubscribe not work with stringNumbers ([#1710](https://github.com/luin/ioredis/issues/1710)) ([321f8de](https://github.com/luin/ioredis/commit/321f8def3dff7f996c90af1ef73ffd789e02381e)), closes [#1643](https://github.com/luin/ioredis/issues/1643)


### Features

* Add support ssubscribe ([#1690](https://github.com/luin/ioredis/issues/1690)) ([6285e80](https://github.com/luin/ioredis/commit/6285e80ffb47564dc01d8e9940ff9a103bf70e2d))

## [5.2.6](https://github.com/luin/ioredis/compare/v5.2.5...v5.2.6) (2023-01-25)


Loading