Skip to content

Commit 8293b47

Browse files
authored
Merge pull request #462 from ali-ince/1.7-upgrade-deps
Upgrade dependencies
2 parents b820128 + 9342370 commit 8293b47

File tree

178 files changed

+29661
-22407
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+29661
-22407
lines changed

.babelrc

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"presets": [
3-
"env"
3+
[
4+
"@babel/preset-env"
5+
]
46
],
5-
"plugins": ["transform-runtime"]
7+
"plugins": [
8+
"@babel/plugin-transform-runtime"
9+
]
610
}

.eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build
2+
docs
3+
lib
4+
node_modules

.eslintrc.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"parser": "babel-eslint",
3+
"env": {
4+
"browser": true,
5+
"es6": true,
6+
"node": true,
7+
"jasmine": true
8+
},
9+
"extends": "standard",
10+
"globals": {
11+
"Atomics": "readonly",
12+
"SharedArrayBuffer": "readonly"
13+
},
14+
"parserOptions": {
15+
"ecmaVersion": 6,
16+
"sourceType": "module"
17+
},
18+
"rules": {},
19+
"plugins": ["jasmine"]
20+
}

CONTRIBUTING.md

-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ If you're not already a member, sign up!
99

1010
We love our community and wouldn't be where we are without you.
1111

12-
1312
## Need to raise an issue?
1413

1514
Where you raise an issue depends largely on the nature of the problem.
@@ -34,7 +33,6 @@ Include as much information as you can in any request you make:
3433
- What errors are you seeing?
3534
- What solutions have you tried already?
3635

37-
3836
## Want to contribute?
3937

4038
If you want to contribute a pull request, we have a little bit of process you'll need to follow:
@@ -50,16 +48,13 @@ We can't guarantee that we'll accept pull requests and may ask you to make some
5048
Occasionally, we might also have logistical, commercial, or legal reasons why we can't accept your work but we'll try to find an alternative way for you to contribute in that case.
5149
Remember that many community members have become regular contributors and some are now even Neo employees!
5250

53-
5451
## Got an idea for a new project?
5552

5653
If you have an idea for a new tool or library, start by talking to other people in the community.
5754
Chances are that someone has a similar idea or may have already started working on it.
5855
The best software comes from getting like minds together to solve a problem.
5956
And we'll do our best to help you promote and co-ordinate your Neo ecosystem projects.
6057

61-
6258
## Further reading
6359

6460
If you want to find out more about how you can contribute, head over to our website for [more information](http://neo4j.com/developer/contributing-code/).
65-

ISSUE_TEMPLATE.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you simply want to get started or have a question on how to use a particular
99
[StackOverflow](http://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem.
1010
Make sure you have a look there too.
1111

12-
If you want to make a feature request, please prefix your issue title with `[Feature Request]` so that it is clear to us.
12+
If you want to make a feature request, please prefix your issue title with `[Feature Request]` so that it is clear to us.
1313
If you have a bug report however, please continue reading.
1414
To help us understand your issue, please specify important details, primarily:
1515

@@ -32,17 +32,22 @@ I got connection reset by peer errors.
3232
**Neo4j Version:** 3.4.10 Community
3333
**Neo4j Mode**: Single instance
3434
**Driver version**: JS driver 1.7.1
35-
**Operating System:** Ubuntu 16.10 on AWS
35+
**Operating System:** Ubuntu 16.10 on AWS
3636

3737
### Steps to reproduce
38+
3839
1. Start Neo4j on a AWS instance
3940
2. Run a query with the driver
4041
3. Put the driver idle for 2h
4142
4. Run another query
43+
4244
### Expected behavior
45+
4346
The second query shall run successfully
47+
4448
### Actual behavior
49+
4550
The client failed to run the second query with a `connection reset by peer` stacktrace.
46-
*attach the stacktrace*
51+
_attach the stacktrace_
4752
Meanwhile, in the server log, I found this stacktrace that happened at the same time when the driver failed.
48-
*attach the stacktrace*
53+
_attach the stacktrace_

0 commit comments

Comments
 (0)