-
Notifications
You must be signed in to change notification settings - Fork 69
1.0 changelog
Jacob Hansson edited this page Mar 21, 2016
·
19 revisions
###1.0.0-RC2 ######Not yet released
###1.0.0-RC1
- Entity equality is now based solely on identity. 326e457
- Path equality is now based on order and entity equality 326e457
###1.0.0-M03
- A few API improvements to make it simpler to access the statement result:
- Made the Result API (previous
ResultCursor
, nowStatementResult
) to be enumerable so that now the result could be put in a foreach loop directly. a44d80 - Removed a few redundant fields in Result API such as
AtEnd
andPosition
. While Added new methods such asPeek
,Single
,Consume
to help to enumerate over the result easier. a44d80 - Improved the way to access node and relationship properties by adding
node[x]
andrelationship[x]
which is a shorten version ofnode.Properties[x]
andrelationship.Properties[x]
50eae3 - Replaced
IIdentity
type used in node and relationship types with a simplelong Id
field. a87e32
- Added the option to create a driver with authentication credentials for the server to authenticate the driver user. 7950ac
###1.0.0-M02
- Added the ability to visit the arrived records immediately without being blocked by the whole result to be fully streamed back. [cf79381] (https://github.com/neo4j/neo4j-dotnet-driver/commit/cf79381)
- Added session pool to buffer the sessions that are previously but not current used for future reuse directly. [767371a] (https://github.com/neo4j/neo4j-dotnet-driver/commit/767371a), 655921d, 934c855, 8040442
- Refined API docs and re-structured some interfaces and classes into internal use only. c8adfdb
###1.0.0-M01
- The first release of .NET driver! It provides all the basic features to connect to a 3.0+ Neo4j database and run Cypher statements over the BOLT protocol.