v0.3.8-pre.011-fix.001

This commit is contained in:
2026-09-03 22:34:02 +02:00
parent 80fe2fd9e2
commit e01fe88594
4 changed files with 66 additions and 13 deletions

View File

@@ -0,0 +1,35 @@
<!-- file: deltas/0.3.8/pre.011-fix.001.md -->
<!-- version: 1 -->
# v0.3.8-pre.011-fix.001
## Base
- base obligatoire : `0.3.8-pre.011` ;
- type : correctif test/qualité ;
- `workspace.package.version = 0.3.8-pre.11.fix.1`.
## Correction
Le firewall `crates/ksp-app-store-desk/tests/release_completeness.rs` introduit en `pre.011` respecte désormais la règle KSP d'absence de retour implicite :
- closures `filter`, `map` et `filter_map` avec `return` explicite ;
- branches du `match` terminal de la closure `profile_id` avec `return` explicite ;
- aucun changement des assertions, inventaires ou invariants vérifiés.
## Hors scope
Aucun changement runtime, frontend, DTO, IPC, Store API/façade, PostgreSQL, SQL, Config, migration ou capability Tauri.
## Gate requis
```bash
cargo fmt --all
python3 scripts/audit_rust_workspace_rules.py
python3 scripts/audit_markdown_tables.py README.md RULES.md ROADMAP.md CHANGELOG.md docs prompts crates deltas
cargo check --workspace
cargo clippy --workspace --all-targets
cargo test -p ksp-app-store-desk
cargo test -p ksp-store-lib
cargo check -p ksp-store-lib --no-default-features
```