Skip to content

Commit d8b58bc

Browse files
committed
Release switchboard 0.1.12
1 parent c4e10cf commit d8b58bc

16 files changed

Lines changed: 659 additions & 9 deletions

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The first release focuses on safe local writes: every apply/install operation cr
2424
- Codex MCP header alias handling: `headers` and `http_headers`
2525
- Cleanup for legacy Codex `[mcp.servers]` when installing into `[mcp_servers]`
2626
- Cleanup for the old Codex provider entry when applying the current default provider id
27+
- Built-in Codex SQLite feedback log fix that checks and installs a `block_log_inserts` trigger in `logs_2.sqlite`
2728
- Backups and restore for every changed config file
2829
- Windows MCP stdio wrapper for `npx`, `npm`, `yarn`, `pnpm`, `node`, `bun`, and `deno`
2930
- Manifest `window` policy for reusing the existing Provider Router module when import deep links arrive
@@ -84,7 +85,7 @@ Install the packaged plugin into a local HaloForge workspace with the `hf` CLI:
8485

8586
```bash
8687
cd /path/to/HaloForge
87-
npm run hf -- plugin install local /path/to/hf-plugin-switchboard/dist/package/dev.haloforge.switchboard-0.1.8.hfpkg --json
88+
npm run hf -- plugin install local /path/to/hf-plugin-switchboard/dist/package/dev.haloforge.switchboard-0.1.12.hfpkg --json
8889
npm run hf -- plugin list --json
8990
```
9091

backend/Cargo.lock

Lines changed: 107 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hf-plugin-switchboard"
3-
version = "0.1.11"
3+
version = "0.1.12"
44
edition = "2021"
55
description = "HaloForge Switchboard plugin backend"
66
license = "MIT"
@@ -14,5 +14,6 @@ dirs = "6"
1414
hf-plugin-api = { package = "haloforge-plugin-api", version = "0.2.13" }
1515
serde = { version = "1", features = ["derive"] }
1616
serde_json = "1"
17+
rusqlite = { version = "0.32", features = ["bundled"] }
1718
toml_edit = "0.22"
1819
ureq = { version = "2", features = ["json"] }

0 commit comments

Comments
 (0)