Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8300fd5
chore: Add proptest regression data from test run
claude Dec 6, 2025
60ff81e
fix: Resolve property test failures with overflow handling
claude Dec 6, 2025
f1381e3
fix(cli): Resolve short option conflicts in clap argument definitions
claude Dec 6, 2025
e8f4c48
feat(core): Add database configuration persistence and fix CLI test
claude Dec 6, 2025
95b1d6e
fix(ruvLLM): Guard against edge cases in HNSW and softmax
claude Dec 6, 2025
c1294b7
feat(attention): Implement novel Lorentz Cascade Attention (LCA)
claude Dec 6, 2025
c46dc4a
feat(bench): Replace simulated Python benchmarks with real Rust bench…
claude Dec 9, 2025
ef54ee9
docs: Add honest documentation about capabilities and limitations
claude Dec 9, 2025
cce57de
fix: Address code review issues from gist analysis
ruvnet Dec 9, 2025
01487a6
feat(embeddings): Add pluggable embedding provider system for AgenticDB
ruvnet Dec 9, 2025
3b38361
chore: Bump version to 0.1.22 for crates.io publish
ruvnet Dec 9, 2025
5ab0a14
chore(npm): Bump all npm package versions to 0.1.22
ruvnet Dec 9, 2025
e21d6ab
chore: Bump version to 0.1.24
ruvnet Dec 9, 2025
409acac
chore: Bump version to 0.1.25 for sequential CI builds
ruvnet Dec 9, 2025
1716acf
chore(npm): Publish v0.1.25 with updated native binaries
ruvnet Dec 9, 2025
e7ed029
feat(embeddings): Add local embedding generation support via fastembe…
ruvnet Dec 9, 2025
9828b35
ci: Switch darwin-x64 builds from macos-13 to macos-12
ruvnet Dec 9, 2025
e548fc6
fix(docker): Add Cargo.lock to fix dependency resolution
ruvnet Dec 9, 2025
b43a5dd
ci: Switch darwin-x64 to macos-14 runner for faster availability
ruvnet Dec 9, 2025
2c0b974
feat(npm): Add darwin-x64 (Intel Mac) support
ruvnet Dec 9, 2025
4519aa5
fix(postgres): Remove unimplemented GNN functions from SQL schema
ruvnet Dec 9, 2025
e987775
feat(postgres): Add HNSW index and embedding functions (v0.2.6)
ruvnet Dec 9, 2025
3e589d6
chore: Update Cargo.lock and documentation
ruvnet Dec 9, 2025
cca0386
Merge branch 'main' into fix/gist-code-review-issues
ruvnet Dec 9, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/build-attention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- host: ubuntu-22.04
target: aarch64-unknown-linux-gnu
platform: linux-arm64-gnu
- host: macos-13
- host: macos-14
target: x86_64-apple-darwin
platform: darwin-x64
- host: macos-14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-gnn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- host: ubuntu-22.04
target: aarch64-unknown-linux-gnu
platform: linux-arm64-gnu
- host: macos-13
- host: macos-14
target: x86_64-apple-darwin
platform: darwin-x64
- host: macos-14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-graph-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- host: ubuntu-22.04
target: aarch64-unknown-linux-gnu
platform: linux-arm64-gnu
- host: macos-13
- host: macos-14
target: x86_64-apple-darwin
platform: darwin-x64
- host: macos-14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
target: aarch64-unknown-linux-gnu
build: npm run build:napi -- --target aarch64-unknown-linux-gnu
platform: linux-arm64-gnu
- host: macos-13
- host: macos-14
target: x86_64-apple-darwin
build: npm run build:napi -- --target x86_64-apple-darwin
platform: darwin-x64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-router.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- host: ubuntu-22.04
target: aarch64-unknown-linux-gnu
platform: linux-arm64-gnu
- host: macos-13
- host: macos-14
target: x86_64-apple-darwin
platform: darwin-x64
- host: macos-14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-tiny-dancer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- host: ubuntu-22.04
target: aarch64-unknown-linux-gnu
platform: linux-arm64-gnu
- host: macos-13
- host: macos-14
target: x86_64-apple-darwin
platform: darwin-x64
- host: macos-14
Expand Down
Loading
Loading