Skip to content

Releases: uncharted-aske/bgraph

v0.3.2

27 Jul 15:16
22aef37
Compare
Choose a tag to compare
v0.3.2 Pre-release
Pre-release

Overview:

v0.3.2 focuses on performance and bug fix improvements associated with path queries added in v0.2.0. Mainly, improving CPU/memory consumption on path queries.

Changes:

  • Prevent re-suspending previously suspended Gremlin: #28
  • Computation/memory improvements to path queries: #32, #35

Considerations:

  • Backwards incompatible change have been included here. However, as this is pre-release only the minor version has been updated.

v0.2.0

15 Jun 14:18
ff96715
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

Overview:

The changes made in this minor bump are meant to enable n-hop path queries in bgraph.

Changes:

  • Modify the returned query results of bgraph so that they include the Gremlin's state
  • Add path tracking state to each Gremlin. Since state is returned in the query results a user can use each vertex stored as part of their results. For ex. path highlighting (give me the path between Vertex A and B)
  • Add suspend/unsuspend pipetypes: Suspending a Gremlin causes it to go through the remaining pipes without being modified (for example filters or traversals won't apply to suspended Gremlins) until an unsuspend pipe has been called.
  • Add repeat/start pipe: Repeat and start pipes allow a user to repeat a portion of the program as many times as they wish.

Considerations:

  • Backwards incompatible change has been added here. However, as this is pre-release only the minor version has been updated.