diff --git a/ChangeLog.md b/ChangeLog.md index 0b1623b1..850700e4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook. ## Upcoming +- Upgraded Neo4j Bolt driver to v5.x ([Link to PR](https://github.com/aws/graph-notebook/pull/682)) ## Release 4.5.2 (August 15, 2024) diff --git a/requirements.txt b/requirements.txt index 18f6b103..a26fe3d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ requests>=2.32.0,<=2.32.2 ipython>=7.16.1,<=8.10.0 ipykernel==5.3.4 ipyfilechooser==0.6.0 -neo4j>=4.4.9,<5.0.0 +neo4j>=5.0.0,<=5.23.1 rdflib==7.0.0 setuptools>=70.0.0,<=70.0.3 nbconvert>=6.3.0,<=7.2.8 diff --git a/setup.py b/setup.py index 40a88f26..1f3a704a 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def get_version(): 'botocore>=1.34.74', 'boto3>=1.34.74', 'ipython>=7.16.1,<=8.10.0', - 'neo4j>=4.4.9,<5.0.0', + 'neo4j>=5.0.0,<=5.23.1', 'rdflib==7.0.0', 'ipykernel==5.3.4', 'ipyfilechooser==0.6.0',