Skip to content

Commit 0d3e6a4

Browse files
committed
Forked off 1.1 branch and pointed it to test against neo4j 3.1
1 parent 3a432ca commit 0d3e6a4

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Neo4j Driver for Javascript
22

3-
An alpha-level database driver for Neo4j 3.0.0+.
3+
An alpha-level database driver for Neo4j 3.1.0+.
44

55
Note: This is in active development, the API is not stable. Please try it out and give us feedback, but expect things to break in the medium term!
66

gulpfile.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ gulp.task('watch-n-test', ['test-nodejs'], function () {
166166
return gulp.watch(['src/**/*.js', "test/**/*.js"], ['test-nodejs'] );
167167
});
168168

169-
var neo4jLinuxUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.0.0-NIGHTLY-unix.tar.gz';
170-
var neo4jWinUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.0.0-NIGHTLY-windows.zip';
171-
var neo4jHome = './build/neo4j-enterprise-3.0.0';
169+
var neo4jLinuxUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.1.0-NIGHTLY-unix.tar.gz';
170+
var neo4jWinUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.1.0-NIGHTLY-windows.zip';
171+
var neo4jHome = './build/neo4j-enterprise-3.1.0';
172172
var isWin = /^win/.test(process.platform);
173173

174174
gulp.task('download-neo4j', function() {
@@ -182,7 +182,7 @@ gulp.task('download-neo4j', function() {
182182
else {
183183
return download(neo4jLinuxUrl)
184184
.pipe(decompress({strip: 1}))
185-
.pipe(gulp.dest(neo4jHome));
185+
.pipe(gulp.dest(neo4jHome))1
186186
}
187187
}
188188
});

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "neo4j-driver",
3-
"version": "0.0.0-dev",
4-
"description": "Connect to Neo4j 3.0.0 and up from JavaScript",
3+
"version": "1.1.0-dev",
4+
"description": "Connect to Neo4j 3.1.0 and up from JavaScript",
55
"author": "Neo Technology Inc.",
66
"license": "Apache-2.0",
77
"repository": {

test/internal/tls.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe('trust-signed-certificates', function() {
5656
driver = neo4j.driver("bolt://localhost", neo4j.auth.basic("neo4j", "neo4j"), {
5757
encrypted: true,
5858
trust: "TRUST_SIGNED_CERTIFICATES",
59-
trustedCertificates: ["build/neo4j-enterprise-3.0.0/conf/ssl/snakeoil.cert"]
59+
trustedCertificates: ["build/neo4j-enterprise-3.1.0/conf/ssl/snakeoil.cert"]
6060
});
6161

6262
// When
@@ -132,4 +132,4 @@ describe('trust-on-first-use', function() {
132132
driver.close();
133133
}
134134
});
135-
});
135+
});

0 commit comments

Comments
 (0)