Skip to content

Commit e8845eb

Browse files
committed
Apply post 1.18 release changes
1 parent 57a344d commit e8845eb

File tree

7 files changed

+14
-19
lines changed

7 files changed

+14
-19
lines changed

changelog.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,15 @@
1-
# Changes in 1.18
1+
# Changes in 1.19
22

33
## Breaking changes
44

5-
- Drop support for Python 3.9
65

76
## New features
87

8+
99
## Bug fixes
1010

11-
- Fixed a bug where `GraphDataScience` object created via `GraphDataScience.from_neo4j_driver` would also close the Neo4j driver object on `close()`. As sole ownership of the driver cannot be expected in this case, the user should close the driver object on their own.
12-
- Fixed a bug where `gds.<algo>.write.estimate` would fail for Aura Graph Analytics / GDS Sessions.
1311

1412
## Improvements
1513

16-
- Added retries to verifying connection and authentication of DB connection provided to `GdsSessions.getOrCreate`
17-
- AuraAPI `delete_instance` will no longer fail when receiving a code 410 (Already Exists)
18-
- It is no longer necessary to specify TLS certificates for Arrow when running on Windows
1914

2015
## Other changes
21-
22-
- Add support for PyArrow 21.0.0
23-
- Drop support for PyArrow 17.0
24-
- Support numpy 1.24.0
25-
- Add support for neo4j 6.0

doc/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: graph-data-science-client
22
title: Neo4j Graph Data Science Client
3-
version: '1.17'
3+
version: '1.18'
44
start_page: ROOT:index.adoc
55
nav:
66
- modules/ROOT/content-nav.adoc
77
asciidoc:
88
attributes:
9-
docs-version: '1.17'
9+
docs-version: '1.18'

doc/modules/ROOT/pages/installation.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ 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.19
21+
.1+<.^| >= 2.6, < 2.24
22+
.1+<.^| >= 3.10, < 3.13
23+
.1+<.^| >= 4.4.12, < 7.0.0
24+
2025
.1+<.^| 1.18
2126
.1+<.^| >= 2.6, < 2.24
2227
.1+<.^| >= 3.10, < 3.13

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.18-preview",
3+
"version": "1.19-preview",
44
"description": "Neo4j Graph Data Science Client",
55
"main": "server.js",
66
"scripts": {

doc/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ asciidoc:
5656
common-license-page-uri: https://neo4j.com/docs/license/
5757
operations-manual-base-uri: https://neo4j.com/docs/operations-manual/
5858
neo4j-docs-base-uri: https://neo4j.com/docs
59-
api-version: 1.17
59+
api-version: 1.18
6060
# User research promo
6161
page-ad-overline-link: https://p.consentkit.com/baf41f1b-7816-4e04-82a7-b4c6d93ddf19/?ref=gds-docs
6262
page-ad-title: Join the User Research panel

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.15', '1.16', '1.17']
13+
branches: ['1.15', '1.16', '1.17', '1.18']
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.18
58+
api-version: 1.19
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

src/graphdatascience/version.py

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

0 commit comments

Comments
 (0)