Skip to content

Commit 2500aa5

Browse files
committed
chore: release v3.0.0
2 parents d7470f2 + dd8bf59 commit 2500aa5

23 files changed

+1752
-1843
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
open_collective: node-redis

.github/ISSUE_TEMPLATE.md

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,34 @@
1-
_Thanks for wanting to report an issue you've found in node_redis. Please delete
1+
---
2+
title: ⚠️ Bug report
3+
labels: needs-triage
4+
---
5+
6+
### Issue
7+
8+
<!--
9+
Thanks for wanting to report an issue you've found in node_redis. Please delete
210
this text and fill in the template below. Please note that the issue tracker is only
3-
for bug reports or feature requests. If you have a question, please ask that on [gitter].
4-
If unsure about something, just do as best as you're able._
11+
for bug reports or feature requests.
12+
13+
If you have a question, please ask it on Stack Overflow using the `node-redis` tag.
514
6-
_Note that it will be much easier to fix the issue if a test case that reproduces
15+
Note that it will be much easier to fix the issue if a test case that reproduces
716
the problem is provided. It is of course not always possible to reduce your code
8-
to a small test case, but it's highly appreciated to have as much data as possible.
9-
Thank you!_
17+
with a small test case, but it's highly appreciated to have as much data as possible.
18+
-->
19+
20+
> Describe your issue here
21+
22+
23+
---
1024

11-
* **Version**: What node_redis and what redis version is the issue happening on?
12-
* **Platform**: What platform / version? (For example Node.js 0.10 or Node.js 5.7.0 on Windows 7 / Ubuntu 15.10 / Azure)
13-
* **Description**: Description of your issue, stack traces from errors and code that reproduces the issue
25+
### Environment
1426

15-
[gitter]: https://gitter.im/NodeRedis/node_redis?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
27+
<!-- e.g. "node --version" -->
28+
- **Node.js Version**: `VERSION_HERE`
29+
30+
<!-- e.g. "redis-server --version" -->
31+
- **Redis Version**: `VERSION_HERE`
32+
33+
<!-- e.g. Windows 10, Mac OSX 10.15.2 -->
34+
- **Platform**: `PLATFORM_HERE`

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1-
### Pull Request check-list
1+
<!-- please ensure you have read the `./CONTRIBUTING.md` guide -->
22

3-
_Please make sure to review and check all of these items:_
3+
### Description
4+
5+
<!-- Please provide a description of the change below, e.g What was the purpose? -->
6+
<!-- Why does it matter to you? What problem are you trying to solve? -->
7+
<!-- Tag in any linked issues. -->
8+
9+
> Description your pull request here
10+
11+
12+
---
13+
14+
### Checklist
15+
16+
<!-- Please make sure to review and check all of these items: -->
417

518
- [ ] Does `npm test` pass with this change (including linting)?
619
- [ ] Is the new or changed code fully tested?
720
- [ ] Is a documentation update included (if this change modifies existing APIs, or introduces new ones)?
821

9-
_NOTE: these things are not required to open a PR and can be done
10-
afterwards / while the PR is open._
11-
12-
### Description of change
13-
14-
_Please provide a description of the change here._
22+
<!-- NOTE: these things are not required to open a PR and can be done
23+
afterwards / while the PR is open. -->

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ coverage/
1111
*.rdb
1212
*.out
1313
*.yml
14+
CHANGELOG.md
15+
CONTRIBUTING.md
16+
CODE_OF_CONDUCT.md
17+
.travis.yml
18+
appveyor.yml
19+
package-lock.json
20+
.prettierrc

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"arrowParens": "avoid",
3+
"trailingComma": "all",
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": false,
7+
"bracketSpacing": true,
8+
"jsxBracketSameLine": false,
9+
"tabWidth": 2,
10+
"printWidth": 100
11+
}

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ env:
55
addons:
66
apt:
77
sources:
8-
- ubuntu-toolchain-r-test
8+
- ubuntu-toolchain-r-test
99
packages:
10-
- g++-4.8
10+
- g++-4.8
1111
node_js:
12-
- "4"
1312
- "6"
1413
- "8"
1514
- "12"
@@ -23,12 +22,12 @@ before_install:
2322

2423
cache:
2524
directories:
26-
- '$TRAVIS_BUILD_DIR/stunnel-5.54'
25+
- "$TRAVIS_BUILD_DIR/stunnel-5.54"
2726

2827
after_success: npm run coveralls
2928
before_script:
3029
# Add an IPv6 config - see the corresponding Travis issue
3130
# https://github.com/travis-ci/travis-ci/issues/8361
3231
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
33-
sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
32+
sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
3433
fi

0 commit comments

Comments
 (0)