Skip to content

Commit cbc7ed4

Browse files
committed
Post 1.16 release (main)
1 parent 1160664 commit cbc7ed4

File tree

7 files changed

+12
-23
lines changed

7 files changed

+12
-23
lines changed

changelog.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,10 @@
22

33
## Breaking changes
44

5-
- Drop support for PyArrow 16
6-
75
## New features
86

97
## Bug fixes
108

11-
- Fixed a bug where remote projections would fail when the database is clustered
12-
- Fixed a bug where the validation of gds.graph.project.cypher would fail when the return clause was not uppercase
13-
149
## Improvements
1510

16-
- Allow creating sessions of size `512GB`.
17-
- Allow passing additional parameters for the Neo4j driver connection to `GdsSessions.get_or_create(neo4j_driver_config={..})`
18-
- Add helper functions to create config objects from environment variables
19-
- `AuraApiCredentials::from_env`
20-
- `DbmsConnectionInfo::from_env`
21-
- Retry internal functions known to be idempotent. Reduces issues such as `SessionExpiredError`.
22-
- Add support for PyArrow 20
23-
- Add support for more advanced authentication in `DbmsConnectionInfo`. Allowing to pass `auth` of type `neo4j.Auth` instead of username + password.
24-
2511
## Other changes

doc/antora.yml

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

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.17
21+
.1+<.^| >= 2.6, < 2.19
22+
.5+<.^| >= 3.9, < 3.13
23+
.7+<.^| >= 4.4.12, < 6.0.0
24+
2025
.1+<.^| 1.16
2126
.1+<.^| >= 2.6, < 2.19
22-
.4+<.^| >= 3.9, < 3.13
23-
.6+<.^| >= 4.4.12, < 6.0.0
2427

2528
.1+<.^| 1.15
2629
.1+<.^| >= 2.6, < 2.18

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.16-preview",
3+
"version": "1.17-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.16-preview
59+
api-version: 1.17-preview
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
@@ -8,7 +8,7 @@ content:
88
- url: ../
99
edit_url: '{web_url}/tree/{refname}/{path}'
1010
start_path: doc
11-
branches: ['1.13', '1.14', '1.15', 'main']
11+
branches: ['1.14', '1.15', '1.16', 'main']
1212
include: doc/
1313
exclude:
1414
- '!**/_includes/*'
@@ -53,7 +53,7 @@ asciidoc:
5353
common-license-page-uri: https://neo4j.com/docs/license/
5454
operations-manual-base-uri: https://neo4j.com/docs/operations-manual/
5555
neo4j-docs-base-uri: https://neo4j.com/docs
56-
api-version: 1.16-preview
56+
api-version: 1.17-preview
5757
# User research promo
5858
page-ad-overline-link: https://p.consentkit.com/baf41f1b-7816-4e04-82a7-b4c6d93ddf19/?ref=gds-docs
5959
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.16"
1+
__version__ = "1.17a1"
22
__min_server_version__ = "2.6.0" # matches installation.adoc

0 commit comments

Comments
 (0)