Skip to content

Releases: neo4j-php/neo4j-php-client

Bugfix No SSL on bolt

23 Jun 11:06
Compare
Choose a tag to compare

2.0.1 shed light on another small bug when using the deprecated bolt methods on the client builder while not connecting via SSL. This has been fixed

Minor bugfixes and corrected some typing

23 Jun 10:49
Compare
Choose a tag to compare
  • bugfix when connecting over SSL with bolt
  • fixed type error when working with clusters on v3.5
  • made all collections immutable

Version 2.0

18 Jun 12:48
ffad7fe
Compare
Choose a tag to compare
  • Added OGM as default result format
  • Updated API and architecture to be in line with official drivers
  • Transaction functions
  • More tests

Empty arrays as parameters

11 Apr 15:24
Compare
Choose a tag to compare

Empty arrays now represent an empty list instead of an empty map in cypher.

Small bugfix

22 Mar 22:16
c93abd8
Compare
Choose a tag to compare

Fixed a bug when a database name was provided which shared the same name as a built-in PHP function

Autorouting for HTTP

17 Feb 16:41
Compare
Choose a tag to compare
  • Autorouting is now available for all connections.
  • Improved testing
  • Improved error handling over HTTP connections

Auto routing for clusters

08 Feb 20:37
Compare
Choose a tag to compare
  • auto-routing is now available for clusters over a bolt connection
  • documentation includes auto-routing examples

Bugfixes and testing

22 Jan 21:03
efc38fc
Compare
Choose a tag to compare
  • Removed the superfluous step of translating hostname to IP when opening a bolt connection
  • Improved test coverage

Added ssl context options

22 Jan 17:06
264893c
Compare
Choose a tag to compare

SSL context options can now be provided when using a bolt connection. An example of this can be found here:

$client = ClientBuilder::create()
    ->addBoltConnection('main', 'my-bolt-connection@somewhereinthecloud', BoltInjections::create()->withSslContextOptions([ 
          'verify_peer' => true,
          'allow_self_signed' => true
    ])
    ->build();

Bugfixes

19 Jan 09:58
Compare
Choose a tag to compare
  • Added proper translation of neo4j relationships to result set
  • Upgraded to stefanak/bolt 2.1
  • Increased test coverage