Skip to content

Commit 5e98300

Browse files
committed
exclude bolt 5.5, include 5.6
1 parent 5a7e842 commit 5e98300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/bolt-connection/src/bolt/handshake.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { alloc } from '../channel'
1919
import { newError } from 'neo4j-driver-core'
2020

2121
const BOLT_MAGIC_PREAMBLE = 0x6060b017
22-
const AVAILABLE_BOLT_PROTOCOLS = [5.7, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 4.4, 4.3, 4.2, 4.1, 4.0, 3.0]
22+
const AVAILABLE_BOLT_PROTOCOLS = [5.7, 5.6, 5.4, 5.3, 5.2, 5.1, 5.0, 4.4, 4.3, 4.2, 4.1, 4.0, 3.0] // bolt protocols the client supports, ordered by preference
2323
const DESIRED_CAPABILITES = 0
2424

2525
function version (major, minor) {

0 commit comments

Comments
 (0)