Skip to content

Commit 83e5d02

Browse files
committed
Bump client version to 1.13
post 1.12 release
1 parent 10b7202 commit 83e5d02

File tree

7 files changed

+15
-23
lines changed

7 files changed

+15
-23
lines changed

changelog.md

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
1-
# Changes in 1.12
1+
# Changes in 1.13
22

33

44
## Breaking changes
55

66

77
## New features
88

9-
* Add Neo4j python driver rust extension as a new optional dependency.
10-
* Support creating GDS Sessions for self-managed Neo4j DBMS.
11-
* `GdsSessions.get_or_create` requires a new parameter `cloud_location` to specify where the session will be created.
12-
* Return the id of a session and allow deletion by id or name.
13-
* Add `ttl` parameter to `GdsSessions.get_or_create` to control if and when an unused session will be automatically deleted.
14-
* Add concurrency control for remote write-back procedures using the `concurrency` parameter.
15-
* Add progress logging for remote write-back when using GDS Sessions.
16-
* Added a flag to GraphDataScience and AuraGraphDataScience classes to disable displaying progress bars when running procedures.
179

1810
## Bug fixes
1911

2012

2113
## Improvements
2214

23-
* The database connection is now validated before a session is created.
24-
* Retry authentication requests.
25-
* Warn if client does not support given GDS server version as defined at https://neo4j.com/docs/graph-data-science-client/current/installation/#python-client-system-requirements.
2615

2716
## Other changes

doc/antora.yml

+2-2
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.12-preview'
3+
version: '1.13-preview'
44
start_page: ROOT:index.adoc
55
nav:
66
- modules/ROOT/content-nav.adoc
77
asciidoc:
88
attributes:
9-
docs-version: '1.12'
9+
docs-version: '1.13'

doc/modules/ROOT/pages/installation.adoc

+5-2
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.13
21+
.1+<.^| >= 2.6, < 2.11
22+
.4+<.^| >= 3.8, < 3.13
23+
.3+<.^| >= 4.4.12, < 6.0.0
24+
2025
.1+<.^| 1.12
2126
.1+<.^| >= 2.6, < 2.11
22-
.3+<.^| >= 3.8, < 3.13
23-
.2+<.^| >= 4.4.12, < 6.0.0
2427

2528
.1+<.^| 1.11
2629
.1+<.^| >= 2.6, < 2.10

doc/package.json

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

doc/preview.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ urls:
2929
antora:
3030
extensions:
3131
- require: "@neo4j-antora/antora-modify-sitemaps"
32-
sitemap_version: '1.12-preview'
32+
sitemap_version: '1.13-preview'
3333
sitemap_loc_version: 'current'
3434
move_sitemaps_to_components: true
3535

@@ -63,4 +63,4 @@ asciidoc:
6363
common-license-page-uri: https://neo4j.com/docs/license/
6464
operations-manual-base-uri: https://neo4j.com/docs/operations-manual/
6565
neo4j-docs-base-uri: https://neo4j.com/docs
66-
api-version: 1.12-preview
66+
api-version: 1.13-preview

doc/publish.yml

+3-3
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.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11', 'main']
11+
branches: ['1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11', '1.12', 'main']
1212
include: doc/
1313
exclude:
1414
- '!**/_includes/*'
@@ -27,7 +27,7 @@ antora:
2727
extensions:
2828
- require: "@neo4j-antora/antora-modify-sitemaps"
2929
# the current stable version
30-
sitemap_version: '1.11'
30+
sitemap_version: '1.12'
3131
sitemap_loc_version: current
3232
move_sitemaps_to_components: 'true'
3333

@@ -61,4 +61,4 @@ asciidoc:
6161
common-license-page-uri: https://neo4j.com/docs/license/
6262
operations-manual-base-uri: https://neo4j.com/docs/operations-manual/
6363
neo4j-docs-base-uri: https://neo4j.com/docs
64-
api-version: 1.12-preview
64+
api-version: 1.13-preview

graphdatascience/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.12"
1+
__version__ = "1.13"
22
__min_server_version__ = "2.6.0" # matches installation.adoc

0 commit comments

Comments
 (0)