Skip to content

Latest commit

 

History

History
31 lines (15 loc) · 988 Bytes

changelog.md

File metadata and controls

31 lines (15 loc) · 988 Bytes

Changes in 1.8

Breaking changes

New features

  • New method gds.graph.cypher.project to project a graph using Cypher projection. More details can be found in the user guide.
  • Added new LastFM dataset through gds.graph.load_lastfm()

Bug fixes

  • Fixed a bug, where the graph object would list multiple graphs if the same name was used for graphs on different databases.

Improvements

  • Improved endpoint returning graphs to be used in with clauses. The expression with gds.graph.project(...)[0] as G can now be simplified to with gds.graph.project(...) AS G.
  • Improve the error message if GDS is not correctly installed on the server
  • Forward previously ignored Cypher warnings as Python warnings. This includes for instance deprecation warnings.
  • Make gds.graph.construct more robust by ignoring empty dataframes inside. This makes it less error-prone to construct nodes only graphs.

Other changes

  • Dropped Python 3.7 support which is EOL.