fix(dependencies): update dependency redis to v4
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| redis | 3.1.2 -> 4.7.0 |
||||
| @types/redis | 2.8.32 -> 4.0.11 |
Release Notes
redis/node-redis (redis)
v4.7.0
v4.6.15
Enhancements
- Upgrade
@redis/clientfrom1.5.16to1.5.17
v4.6.14
Enhancements
- Upgrade
@redis/clientfrom1.5.14to1.5.16
v4.6.13
Enhancements
- Upgrade
@redis/clientfrom1.5.13to1.5.14
v4.6.12
Enhancements
- Upgrade
@redis/clientfrom1.5.121 to1.5.13`
v4.6.11
Enhancements
- Upgrade
@redis/clientfrom1.5.11to1.5.12 - Upgrade
@redis/graphfrom1.1.0to1.1.1 - Upgrade
@redis/jsonfrom1.1.5to1.1.6
v4.6.10
Fixes
- Revert the minimum node version change
- Upgrade
@redis/clientfrom1.5.9to1.5.10 - Upgrade
@redis/searchfrom1.1.3to1.1.4 - Upgrade
@redis/jsonfrom1.0.4to1.0.5
v4.6.9
Enhancements
- Upgrade
@redis/clientfrom1.5.9to1.5.10 - Upgrade
@redis/searchfrom1.1.3to1.1.4 - Upgrade
@redis/jsonfrom1.0.4to1.0.5
v4.6.8
Enhancements
- upgrade
@redis/clientfrom1.5.8to1.5.9 - upgrade
@redis/time-seriesfrom1.0.4to1.0.5
v4.6.7
Enhancements
- upgrade
@redis/clientfrom1.5.7to1.5.8 - upgrade
@redis/searchfrom1.1.2to1.1.3
v4.6.6
Enhancements
- upgrade
@redis/clientfrom1.5.6to1.5.7
v4.6.5
Enhancements
- upgrade
@redis/clientfrom1.5.5to1.5.6
v4.6.4
Enhancements
- upgrade
@redis/clientfrom1.5.4to1.5.5
v4.6.3
Enhancements
- upgrade
@redis/clientfrom1.5.3to1.5.4
v4.6.2
Enhancements
- upgrade
@redis/clientfrom1.5.2to1.5.3
v4.6.1
Enhancements
- upgrade
@redis/clientfrom1.5.0to1.5.2
v4.6.0
Enhancements
- upgrade
@redis/clientfrom1.4.2to1.5.0 - upgrade
@redis/bloomfrom1.1.0to1.2.0 - upgrade
@redis/searchfrom1.1.0to1.1.1
v4.5.1
Enhancements
- upgrade
@redis/client
v4.5.0
Enhancements
- upgrade
@redis/client - upgrade
@redis/time-series
v4.4.0
Enhancements
- #2285-Add-example-scripts-hyperloglog - Added hyperloglog examples to… by @ade1705 in https://github.com/redis/node-redis/pull/2289
- #2287 Add example scripts showing pub/sub usage. by @con-mark in https://github.com/redis/node-redis/pull/2288
- Connecting to cluster example by @varadkarpe in https://github.com/redis/node-redis/pull/2298
- Adds transaction with watched key example script. by @sailingwithsandeep in https://github.com/redis/node-redis/pull/2297
- Fixes typo Redis Search -> RediSearch by @simonprickett in https://github.com/redis/node-redis/pull/2278
- Fixed redis -> Redis in a couple places. by @simonprickett in https://github.com/redis/node-redis/pull/2279
- Update search-json.js by @leibale in https://github.com/redis/node-redis/pull/2317
- test with node 19 instead of 17 by @leibale in https://github.com/redis/node-redis/pull/2316
- disconnect in basic example by @reviewher in https://github.com/redis/node-redis/pull/2235
- upgrade
@redis/client - upgrade
@redis/bloom - upgrade
@redis/graph
v4.3.1
Enhancements
- Upgrade
@redis/json
v4.3.0
Enhancements
- Upgrade
@redis/client - Upgrade
@redis/search
v4.2.0
Enhancements
- Upgrade
@redis/client
v4.1.1
Enhancements
- Upgrade
@redis/client
v4.1.0
Enhancements
- Upgrade
@redis/bloom - Upgrade
@redis/client - Upgrade
@redis/graph - Upgrade
@redis/json - Upgrade
@redis/search - Upgrade
@redis/time-series
v4.0.6
- Upgrade
@node-redis/client - Upgrade
@node-redis/search
v4.0.5
v4.0.4
- Upgrade
@node-redis/client - Upgrade
@node-redis/search - Upgrade
@node-redis/time-series
v4.0.3
- First release with
@node-redis/graph - Upgrade to
@node-redis/[email protected]
v4.0.2
Fixes
- Fix v4 commands in legacy mode (#1820)
- Fix
EXISTScommand reply (#1819) - Fix handler for "redis:invalidate" messages (#1798)
- Fix "SEPARATOR" typo in RediSearch (#1823)
Enhancements
- First release of
@node-redis/bloom - Add support for
Buffers - Enhance
ASKandMOVEDerrors handler
v4.0.1
Fixes
- Fix
NOAUTHerror when using authentication & database (#1681) - Allow to
.quit()in PubSub mode (#1766) - Add an option to configurate
nameon a client (#1758) - Lowercase commands (
client.hset) inlegacyMode - Fix PubSub resubscribe (#1764)
- Fix
RedisSocketOptionstype (#1741)
Enhancements
- Add support for
numbers andBuffers inHSET(#1738 #1739) - Export
RedisClientType,RedisClusterTypeand some more types (#1673) - First release of
@node-redis/time-series
v4.0.0
This version is a major change and refactor, adding modern JavaScript capabilities and multiple breaking changes. See the migration guide for tips on how to upgrade.
Breaking Changes
- All functions return Promises by default
- Dropped support for Node.js 10.x, the minimum supported Node.js version is now 12.x
createClienttakes new and different arguments- The
prefix,rename_commandsconfiguration options tocreateClienthave been removed - The
enable_offline_queueconfiguration option is removed, executing commands on a closed client (without calling.connect()or after calling.disconnect()) will reject immediately - Login credentials are no longer saved when using
.auth()directly
Features
- Added support for Promises
- Added built-in TypeScript declaration files enabling code completion
- Added support for clustering
- Added idiomatic arguments and responses to Redis commands
- Added full support for Lua Scripts
- Added support for SCAN iterators
- Added the ability to extend Node Redis with Redis Module commands
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.
🔍 Inspect: https://vercel.com/whtsky/fulltextrssplz/9sqWo9XfNJXkL5RSdVojCFUrGkFS
✅ Preview: Failed
[Deployment for f917fc1 failed]
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 100.00%. Comparing base (
b432a88) to head (3db5bd7).
:exclamation: Current head 3db5bd7 differs from pull request most recent head e55c471. Consider uploading reports for the commit e55c471 to get more accurate results
Additional details and impacted files
@@ Coverage Diff @@
## master #488 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 1 1
Lines 9 9
=========================================
Hits 9 9
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Comments | Updated (UTC) |
|---|---|---|---|---|
| fulltextrssplz | ❌ Failed (Inspect) | Jul 29, 2024 5:00pm |
Deployment failed with the following error:
Resource is limited - try again in 6 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again in 5 hours (more than 100, code: "api-deployments-free-per-day").