Skip to content

Commit

Permalink
Docs: fix minimum required server version (#1007)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
robsdedude authored Dec 28, 2023
1 parent a8242c2 commit b230b37
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/neo4j/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,8 @@ class NotificationDisabledCategory(str, Enum):
PERFORMANCE = "PERFORMANCE"
DEPRECATION = "DEPRECATION"
GENERIC = "GENERIC"
#: Requires server version 5.14 or newer.
SECURITY = "SECURITY"
#: Requires server version 5.14 or newer.
#: Requires server version 5.13 or newer.
TOPOLOGY = "TOPOLOGY"


Expand Down

0 comments on commit b230b37

Please sign in to comment.