Skip to content

Releases: neo4j/neo4j-java-driver

1.0.0-M05

16 Mar 10:42
Compare
Choose a tag to compare
1.0.0-M05 Pre-release
Pre-release
  • Improved the way to configure encryption by introducing EncryptionLevel and TrustStrategy to replace the old TlsEnabled and TlsAuthConfig.
  • Introduced auth capabilities where on the creation of the driver, authentication credentials could be passed to the driver so that the server would be able to authenticate the driver user.
  • Change ResultCursor to Iterator
  • Improved discoverability of API
  • Severity level is now exposed on Notifications
  • Summary#updateStatistics renamed to Summary#counters
  • StatementResult#summarize renamed to StatementResult#consume

1.0.0-M04

18 Feb 15:07
Compare
Choose a tag to compare
1.0.0-M04 Pre-release
Pre-release

The main changes in this release are listed as follows:

  • Added support for streaming, which means that we no longer need to wait for the whole result of a Cypher statement to fully streamed back before visiting the first record in the result. Instead, we now could immediately visit the records that already arrive without blocking for the last record in the result to arrive!
  • Added variants of ResultCursor#single and ResultCursor#first for simplified access and added support to call first and single multiple times.
  • Renamed ConfigBuilder#withConnectionPoolSize to ConfigBuilder#withMaxSessions.

1.0.0-M02

28 Dec 13:48
Compare
Choose a tag to compare
1.0.0-M02 Pre-release
Pre-release

The main changes in this milestone release are listed as follows:

  • Upgraded Bolt protocol implementation to support new preamble in handshake
  • API modifications based on M01 feedback around Values, Result and Type interfaces
  • Move API into v1 package to allow future releases with multiple API versions in parallel
  • Few bug fixes.

See more details at https://github.com/neo4j/neo4j-java-driver/wiki/1.0-changelog

1.0.0-M01

23 Nov 11:37
Compare
Choose a tag to compare
1.0.0-M01 Pre-release
Pre-release
Merge pull request #74 from neo4j/fix-null-stats

Return an empty stats if no stat is included in summary