Release v0.13.0 - #14
Merged
Merged
Conversation
## What's New - Add manifest-backed compound secondary indexes over ordered node and edge field tuples. - Add tuple-capable secondary-index sidecars for multi-field and metadata-field declarations. - Add compound-aware planning for equality prefixes, bounded IN expansion, and equality-prefix-plus-one-range shapes. - Make function calls the only GQL metadata surface while dot access is always user properties. ## Improvements - Share secondary-index lifecycle across single-field and compound declarations. - Align GQL expression metadata and property-index DDL on one metadata resolver. - Support metadata SET targets through function l-values. ## Documentation - Update README, getting-started, API reference, architecture overview, GQL docs, connector docs, examples, and changelog for v0.13.0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
[0.13.0] - 2026-06-13
Breaking Changes
Compound Secondary Index APIs
ensure_*_property_index,drop_*_property_index, and list APIs now use one unified declaration shape for single-field and compound secondary indexes instead of the older(label, property, kind)signature.GQL Metadata Syntax
elementKey(n),updatedAt(n),weight(r),validFrom(r),validTo(r),id(startNode(r)), andid(endNode(r)).n.updated_at,n.key,r.valid_from, andn.weightnow read ordinary properties with those names instead of engine metadata.elementKey. Node creation and keyed merge maps use{elementKey: ...}for the node key;keyis now an ordinary property name.startNode,endNode,nodeIds, andedgeIds; scalar conversion helpers now usetoString,toInteger, andtoFloat.Added
Compound Secondary Indexes
INexpansion, and equality-prefix-plus-one-range query shapes, with final visible-record verification preserved for correctness.CREATE/DROP/SHOW PROPERTY INDEXES, explain output, and benchmark scenarios now cover compound declarations.Changed
Secondary Index Lifecycle
GQL Metadata Model
SET weight(n) = ...,SET weight(r) = ...,SET validFrom(r) = ..., andSET validTo(r) = ...route to the existing metadata mutation paths, includingMERGE ON CREATE SETandMERGE ON MATCH SET.elementKey,weight,validFrom, andvalidTothrough native metadata filters where valid, while snake_case keys remain ordinary properties.Fixed