|
| 1 | +# ProofCore v1.0.2 – Maintenance Update |
| 2 | + |
| 3 | +**Release Date**: 2025-11-04 |
| 4 | +**Status**: ✅ Production Ready |
| 5 | +**License**: MIT |
| 6 | + |
| 7 | +--- |
| 8 | + |
| 9 | +## Overview |
| 10 | + |
| 11 | +This maintenance refresh for ProofCore v1.0.2 reinforces the offline-first contract, aligns configuration defaults across frontend and backend, and refreshes key dependencies to address recent advisories. No breaking API changes were introduced; existing 1.0.x deployments can adopt this update without migration steps beyond vendoring Pyodide assets. |
| 12 | + |
| 13 | +--- |
| 14 | + |
| 15 | +## Highlights |
| 16 | + |
| 17 | +### Offline Mode Hardening |
| 18 | + |
| 19 | +- `VITE_OFFLINE_MODE` now defaults to `true`, with bundled verification weights used when the backend is absent. |
| 20 | +- All browser API calls route through the `safeFetch` gate, which blocks network traffic unless `VITE_ALLOW_NETWORK=true`. |
| 21 | +- Backend exposes `OFFLINE_MODE` and `ENABLE_LLM_PROVIDERS` toggles; the LLM adapter refuses to initialize remote providers when offline mode is enabled. |
| 22 | +- Offline Vitest suite exercises the actual network guard instead of mocks, preventing regressions. |
| 23 | + |
| 24 | +### Pyodide Bundling Support |
| 25 | + |
| 26 | +- Added `pyodide` dependency declaration plus `npm run verify:offline-assets` to confirm required WASM artifacts (`pyodide.js`, `packages.json`, 그리고 `pyodide_py.tar` 또는 `python_stdlib.zip`) are vendored under `public/pyodide/`. |
| 27 | +- `public/pyodide/README.md` documents the manual download workflow for air-gapped deployments. |
| 28 | + |
| 29 | +### Dependency Refresh |
| 30 | + |
| 31 | +- Upgraded to `[email protected]`, `[email protected]`, `@mswjs/[email protected]`, and `[email protected]`, clearing previously reported low/moderate CVEs in the stack. |
| 32 | +- Remaining advisories require major upgrades to Vite/Vitest and are slated for a future release. |
| 33 | + |
| 34 | +### Documentation & Metadata |
| 35 | + |
| 36 | +- `.env.example`, backend `.env.example`, and packaging metadata (`package.json`, `pyproject.toml`, `setup.py`) now report version **1.0.2** and describe the new offline toggles. |
| 37 | +- README adds an explicit offline mode section, Pyodide vendoring instructions, and the offline asset verification command. |
| 38 | +- CHANGELOG updated to capture the maintenance scope. |
| 39 | + |
| 40 | +--- |
| 41 | + |
| 42 | +## Installation Notes |
| 43 | + |
| 44 | +1. `npm install` – installs refreshed dependencies. |
| 45 | +2. `npm run verify:offline-assets` – confirms Pyodide bundles are present (requires manual download, see README). |
| 46 | +3. `npm run test` – Vitest suite (including offline guard cases). |
| 47 | + |
| 48 | +--- |
| 49 | + |
| 50 | +## Known Issues / Follow Ups |
| 51 | + |
| 52 | +- Remaining `npm audit` warnings: upgrading to Vite 7.x / Vitest 4.x will be evaluated separately. |
| 53 | +- Pyodide assets still require manual download due to licensing and size considerations. |
| 54 | + |
| 55 | +--- |
| 56 | + |
| 57 | +## Acknowledgements |
| 58 | + |
| 59 | +Thanks to the ProofCore maintainers for prioritising offline robustness and secure defaults in this iteration. |
0 commit comments