@@ -3,14 +3,18 @@ Neo4j Bolt Driver for Python
3
3
****************************
4
4
5
5
This repository contains the official Neo4j driver for Python.
6
- Each driver release (from 5.0 upwards) is built specifically to work with a
7
- corresponding Neo4j release, i.e. that with the same ``major.minor `` version
8
- number.
9
- Only the latest ``major.minor `` release of each ``major `` driver series
10
- receives patches and support.
11
- These drivers will also be compatible with the previous Neo4j LTS release as
12
- well as the very next release, although only the common set of features
13
- between the chosen driver and server versions will be available.
6
+
7
+ Starting with 5.0, the Neo4j Drivers will be moving to a monthly release
8
+ cadence. A minor version will be released on the last Friday of each month so
9
+ as to maintain versioning consistency with the core product (Neo4j DBMS) which
10
+ has also moved to a monthly cadence.
11
+
12
+ As a policy, patch versions will not be released except on rare occasions. Bug
13
+ fixes and updates will go into the latest minor version and users should
14
+ upgrade to that. Driver upgrades within a major version will never contain
15
+ breaking API changes.
16
+
17
+ See also: https://neo4j.com/developer/kb/neo4j-supported-versions/
14
18
15
19
See `Version Compatibility `_ for a compatibility matrix.
16
20
@@ -113,38 +117,6 @@ Using the Python Driver 1.7 and connecting to Neo4j 4.x with default connection
113
117
driver = GraphDatabase.driver(" neo4j://localhost:7687" , auth = (" neo4j" , " password" ), encrypted = False )
114
118
115
119
116
- Version Compatibility
117
- =====================
118
-
119
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
120
- | Server \\ Driver | 1.7 | 4.0 | 4.1 | 4.2 | 4.3 | *4.4 * | 5.0 | *5.1 * |
121
- +==================+=======+=======+=======+=======+=======+=======+=======+=======+
122
- | Neo4j 3.5 (EOL) | Yes | Yes | ? | ? | ? | ? | ? | ? |
123
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
124
- | Neo4j 4.0 (EOL) | Yes | Yes | Yes | Yes | Yes | Yes | ? | ? |
125
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
126
- | Neo4j 4.1 (EOL) | ? | Yes | Yes | Yes | Yes | Yes | ? | ? |
127
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
128
- | Neo4j 4.2 (EOL) | ? | ? | Yes | Yes | Yes | Yes | ? | ? |
129
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
130
- | Neo4j 4.3 | ? | ? | ? | Yes | Yes | Yes | ? | ? |
131
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
132
- | Neo4j 4.4 (LTS) | ? | ? | ? | ? | Yes | Yes | Yes | Yes |
133
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
134
- | Neo4j 5.0 (EOL) | ? | ? | ? | ? | ? | Yes | Yes | Yes |
135
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
136
- | Neo4j 5.1 | ? | ? | ? | ? | ? | ? | Yes | Yes |
137
- +------------------+-------+-------+-------+-------+-------+-------+-------+-------+
138
-
139
- Table as of Neo4j 5.1 and Python Driver 5.1 are the latest available versions.
140
-
141
- * *emphasized *: currently supported driver versions
142
- * Yes: supported combination, although only the common set of features
143
- between the chosen driver and server versions will be available.
144
- * ?: might work, untested, no support.
145
- * (blank): not working.
146
-
147
-
148
120
Other Information
149
121
=================
150
122
0 commit comments