-
Notifications
You must be signed in to change notification settings - Fork 68
1.1 changelog
Zhen Li edited this page Dec 22, 2016
·
25 revisions
######Not yet released
- Added new routing for routing Cypher statements to a neo4j 3.1+ causal cluster #115 #128
- Added support of bookmark which is used to ensure visibility of transaction result on read_only servers in a causal cluster #120
- Default to turn encryption on for all connections and trust all certificates when establishing TLS connections with a neo4j server #113 #118
- Made
Result.Summarynot throwing exception if not at the end of record stream, but buffering all record to access the result summary immediately #123 - Fixed the bug where the result summary is not accessible when a Cypher statement failed to run due to errors #123
- Added server info inside result summary for accessing version and address of the server where the Cypher statement was executed #119 #122
- Fixed the bug where if we forget to consume a transaction in using with resources, then the transaction is left without being rolled back if failed to commit #124
- Disallow using driver after driver is disposed #130
- .NET Core support and TLS 1.2 support #103
- Added
Session#Resetto stop long running statements in the current session #108 - Exposes
resultAvailableAfterandresultConsumedAfteronResultSummaryandserveronSession#112 - Supported for custom auth-tokens #107
- Buffering result that is not fully consumed in time in session [#97] (https://github.com/neo4j/neo4j-dotnet-driver/pull/97)
- Fixed a bug in
ConfigBuilderwhere the config returned byConfigBuilderwill not auto fill default values for the configs that are not changed #94, [#102] (https://github.com/neo4j/neo4j-dotnet-driver/pull/102) - Be able to run more statements in the same session after
ClientErrorandTransientError#95 - Changed the message sync time with the server by sending
INITmessage eagerly and sendingRESETmessage when putting back to pool rather than getting from the pool #95
- Streaming records for shorter response time and better memory management #96