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

Commits on Apr 2, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    79ea885 View commit details

Commits on Apr 5, 2022

  1. Copy the full SHA
    4c433ec View commit details

Commits on Apr 9, 2022

  1. Copy the full SHA
    df04dd8 View commit details
  2. chore(release): 5.0.4 [skip ci]

    ## [5.0.4](v5.0.3...v5.0.4) (2022-04-09)
    
    ### Bug Fixes
    
    * Expose ChainableCommander and other types ([#1560](#1560)) ([df04dd8](df04dd8))
    ioredis-robot authored and semantic-release-bot committed Apr 9, 2022
    Copy the full SHA
    7a9e5fd View commit details
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [5.0.4](https://github.com/luin/ioredis/compare/v5.0.3...v5.0.4) (2022-04-09)


### Bug Fixes

* Expose ChainableCommander and other types ([#1560](https://github.com/luin/ioredis/issues/1560)) ([df04dd8](https://github.com/luin/ioredis/commit/df04dd8d87a44d3b64b385c86581915248554508))

## [5.0.3](https://github.com/luin/ioredis/compare/v5.0.2...v5.0.3) (2022-03-31)


8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ used in the world's biggest online commerce company [Alibaba](http://www.alibaba

# Versions

| NPM Version | Branch | Node.js Version | Redis Version |
| Version | Branch | Node.js Version | Redis Version |
| -------------- | ------ | --------------- | --------------- |
| 5.x.x (latest) | main | >= 12 | 2.6.12 ~ latest |
| 4.x.x | v4 | >= 6 | 2.6.12 ~ 7 |
@@ -48,7 +48,7 @@ Refer to [CHANGELOG.md](CHANGELOG.md) for features and bug fixes introduced in v

# Links

- [API Documentation](http://luin.github.io/ioredis/) ([Redis](http://luin.github.io/ioredis/classes/default.html), [Cluster](http://luin.github.io/ioredis/classes/Cluster.html))
- [API Documentation](https://luin.github.io/ioredis/) ([Redis](https://luin.github.io/ioredis/classes/Redis.html), [Cluster](https://luin.github.io/ioredis/classes/Cluster.html))
- [Changelog](CHANGELOG.md)
- [Migrating from node_redis](https://github.com/luin/ioredis/wiki/Migrating-from-node_redis)

@@ -164,7 +164,7 @@ See the `examples/` folder for more examples. For example:
* [Streams](examples/stream.js)
* [Redis Modules](examples/module.js) e.g. RedisJSON

All Redis commands are supported. See [the documentation](http://luin.github.io/ioredis/classes/default.html) for details.
All Redis commands are supported. See [the documentation](https://luin.github.io/ioredis/classes/Redis.html) for details.

## Connect to Redis

@@ -196,7 +196,7 @@ new Redis("redis://:authpassword@127.0.0.1:6380/4");
new Redis("redis://username:authpassword@127.0.0.1:6380/4");
```

See [API Documentation](http://luin.github.io/ioredis/index.html#RedisOptions) for all available options.
See [API Documentation](https://luin.github.io/ioredis/index.html#RedisOptions) for all available options.

## Pub/Sub

4 changes: 2 additions & 2 deletions bin/template.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Callback } from "../types";

type RedisKey = string | Buffer;
type RedisValue = string | Buffer | number;
export type RedisKey = string | Buffer;
export type RedisValue = string | Buffer | number;

// Inspired by https://github.com/mmkal/handy-redis/blob/main/src/generated/interface.ts.
// Should be fixed with https://github.com/Microsoft/TypeScript/issues/1213
2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

Loading