-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Redis V4 through legacyMode (#345)
The `legacyMode` option in `redis@v4` has matured enough such that all our tests pass now. Also includes: - Remove legacy v3 -> v4 upgrade docs - Switch to double quotes for formatting #336
- Loading branch information
Showing
12 changed files
with
168 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
name-template: "v$RESOLVED_VERSION" | ||
tag-template: "v$RESOLVED_VERSION" | ||
template: | | ||
$CHANGES | ||
category-template: '#### $TITLE' | ||
change-template: '* #$NUMBER - $TITLE (@$AUTHOR)' | ||
category-template: "#### $TITLE" | ||
change-template: "* #$NUMBER - $TITLE (@$AUTHOR)" | ||
categories: | ||
- title: 'Breaking changes' | ||
label: 'breaking' | ||
- title: 'Enhancements' | ||
label: 'enhancement' | ||
- title: 'Bug fixes' | ||
label: 'bug' | ||
- title: 'Maintenance' | ||
label: 'chore' | ||
- title: "Breaking changes" | ||
label: "breaking" | ||
- title: "Enhancements" | ||
label: "enhancement" | ||
- title: "Bug fixes" | ||
label: "bug" | ||
- title: "Maintenance" | ||
label: "chore" | ||
|
||
version-resolver: | ||
major: | ||
labels: | ||
- 'breaking' | ||
- "breaking" | ||
minor: | ||
labels: | ||
- 'enhancement' | ||
- "enhancement" | ||
patch: | ||
labels: | ||
- 'bug' | ||
- 'chore' | ||
- "bug" | ||
- "chore" | ||
|
||
exclude-labels: | ||
- 'skip-changelog' | ||
- "skip-changelog" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ | ||
"tabWidth": 2, | ||
"semi": false, | ||
"singleQuote": true | ||
"semi": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require('./lib/connect-redis') | ||
module.exports = require("./lib/connect-redis") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.