Commit graph

6 commits

Author SHA1 Message Date
rUv
d7ebdda502 chore: Bump version to 0.1.16 for npm package release
Updates all package versions and publishes native bindings:

## Version Updates
- Workspace Cargo.toml: 0.1.15 -> 0.1.16
- @ruvector/node: 0.1.15 -> 0.1.16
- @ruvector/gnn: 0.1.15 -> 0.1.16
- @ruvector/wasm: 0.1.2 -> 0.1.16
- ruvector-router-ffi: 0.1.15 -> 0.1.16
- ruvector-tiny-dancer-node: 0.1.15 -> 0.1.16

## Published Packages
- @ruvector/node-win32-x64-msvc@0.1.16
- @ruvector/node-darwin-x64@0.1.16
- @ruvector/node-linux-x64-gnu@0.1.16
- @ruvector/node-darwin-arm64@0.1.16
- @ruvector/node-linux-arm64-gnu@0.1.16
- @ruvector/gnn-linux-x64-gnu@0.1.16

## Build Artifacts
- Native .node bindings for linux-x64-gnu
- WASM package built (wasm-opt disabled for bulk memory compatibility)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 21:48:12 +00:00
rUv
3a8c14eefc feat: Add NAPI-RS npm packages for tiny-dancer and router
- Create @ruvector/tiny-dancer npm package with platform-specific bindings
- Create @ruvector/router npm package with VectorDb for semantic search
- Add NAPI-RS build configuration for both crates
- Add GitHub Actions workflows for multi-platform builds (linux, darwin, windows)
- Include TypeScript definitions and comprehensive tests
- Support local .node file loading for development

Platform support:
- linux-x64-gnu
- linux-arm64-gnu
- darwin-x64
- darwin-arm64
- win32-x64-msvc

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 05:55:06 +00:00
rUv
b81423ece7 docs: Add README files for all crates and update root README with crates table
- Add comprehensive README.md files for 13 crates with GitHub/ruv.io links
- Update root README with crates table showing all 25 published crates
- Add npm packages section with badges and install instructions
- All crates published to crates.io v0.1.2

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 18:15:05 +00:00
rUv
526b7adac1 chore: Update workspace version to 0.1.2 and simplify CI workflow
- Bump workspace version from 0.1.1 to 0.1.2
- Simplify build-native.yml workflow (remove duplicate graph build job)
- Update Cargo.lock with latest dependencies

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 17:43:34 +00:00
rUv
eef6778839 fix: Resolve CI build failures
- Format all Rust code with cargo fmt
- Generate Cargo.lock for security audit
- Add build:wasm script to graph-wasm package.json
- Update npm/package-lock.json

The CI was failing due to:
1. Rust code formatting check failures
2. Missing Cargo.lock file for cargo audit
3. Missing build:wasm script expected by graph-ci.yml workflow

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 15:25:47 +00:00
rUv
2b18b6985e fix: Fix case sensitivity bug preventing native module from loading
Critical fix for v0.1.7 that resolves native module loading failure.

Changes:
- Fixed case sensitivity: VectorDB → VectorDb in type checks
- Native module exports VectorDb (lowercase 'b')
- Code was checking for VectorDB (uppercase 'B')
- Re-export as VectorDB for API consistency
- Version bump: 0.1.6 → 0.1.7

This fix resolves the error:
"Native module loaded but VectorDB not found"

Related commits:
- Database pooling: already in storage.rs (commit 44ca725)
- Package name fixes: already applied (ruvector-core)

Next steps:
- Rebuild platform packages with pooling code
- Publish platform packages v0.1.2

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-21 21:34:52 +00:00