Skip to content

Commit b230b37

Browse files
authored
Docs: fix minimum required server version (#1007)
The notification category `TOPOLOGY` was introduced in Neo4j 5.13, not 5.14. The category `SECURITY` has existed since at least 5.7, which is the minimum required version for notification filtering.
1 parent a8242c2 commit b230b37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/neo4j/_api.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,8 @@ class NotificationDisabledCategory(str, Enum):
151151
PERFORMANCE = "PERFORMANCE"
152152
DEPRECATION = "DEPRECATION"
153153
GENERIC = "GENERIC"
154-
#: Requires server version 5.14 or newer.
155154
SECURITY = "SECURITY"
156-
#: Requires server version 5.14 or newer.
155+
#: Requires server version 5.13 or newer.
157156
TOPOLOGY = "TOPOLOGY"
158157

159158

0 commit comments

Comments
 (0)