Skip to content

Commit 0e924af

Browse files
committed
Update version
1 parent 083f363 commit 0e924af

File tree

7 files changed

+15
-26
lines changed

7 files changed

+15
-26
lines changed

changelog.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,16 @@
1-
# Changes in 1.13
1+
# Changes in 1.14
22

33

44
## Breaking changes
55

6-
* Drop support for Python `3.8` as its EOL
7-
* Drop support for PyArrow 14
8-
* Throw on duplicate node properties passed to `gds.graph.nodeProperties.stream` as this is seen as a bad input. If duplication was intended, this can be done on the Dataframe result.
9-
106

117
## New features
128

13-
* Add `GdsSessions::available_cloud_locations()` to return available locations for session creation.
14-
159

1610
## Bug fixes
1711

18-
* Fixed a bug for `gds.nodeProperties.stream()` where the result contained duplicate rows if `listNodeLabels=True` and `separate_property_columns=True` is given.
19-
2012

2113
## Improvements
2214

23-
* Inform about Session failures such as `Out of Memory`. `GdsSession::get_or_create` will fail and `GdsSessions::list_sessions` will return the errors in a new field along `errors`.
24-
* Improve error message around connection issues against Sessions.
25-
* Avoid a query getting stuck on fetching progress logging if the database is unavailable.
26-
2715

2816
## Other changes
29-
30-
* Added support for PyArrow 18

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

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.14
21+
.1+<.^| >= 2.6, < 2.14
22+
.2+<.^| >= 3.9, < 3.13
23+
.4+<.^| >= 4.4.12, < 6.0.0
24+
2025
.1+<.^| 1.13
2126
.1+<.^| >= 2.6, < 2.14
22-
.1+<.^| >= 3.9, < 3.13
23-
.3+<.^| >= 4.4.12, < 6.0.0
2427

2528
.1+<.^| 1.12
2629
.1+<.^| >= 2.6, < 2.11

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

doc/preview.yml

Lines changed: 2 additions & 2 deletions
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.13-preview'
32+
sitemap_version: '1.14-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.13-preview
66+
api-version: 1.14-preview

doc/publish.yml

Lines changed: 3 additions & 3 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.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11', '1.12', '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', '1.13', 'main']
1212
include: doc/
1313
exclude:
1414
- '!**/_includes/*'
@@ -57,8 +57,8 @@ asciidoc:
5757
# sectnums: true, removed so they are off by default
5858
# sectnumlevel: 3,
5959
experimental: ''
60-
copyright: 2023
60+
copyright: 2025
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.13-preview
64+
api-version: 1.14-preview

graphdatascience/version.py

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

0 commit comments

Comments
 (0)