-
Notifications
You must be signed in to change notification settings - Fork 157
1.1 changelog
Zhen Li edited this page Nov 3, 2016
·
37 revisions
###1.1.0-? Not yet released
###1.1.0-M07
- Close all connections on
driver.close()
#252 - Made it configurable to retry a few times with a delay after fatal routing failures #259 #264
- Added the
Driver.transact
method to remove the boilerplate code required to perform retries after receiving aSessionExpiredException
#265 - Improvements on trust mode. Introduced
TRUST_ALL_CERTIFICATES
as the default trust mode, deprecatedTRUST_ON_FIRST_USE
and removedENCRYPTION_NON_LOCAL
. AlsoTRUST_ON_FIRST_USE
is disallowed withbolt+routing
scheme #268
###1.1.0-M05
- Minor code refactoring.
###1.1.0-M04 Bug fixes for discovery and routing:
- Fixed the bug where a server is not removed when failing on session acquisition #241
- Fixed the bug where a server is not removed when failing to write on the server #243
- Fixed the bug where the same connection would be put back in the pool twice after discovery #244
###1.1.0-M03
- More friendly error when user tries to WRITE in a READ session #234
###1.1.0-M02
New features:
- Introduced a new Bolt protocol
bolt+routing://host:port
for routing cypher statements to a 3.1+ Neo4j cluster directly via the Bolt driver #227 #229 #232 - Introduced
Bookmarking
for read your own writes in a 3.1+ Neo4j cluster #223 - Added
session#reset
to stop long running statements in the current session #210, #211, #231 - Replaced
TRUST_SIGNED_CERTIFICATES
withTRUST_SYSTEM_CA_SIGNED_CERTIFICATES
and/orTRUST_CUSTOM_CA_SIGNED_CERTIFICATES
#218 - Supported for custom auth-tokens #221
- Exposed
resultAvailableAfter
andresultConsumedAfter
onResultSummary
andserver
onSession
#219 - Added new API for accessing records and mapped values with a default value #172
Bug fixes:
- Better handling of
BUFFER_OVERFLOW
on writes for TLS connections #177 - Reduce long time memory usage #207
- Tidied up format of log messages [#204] (https://github.com/neo4j/neo4j-java-driver/pull/204)
- Prefer
Map
overiterable
inValues#value
method #208
###1.1.0-M01