You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Upcoming version is now named as `4.0.0` instead of `2.0.0` to better align with server versions.
14
-
- Reactive API (built on top of RxJS) is now available with 4.0 version server, which includes reactive protocol improvements.
15
-
- Session instances can now be acquired against a specific database against a multi-database server, which is available with 4.0 version server.
16
-
- A new `driver.verifyConnectivity()` method is introduced for connectivity verification purposes.
17
-
- Driver default configuration for `encrypted` is now `false` (meaning that driver will only attempt clear text connections by default), and when encryption is explicitly enabled the default trust mode is TRUST_SYSTEM_CA_SIGNED_CERTIFICATES which relies upon underlying system's certificate trust settings.
18
-
19
-
## Breaking Changes
20
-
21
-
- Driver API is moved from `neo4j.v1` to `neo4j` namespace.
22
-
-`driver#session()` method now makes use of object destructuring rather than positional arguments (see [Acquiring a Session](#acquiring-a-session) for examples).
23
-
-`session#close()` and `driver#close()` both now return `Promise`s and no more accept callback function arguments.
24
-
-`driver.onError` and `driver.onCompleted` callbacks are completely removed. Errors should be monitored on related code paths (i.e. through `Promise#catch`, etc.).
25
-
-`bolt+routing` scheme is now renamed to `neo4j`. `neo4j` scheme is designed to work work with all possible 4.0 server deployments, but `bolt` scheme is still available for explicit single instance connections.
13
+
- TODO
26
14
27
15
## Including the Driver
28
16
@@ -511,7 +499,7 @@ To run tests against "default" Neo4j version:
511
499
512
500
To run tests against specified Neo4j version:
513
501
514
-
./runTests.sh '-e 4.0.0'
502
+
./runTests.sh '-e 4.1.0'
515
503
516
504
Simple `npm test` can also be used if you already have a running version of a compatible Neo4j server.
517
505
@@ -520,6 +508,10 @@ the source code:
520
508
521
509
gulp watch-n-test
522
510
511
+
If the `gulp` command line tool is not available, you might need to install this globally:
512
+
513
+
npm install -g gulp-cli
514
+
523
515
### Testing on windows
524
516
525
517
To run the same test suite, run `.\runTest.ps1` instead in powershell with admin right.
0 commit comments