v0.2.12-pre.008-fix.003
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<!-- file: docs/validation/015-V0_2_12_SOL_PRICES_DESK.md -->
|
||||
<!-- version: 15 -->
|
||||
<!-- version: 16 -->
|
||||
|
||||
# Validation `0.2.12` — SOL Prices Desk + intégration Wallet Desk
|
||||
|
||||
@@ -681,3 +681,48 @@ cargo test -p ksp-app-wallet-desk
|
||||
cargo test --workspace
|
||||
(cd crates/ksp-app-wallet-desk && cargo tauri dev)
|
||||
```
|
||||
|
||||
## 27. Gate `0.2.12-pre.008-fix.003` — correction finale du canari desktop
|
||||
|
||||
Le gate opérateur de `pre.008-fix.002` confirme le comportement fonctionnel attendu :
|
||||
|
||||
```text
|
||||
Dashboard moyenne SOL/USD + équivalent USD visibles
|
||||
Details moyenne SOL/USD + équivalent USD visibles
|
||||
version affichée 0.2.12-pre.8.fix.2
|
||||
refresh balance succès
|
||||
observed_provider_count 6
|
||||
sol_usd_average_available true
|
||||
sol_usd_equivalent_available true
|
||||
```
|
||||
|
||||
Le gate technique donne :
|
||||
|
||||
```text
|
||||
cargo fmt --all PASS
|
||||
python3 scripts/audit_rust_workspace_rules.py PASS
|
||||
python3 scripts/audit_markdown_tables.py README.md ... deltas PASS
|
||||
cargo check --workspace PASS
|
||||
cargo clippy --workspace --all-targets FAIL — desktop_contract.rs uniquement
|
||||
```
|
||||
|
||||
La cause est purement syntaxique dans le canari version-neutral :
|
||||
|
||||
```text
|
||||
r#"setText("#appVersionBadge", status.applicationVersion);"#
|
||||
```
|
||||
|
||||
Le délimiteur `"#` présent dans `"#appVersionBadge"` termine la raw string avant la fin du motif. `pre.008-fix.003` remplace ce motif par une chaîne Rust standard avec guillemets échappés. Aucun code runtime, frontend ou calcul financier n'est modifié.
|
||||
|
||||
Gate opérateur à rejouer :
|
||||
|
||||
```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/0.2.12
|
||||
cargo check --workspace
|
||||
cargo clippy --workspace --all-targets
|
||||
cargo test -p ksp-app-wallet-desk
|
||||
cargo test --workspace
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user