Skip to content

Commit 4d1e3fd

Browse files
committed
Update version to 1.18a1
1 parent 31241ea commit 4d1e3fd

File tree

5 files changed

+10
-15
lines changed

5 files changed

+10
-15
lines changed

changelog.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
1-
# Changes in 1.17
1+
# Changes in 1.18
22

33
## Breaking changes
44

55
## New features
66

7-
- `sessions.get_or_create()` now supports passing additional configuration options for the Arrow Flight Client
8-
97

108
## Bug fixes
119

12-
- Fix reporting error based on http responses from the Aura-API with an invalid JSON body. Earlier the client would report JSONDecodeError instead of showing the actual issue.
13-
- Fixed a bug where retryable queries wouldnt work with bookmarks.
14-
- Fixed a bug where `GdsSession.get_or_create` could not verify the connection to the database if the `neo4j` database would not present.
1510

1611
## Improvements
1712

18-
- `GraphDataScience::run_query` now supports setting the `mode` of the query to be used for routing. Previously queries would always route the leader of the cluster, assuming write mode.
19-
- `GraphDataScience::run_query` now support setting `retryable` to enable a retry-mechanism for appropriate errors. This requires `neo4j>=5.5.0`.
20-
2113

2214
## Other changes

doc/modules/ROOT/pages/installation.adoc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ The Python client supports the following versions of the other three components:
1717
[opts=header, cols="m,m,m,m"]
1818
|===
1919
| Python Client | GDS version | Python version | Neo4j Python Driver version
20+
.1+<.^| 1.18
21+
.1+<.^| >= 2.6, < 2.21
22+
.6+<.^| >= 3.9, < 3.13
23+
.8+<.^| >= 4.4.12, < 6.0.0
24+
2025
.1+<.^| 1.17
2126
.1+<.^| >= 2.6, < 2.21
22-
.5+<.^| >= 3.9, < 3.13
23-
.7+<.^| >= 4.4.12, < 6.0.0
2427

2528
.1+<.^| 1.16
2629
.1+<.^| >= 2.6, < 2.19

doc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph-data-science-client",
3-
"version": "1.17-preview",
3+
"version": "1.18-preview",
44
"description": "Neo4j Graph Data Science Client",
55
"main": "server.js",
66
"scripts": {

doc/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ content:
1010
start_path: doc
1111
# Includes previous version and current.
1212
# Does not include preview (main) as it is no longer necessary.
13-
branches: ['1.14', '1.15', '1.16']
13+
branches: ['1.15', '1.16', '1.17']
1414
include: doc/
1515
exclude:
1616
- '!**/_includes/*'
@@ -55,7 +55,7 @@ asciidoc:
5555
common-license-page-uri: https://neo4j.com/docs/license/
5656
operations-manual-base-uri: https://neo4j.com/docs/operations-manual/
5757
neo4j-docs-base-uri: https://neo4j.com/docs
58-
api-version: 1.17
58+
api-version: 1.18
5959
# User research promo
6060
page-ad-overline-link: https://p.consentkit.com/baf41f1b-7816-4e04-82a7-b4c6d93ddf19/?ref=gds-docs
6161
page-ad-title: Join the User Research panel

graphdatascience/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.17"
1+
__version__ = "1.18a1"
22
__min_server_version__ = "2.6.0" # matches installation.adoc

0 commit comments

Comments
 (0)