Skip to content
Closed
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
14 changes: 3 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [1.86, stable, nightly]
rust: [stable, nightly]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -25,20 +25,14 @@ jobs:
run: cargo fmt --all -- --check
continue-on-error: ${{ matrix.rust == 'nightly' }}

- name: Clippy (1.86 compatible crates)
if: matrix.rust == '1.86'
run: cargo clippy -p aegis-core -p aegis-cli -p aegis-test-utils -p aegis-ffi --locked

- name: Clippy (full workspace)
if: matrix.rust != '1.86'
run: cargo clippy --workspace --all-features --locked -- -D warnings
continue-on-error: ${{ matrix.rust == 'nightly' }}

- name: Build
run: cargo build --workspace --locked

- name: Build with features
if: matrix.rust != '1.86'
run: cargo build --workspace --features postgres,mysql --locked

- name: Test (default features)
Expand All @@ -54,7 +48,6 @@ jobs:
run: cargo test --workspace --features postgres --locked

- name: Test (mysql)
if: matrix.rust != '1.86'
run: cargo test --workspace --features mysql --locked

- name: Test (rocksdb)
Expand All @@ -66,20 +59,19 @@ jobs:
tool: wasm-pack

- name: WASM build
if: matrix.rust != '1.86'
run: |
cd packages/aegis-browser/rust
wasm-pack build --target web

- name: WASM test (Chrome)
if: matrix.rust != '1.86'
if: matrix.rust == 'stable'
shell: bash
run: |
cd crates/aegis-core
wasm-pack test --chrome --headless -- --no-default-features --features wasm || true

- name: WASM test (Firefox)
if: matrix.rust != '1.86'
if: matrix.rust == 'stable'
shell: bash
run: |
cd crates/aegis-core
Expand Down
2 changes: 1 addition & 1 deletion AEGIS_IMPLEMENTATION_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ Scope:
- WASM architecture spec (`docs/wasm-architecture.md`),
- Browser getting-started guide (`docs/browser-getting-started.md`),
- Schema migration on browser guide,
- Support matrix (`docs/support-matrix.md`).
- Support matrix (rendered from `AEGIS_IMPLEMENTATION_PLAN.md`).
- **Release**:
- npm publish (`@aegis/browser`),
- cargo publish (`aegis-core` with `wasm` + `indexeddb` features),
Expand Down
49 changes: 0 additions & 49 deletions CHANGELOG-v6.md

This file was deleted.

38 changes: 0 additions & 38 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion IMPLEMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## Current Status (June 2026)

**Sprints 0–9 Complete — 280 tests pass (233 unit + 47 integration/stress/closure), 0 failures — V1+V2 fully implemented**
**Sprints 0–9 Complete — 327 tests pass (267 unit + 10 integration + 36 V2 multi-model + 4 stress + 2 soak + 8 test-utils), 0 failures — V1+V2 fully implemented**

| Sprint | Focus | Status | Key Deliverables |
|--------|-------|--------|-----------------|
Expand Down
Loading