Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,73 @@
# Changelog

## v0.4.4 — 2026-05-17

### coordinode-core
## [0.4.4](https://github.com/structured-world/coordinode/compare/v0.4.3...v0.4.4) - 2026-05-17

#### Added

- *(triggers)* storage layout + DDL executors + probe helper (R190 part 2)

#### Documentation

- *(triggers)* scrub internal task / ADR references + SHOW filter bug fix

### coordinode-embed
## [0.4.4](https://github.com/structured-world/coordinode/compare/v0.4.3...v0.4.4) - 2026-05-17

#### Added

- *(triggers)* expand BEFORE COMMIT firing to edge SET/MERGE/DELETE
- *(triggers)* BEFORE COMMIT firing on SET / DELETE / CREATE-edge
- *(triggers)* BEFORE COMMIT firing on node CREATE (R191 first cut)
- *(triggers)* validate body source at DDL time + WITH-passthrough coverage
- *(triggers)* storage layout + DDL executors + probe helper (R190 part 2)
- *(cypher)* trigger DDL grammar + AST + parser + L1/L2 cycle tracking (R190 part 1)

#### Documentation

- *(triggers)* scrub internal task / ADR references + SHOW filter bug fix

#### Fixed

- *(triggers)* MERGE NODES fires source DELETE + target UPDATE + cascade
- *(triggers)* REMOVE / UPSERT ON CREATE / DETACH DOCUMENT firing
- *(triggers)* fire DELETE triggers from ATTACH DOCUMENT cascade path
- *(triggers)* tighten edge UPDATE firing + cover temporal/MERGE/docs
- *(executor)* propagate variable-bound property columns through WITH projection

#### Testing

- *(triggers)* BEFORE COMMIT CREATE — multi-label, $after Map, multi-trigger
- WITH passthrough composability + disabled-trigger persistence + empty-body reject

### coordinode-query
## [0.4.4](https://github.com/structured-world/coordinode/compare/v0.4.3...v0.4.4) - 2026-05-17

#### Added

- *(triggers)* expand BEFORE COMMIT firing to edge SET/MERGE/DELETE
- *(triggers)* BEFORE COMMIT firing on SET / DELETE / CREATE-edge
- *(triggers)* BEFORE COMMIT firing on node CREATE (R191 first cut)
- *(triggers)* validate body source at DDL time + WITH-passthrough coverage
- *(triggers)* storage layout + DDL executors + probe helper (R190 part 2)
- *(cypher)* trigger DDL grammar + AST + parser + L1/L2 cycle tracking (R190 part 1)

#### Documentation

- *(triggers)* scrub internal task / ADR references + SHOW filter bug fix

#### Fixed

- *(triggers)* MERGE NODES fires source DELETE + target UPDATE + cascade
- *(triggers)* REMOVE / UPSERT ON CREATE / DETACH DOCUMENT firing
- *(triggers)* fire DELETE triggers from ATTACH DOCUMENT cascade path
- *(triggers)* tighten edge UPDATE firing + cover temporal/MERGE/docs
- *(executor)* propagate variable-bound property columns through WITH projection

---

## v0.4.3 — 2026-05-17

### coordinode-core
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
]

[workspace.package]
version = "0.4.3"
version = "0.4.4"
edition = "2021"
rust-version = "1.90"
license = "AGPL-3.0-only"
Expand Down
Loading