File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616 - uses : actions/setup-go@v5
1717 with :
18- go-version : ' 1.26'
18+ go-version : ' 1.26.1 '
1919 cache : true
2020
2121 - name : Build
2424 - name : Test
2525 run : CGO_ENABLED=0 go test -count=1 -timeout 120s ./...
2626
27+ - name : Coverage
28+ run : |
29+ go test -coverprofile=coverage.out ./...
30+ go tool cover -func=coverage.out | tail -1
31+
2732 - name : Vet
2833 run : CGO_ENABLED=0 go vet ./...
Original file line number Diff line number Diff line change 3232
3333 - uses : actions/setup-go@v5
3434 with :
35- go-version : ' 1.25 '
35+ go-version : ' 1.26.1 '
3636 cache : true
3737
3838 - name : Build
Original file line number Diff line number Diff line change 1515
1616# Build artifacts
1717dist /
18+ coverage.out
1819* .test
1920
2021# IDE
Original file line number Diff line number Diff line change 22
33All notable changes to Yaad are documented here.
44
5+ ## [ 0.4.0] — 2026-05-08
6+
7+ ### Added
8+ - DAG branching with prefix-based memory lookup
9+ - LangGraph import/export for interoperability
10+ - MCP resources and prompts support
11+ - Backpressure logging for high-throughput ingestion
12+ - Query timeouts and configurable privacy levels
13+ - Response size limits for large recall results
14+
15+ ### Fixed
16+ - Compaction edge re-linking preserves graph structure
17+ - PII detection improvements (reduced false positives)
18+ - Intent scoring accuracy for ambiguous queries
19+ - Secret filter handles multi-line tokens
20+
21+ ---
22+
23+ ## [ 0.3.0] — 2026-05-01
24+
25+ ### Added
26+ - Tests for 8 previously untested packages
27+ - Tests for 6 MCP resource/prompt packages
28+ - Comprehensive integration test suite
29+
30+ ### Fixed
31+ - Backpressure handling under sustained write load
32+ - Query timeout enforcement in graph traversal
33+
34+ ---
35+
536## [ 0.1.0] — 2026-04-28
637
738### Initial Release
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ make build # verify it builds
1111make test # run tests
1212```
1313
14- ** Requirements:** Go 1.25 +. No CGO, no C compiler needed.
14+ ** Requirements:** Go 1.26 +. No CGO, no C compiler needed.
1515
1616## What to Work On
1717
You can’t perform that action at this time.
0 commit comments