@@ -57,7 +57,7 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
57
57
- Remove possibility to override/set ` message ` and ` code ` properties.
58
58
- Remove undocumented, internal methods ` Neo4jError.hydrate ` , ` Neo4jError.invalidates_all_connections ` ,
59
59
and ` Neo4jError.is_fatal_during_discovery ` .
60
- - Remove deprecated method ` Neo4jError.is_retriable ` .
60
+ - Remove deprecated method ` Neo4jError.is_retriable ` .
61
61
Use ` Neo4jError.is_retryable ` instead.
62
62
- Change string representation of ` Neo4jError ` to include GQL error information.
63
63
- Remove deprecated ` Record.__getslice__ ` . This magic method has been removed in Python 3.0.
@@ -69,7 +69,7 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
69
69
- Remove deprecated driver configuration option ` trust ` .
70
70
Use ` trusted_certificates ` instead.
71
71
- Remove the associated constants ` neo4j.TRUST_ALL_CERTIFICATES ` and ` neo4j.TRUST_SYSTEM_CA_SIGNED_CERTIFICATES ` .
72
- - Remove deprecated ` session.read_transaction ` and ` session.write_transaction ` .
72
+ - Remove deprecated ` session.read_transaction ` and ` session.write_transaction ` .
73
73
Instead, use ` session.execute_read ` and ` session.execute_write ` respectively.
74
74
- Make undocumented classes ` ResolvedAddress ` , ` ResolvedIPv4Address ` , and ` ResolvedIPv6Address ` private.
75
75
- Rework ` PreviewWarning ` .
@@ -109,9 +109,9 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
109
109
- Raise ` ConfigurationError ` instead of ignoring the routing context (URI query parameters) when creating a direct
110
110
driver ("bolt[ +s[ sc]] ://" scheme).
111
111
- Change behavior of closed drivers:
112
- - Raise ` DriverError ` on using the closed driver.
113
- - Calling ` driver.close() ` again is now a no-op.
114
- - No longer implicitly closing drivers and sessions in ` __del__() ` (finalizer/destructor).
112
+ - Raise ` DriverError ` on using the closed driver.
113
+ - Calling ` driver.close() ` again is now a no-op.
114
+ - No longer implicitly closing drivers and sessions in ` __del__() ` (finalizer/destructor).
115
115
Make sure to call ` .close() ` on them explicitly or use them in a ` with ` statement.
116
116
- Make ` Summary.summary_notifications ` a ` tuple ` instead of a ` list ` and type it with ` Sequence ` to signify that it
117
117
should be treated as immutable.
0 commit comments