Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
is already active.
- Remove deprecated `Record.__getslice__`. This magic method has been removed in Python 3.0.
If you were calling it directly, please use `Record.__getitem__(slice(...))` or simply `record[...]` instead.
- Slightly change `Neo4jError` and `ClientError`:
- Properties `message` and `code` are always a `str` (instead of `str | None`).
- Remove possibility to override/set `message` and `code` properties.
- Remove undocumented, internal methods `Neo4jError.hydrate`, `Neo4jError.invalidates_all_connections`,
and `Neo4jError.is_fatal_during_discovery`.
- Remove deprecated method `Neo4jError.is_retriable`.
Use `Neo4jError.is_retryable` instead.
- Change string representation of `Neo4jError` to include GQL error information.


## Version 5.28
Expand Down
Loading