|
1 | 1 | # [5.0.0](https://github.com/luin/ioredis/compare/v4.28.5...v5.0.0) (2022-03-26)
|
2 | 2 |
|
| 3 | +In the update of v5, we've made ioredis even more stable and developer-friendly while minimizing the number of breaking changes, so you can spend more time enjoying your life 😄. |
| 4 | + |
| 5 | +Please refer to the guideline to upgrade your projects: [🚀 Upgrading from v4 to v5](https://github.com/luin/ioredis/wiki/Upgrading-from-v4-to-v5). |
| 6 | + |
3 | 7 |
|
4 | 8 | ### Bug Fixes
|
5 | 9 |
|
@@ -58,8 +62,7 @@ Now, if you don't want to send username to Redis, just leave the username part e
|
58 | 62 | * `Redis#serverInfo` is removed. This field is never documented so
|
59 | 63 | you very likely have never used it.
|
60 | 64 | * Support for third-party Promise libraries is dropped. Related methods (`exports.Promise = require('bluebird')`) are kept but they don't take any effects. The native Promise will always be used.
|
61 |
| -* We now require Node.js v10.12.0 or newer. |
62 |
| -* We now only work with Redis v3.0.0 or newer. |
| 65 | +* We now require Node.js v12 or newer. |
63 | 66 | * `Redis` can't be called as a function anymore as it's now a class.
|
64 | 67 | Please change `Redis()` to `new Redis()`. Note that `Redis()` was already deprecated
|
65 | 68 | in the previous version.
|
@@ -141,8 +144,7 @@ Now, if you don't want to send username to Redis, just leave the username part e
|
141 | 144 | * `Redis#serverInfo` is removed. This field is never documented so
|
142 | 145 | you very likely have never used it.
|
143 | 146 | * Support for third-party Promise libraries is dropped. Related methods (`exports.Promise = require('bluebird')`) are kept but they don't take any effects. The native Promise will always be used.
|
144 |
| -* We now require Node.js v10.12.0 or newer. |
145 |
| -* We now only work with Redis v3.0.0 or newer. |
| 147 | +* We now require Node.js v12 or newer. |
146 | 148 | * `Redis` can't be called as a function anymore as it's now a class.
|
147 | 149 | Please change `Redis()` to `new Redis()`. Note that `Redis()` was already deprecated
|
148 | 150 | in the previous version.
|
|
0 commit comments