From 98db460b85070da9ac9b762d947e8de4852eea90 Mon Sep 17 00:00:00 2001 From: MaxAake <61233757+MaxAake@users.noreply.github.com> Date: Thu, 8 May 2025 14:47:41 +0200 Subject: [PATCH 1/5] add non clustered 2025 tc config --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index b123e151..50d5baee 100644 --- a/main.py +++ b/main.py @@ -139,6 +139,7 @@ def generate_tc_config( ("5.dev", "5", True, False, "neo4j", 0), ("5.dev", "5", True, True, "neo4j", 90), # nightly build of official forwards-compatible version(s) + ("2025.dev", "2025", True, False, "neo4j", 0), ("2025.dev", "2025", True, True, "neo4j", 60), ) ] From ac5db557492a22f07d0221dc5cdc81c1d78ce39d Mon Sep 17 00:00:00 2001 From: Max Gustafsson <61233757+MaxAake@users.noreply.github.com> Date: Fri, 9 May 2025 12:52:22 +0200 Subject: [PATCH 2/5] Small whitespace fix Co-authored-by: Robsdedude --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 50d5baee..5f08a3b9 100644 --- a/main.py +++ b/main.py @@ -139,7 +139,7 @@ def generate_tc_config( ("5.dev", "5", True, False, "neo4j", 0), ("5.dev", "5", True, True, "neo4j", 90), # nightly build of official forwards-compatible version(s) - ("2025.dev", "2025", True, False, "neo4j", 0), + ("2025.dev", "2025", True, False, "neo4j", 0), ("2025.dev", "2025", True, True, "neo4j", 60), ) ] From cbae941af35e35d42e40936d1ce098de9db83b91 Mon Sep 17 00:00:00 2001 From: MaxAake <61233757+MaxAake@users.noreply.github.com> Date: Wed, 14 May 2025 08:37:04 +0200 Subject: [PATCH 3/5] test remove 2 unrelated runs --- main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.py b/main.py index 5f08a3b9..06af0d92 100644 --- a/main.py +++ b/main.py @@ -133,8 +133,6 @@ def generate_tc_config( # nightly build of official backwards-compatible version(s) ("4.4", "4.4", True, True, "neo4j", 60), # nightly build of matching version(s) - ("5.dev", "5", False, False, "bolt", 0), - ("5.dev", "5", False, False, "neo4j", 0), ("5.dev", "5", True, False, "bolt", 90), ("5.dev", "5", True, False, "neo4j", 0), ("5.dev", "5", True, True, "neo4j", 90), From 5b5580b958bb31cdc95c2675c454d776f3f18710 Mon Sep 17 00:00:00 2001 From: MaxAake <61233757+MaxAake@users.noreply.github.com> Date: Wed, 14 May 2025 09:14:58 +0200 Subject: [PATCH 4/5] readd 5.dev community --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 06af0d92..5f08a3b9 100644 --- a/main.py +++ b/main.py @@ -133,6 +133,8 @@ def generate_tc_config( # nightly build of official backwards-compatible version(s) ("4.4", "4.4", True, True, "neo4j", 60), # nightly build of matching version(s) + ("5.dev", "5", False, False, "bolt", 0), + ("5.dev", "5", False, False, "neo4j", 0), ("5.dev", "5", True, False, "bolt", 90), ("5.dev", "5", True, False, "neo4j", 0), ("5.dev", "5", True, True, "neo4j", 90), From c7f79dc94e2a8bed607c1768f088b534c59c220b Mon Sep 17 00:00:00 2001 From: MaxAake <61233757+MaxAake@users.noreply.github.com> Date: Tue, 28 Oct 2025 08:39:27 +0100 Subject: [PATCH 5/5] Reduce long_string length to verify that is the issue --- tests/neo4j/test_session_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/neo4j/test_session_run.py b/tests/neo4j/test_session_run.py index 971ae91e..659f38df 100644 --- a/tests/neo4j/test_session_run.py +++ b/tests/neo4j/test_session_run.py @@ -395,7 +395,7 @@ def test_fails_on_missing_parameter(self): @cluster_unsafe_test def test_long_string(self): - string = "A" * 2 ** 20 + string = "A" * 2 ** 15 query = "RETURN '{}'".format(string) for _ in range(6): session = self._driver.session("r")