Releases: warpforge/warpgrapher
Releases · warpforge/warpgrapher
Version 0.11.2
- Updated Juniper version to fix CVE-2022-31173.
Version 0.11.1
- Fixes a bug that prevented querying based on the properties of a destination multiple hops from the source.
Version 0.11.0
- Added support for returning sorted results
Version 0.10.4
- Added the remaining relationship CRUD operations to the
EventFacade
. - Removed auto-generation of top level query and mutation operations for node properties with a custom resolver.
Version 0.10.3
Fixes a bug that caused an error in setting up a Warpgrapher engine with relationship properties.
Version 0.10.2
- Added a pass-through to the Event Facade to expose the transaction's execute_query function. This allows event handlers to make direct database queries and bypass other event hooks which would affect a traditional warpgrapher query.
Version 0.10.1
- Fixed a bug that tried to close non-existent transactions after pre- and post-request hooks.
- Fixed a bug that opened a Gremlin transaction in the transaction struct creation, rather than when
begin
was called.
Version 0.10.0
- Flattened the
props
bag on relationship properties, such that properties are directly on the relationship. - Fixed a bug that failed to put recursive node and relationship reads through the pre-read and post-read filters using the event handling framework.
- Implemented a solution for the N+1 problem of recursive relationship and node loading.
- Changed properties to default to being required, with the feature available to configure them to be optional.
- Removed support for the flag to inline parameters in Gremlin queries. All queries will be parameterized now. A consequence of this is that the Cypher mode of operation must be used when working with AWS Neptune.
Version 0.9.1
- Update and expanded the Warpgrapher book documentation.
- Fixed a bug in Gremlin query generation for relationship reads. If multiple types had relationships with the same name, relationship read operations would return all relationships with that name, regardless of source node type. The bug fix now correctly filters based on the source node type for the relationship.
Version 0.9.0
This release includes additional improvements made to the event handler framework, as well as session support for Gremlin.