Skip to content

Upgrade dependencies #462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"presets": [
"env"
[
"@babel/preset-env"
]
],
"plugins": ["transform-runtime"]
"plugins": [
"@babel/plugin-transform-runtime"
]
}
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build
docs
lib
node_modules
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"node": true,
"jasmine": true
},
"extends": "standard",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {},
"plugins": ["jasmine"]
}
5 changes: 0 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ If you're not already a member, sign up!

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


## Need to raise an issue?

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


## Want to contribute?

If you want to contribute a pull request, we have a little bit of process you'll need to follow:
Expand All @@ -50,16 +48,13 @@ We can't guarantee that we'll accept pull requests and may ask you to make some
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.
Remember that many community members have become regular contributors and some are now even Neo employees!


## Got an idea for a new project?

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


## Further reading

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/).

13 changes: 9 additions & 4 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you simply want to get started or have a question on how to use a particular
[StackOverflow](http://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem.
Make sure you have a look there too.

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

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

### Steps to reproduce

1. Start Neo4j on a AWS instance
2. Run a query with the driver
3. Put the driver idle for 2h
4. Run another query

### Expected behavior

The second query shall run successfully

### Actual behavior

The client failed to run the second query with a `connection reset by peer` stacktrace.
*attach the stacktrace*
_attach the stacktrace_
Meanwhile, in the server log, I found this stacktrace that happened at the same time when the driver failed.
*attach the stacktrace*
_attach the stacktrace_
Loading