Skip to content

Commit f84f825

Browse files
committed
Merge branch '6.x' into rust-fun
2 parents 0f656ce + c4273cf commit f84f825

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ def generate_tc_config(
120120
# LTS version
121121
("5.26", True, True, "neo4j", 0),
122122
# Bolt 6.0
123-
# TODO: uncomment as soon as GA
124-
# ("2025.07", True, True, "neo4j", 0),
123+
# TODO: uncomment/update server version as soon as bolt 6.0 is GA
124+
# ("2025.08", True, True, "neo4j", 0),
125125
)
126126
]
127127
configurations += [

tests/neo4j/shared.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def supports_multi_db(self):
138138
@property
139139
def max_protocol_version(self):
140140
version = self.parsed_version()
141-
if version >= (2025, 7):
142-
return 6, 0
141+
# if version >= (2025, 8):
142+
# return 6, 0
143143
if version >= (5, 26):
144144
return 5, 8
145145
if version >= (5, 23):

0 commit comments

Comments
 (0)