|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [0.0.3] - [Unreleased] |
| 8 | +### Added (by [@ybaktir](https://github.com/ybaktir)) |
| 9 | +- CHANGELOG.md |
| 10 | +- nx.draw(G) |
| 11 | +- G.nodes |
| 12 | +- G.edges |
| 13 | +- G.clear() to delete all the data, acts similar to G.delete_all() |
| 14 | +- len(G) to display number of nodes |
| 15 | +- G.remove_node() |
| 16 | + |
| 17 | +### Changed (by [@ybaktir](https://github.com/ybaktir)) |
| 18 | +- reorganized the entire file structure to better separate the algorithms files from the graph files. |
| 19 | +- changed README.md with new figures, dependencies |
| 20 | +- all the $nodeLabel, $relationshipType params changed to $node_label and $relationship_type for better code readibility |
| 21 | +- updated G.load_got() to fix constraint errors |
| 22 | +- updated G.load_euroads() to fix constraint errors |
| 23 | +- updated G.load_twitter() to fix constraint errors |
| 24 | +- updated G.add_edge() to enable property assignment |
| 25 | +- updated G.add_node() to enable property assignment |
| 26 | + |
| 27 | + |
| 28 | +### Removed |
| 29 | +- No removals |
| 30 | + |
| 31 | +### Known Issues (by [@ybaktir](https://github.com/ybaktir)) |
| 32 | +- len(G) doesn't return the correct value, uses config restrictions |
| 33 | +- after G.load_got() and after nx.draw(G), some of the relationship labels don't show on the visualization |
| 34 | + |
| 35 | +## [0.0.2] - 2020-08-25 |
| 36 | +### Added (by [@ybaktir](https://github.com/ybaktir)) |
| 37 | +- G.delete_all() |
| 38 | +- G.load_got() |
| 39 | +- G.load_euroads() |
| 40 | +- G.load_twitter() |
| 41 | + |
| 42 | +### Changed (by [@ybaktir](https://github.com/ybaktir)) |
| 43 | +- All "apoc" based code is moved to Graph Data Science library aka "gds" since apoc is not supported by neo4j 4.x. |
| 44 | +- All {params} syntax moved to $params syntax since {params} no longer supported. |
| 45 | +- Updated README.md. |
| 46 | +- Updated the examples file. |
| 47 | + |
| 48 | +### Removed (by [@ybaktir](https://github.com/ybaktir)) |
| 49 | +- Removed functionality of harmonic centrality, average clustering as they are not supported by gds. |
| 50 | +- Removed test file as it was hard to maintain the code because of too many changes. The file will back in the future versions. |
0 commit comments