Skip to content

ValueError on invalid access_mode #1166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch '6.x' into errors/value-error-on-invalid-access-mode
  • Loading branch information
robsdedude authored May 9, 2025
commit 78a36ed87adf946ab355abe0043d7aa5f8e0ce4e
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,25 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
- Python 3.7, 3.8, and 3.9 support has been dropped.
- Remove deprecated package alias `neo4j-driver`. Use `pip install neo4j` instead.
- Remove `setup.py`. Please use a recent enough packaging/build tool that supports `pyproject.toml`
- Remove deprecated modules:
- `neo4j.conf`
- `neo4j.data`
- `neo4j.meta`
- `neo4j.packstream`
- `neo4j.routing`
- `neo4j.time.arithmetic`
- `neo4j.time.clock_implementation`
- `neo4j.time.hydration`
- `neo4j.time.metaclasses`
- `neo4j.work`
- `neo4j.work.query`
- `neo4j.work.summary`
- Remove deprecated exports from `neo4j`:
- `log`, `Config`, `PoolConfig`, `SessionConfig`, `WorkspaceConfig` (internal - no replacement)
- `SummaryNotificationPosition` (use `SummaryInputPosition` instead)
- Changed errors raised under certain circumstances
- `ConfigurationError` if the passed `auth` parameters is not valid (instead of `AuthError`)
- This improves the differentiation between `DriverError` for client-side errors and `Neo4jError` for server-side errors.
- `access_mode` configuration option
- `ValueError` on invalid value (instead of `ClientError`)
- Consistently check the value (also for non-routing drivers)
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.