copilot-reverse 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/changes.js CHANGED
@@ -1,4 +1,14 @@
1
1
  export const APP_CHANGES = [
2
+ {
3
+ "version": "0.8.1",
4
+ "date": "2026-06-29",
5
+ "summary": "fix(release): update CHANGELOG before the build so the just-released version appears in `/changes`. gen-changes.mjs runs in prebuild and reads CHANGELOG, but the workflow appended the new entry only after publish — so each release's own notes lagged one version behind. CHANGELOG is now written before build; changesets are still consumed after publish."
6
+ },
7
+ {
8
+ "version": "0.8.0",
9
+ "date": "2026-06-29",
10
+ "summary": "Map Copilot model ids to the canonical ids Claude Code's native /model picker recognises, so models show friendly names and the 1M-context badge instead of bare ids. Outbound, `/anthropic/v1/models` dashes claude ids (`claude-opus-4.8` → `claude-opus-4-8[1m]`) and tags opus 4.6/4.7/4.8 + sonnet 4.6 as 1M; setup's default ANTHROPIC_MODEL is dashed the same way so the picker matches it; inbound, requests resolve back to the real Copilot model. GPT/o3 pass through unchanged."
11
+ },
2
12
  {
3
13
  "version": "0.7.0",
4
14
  "date": "2026-06-29",
@@ -38,15 +48,5 @@ export const APP_CHANGES = [
38
48
  "version": "0.5.0",
39
49
  "date": "2026-06-28",
40
50
  "summary": "Add a GitHub-token heartbeat: the supervisor now re-checks every ~60s whether the stored GitHub login still works, and the TUI footer shows a live `github ✓` / `✗ /login` badge — so an expired or revoked login surfaces within ~60s instead of only on the next failed request or a manual `/status`. A transient network/rate-limit hiccup is distinguished from a real auth failure, so the badge never flips on a single blip."
41
- },
42
- {
43
- "version": "0.4.0",
44
- "date": "2026-06-26",
45
- "summary": "Codex `/responses` support, web search via Microsoft Web IQ, and a tool-call recovery fix:"
46
- },
47
- {
48
- "version": "0.3.0",
49
- "date": "2026-06-26",
50
- "summary": "Restore `web_search` and `web_fetch` for Claude Code through the gateway: the worker now runs these tools internally against Microsoft Web IQ in a transparent agentic loop, and a new `/web-search-support` command stores the WebIQ API key."
51
51
  }
52
52
  ];
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // AUTO-GENERATED by scripts/gen-version.mjs from package.json — do not edit.
2
- export const APP_VERSION = "0.8.0";
2
+ export const APP_VERSION = "0.8.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copilot-reverse",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Interactive terminal app that exposes your GitHub Copilot subscription as local OpenAI- and Anthropic-compatible endpoints, with a self-healing daemon and a built-in assistant.",
5
5
  "type": "module",
6
6
  "license": "MIT",