Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c346a106a3 | |||
| 8de0fad776 |
+35
-1
@@ -11,7 +11,41 @@ Pre-v1.0.0 tags followed the pi npm version (`v{pi_version}[letter]`).
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Unreleased
|
## v1.1.7 — 2026-06-21
|
||||||
|
|
||||||
|
Patch release: pi `0.79.8` → `0.79.9` (auto-resolved at build), plus the
|
||||||
|
`ssh-lan.conf` LAN-peer documentation that landed on `main` after v1.1.6.
|
||||||
|
Companion refs are auto-resolved to SHAs at build as before.
|
||||||
|
|
||||||
|
### Bumped: pi 0.79.8 → 0.79.9
|
||||||
|
|
||||||
|
Notable upstream changes (from [pi releases](https://github.com/earendil-works/pi/releases/tag/v0.79.9)):
|
||||||
|
|
||||||
|
- **Chat-template thinking compatibility** — OpenAI-compatible custom
|
||||||
|
providers can map pi thinking levels into `chat_template_kwargs`, enabling
|
||||||
|
vLLM/Hugging Face chat-template models (e.g. DeepSeek) to use
|
||||||
|
provider-native thinking controls.
|
||||||
|
- **GLM-5.2 provider improvements** — corrected Fireworks OpenAI-compatible
|
||||||
|
routing and OpenRouter `xhigh` thinking support, improving `/model`
|
||||||
|
behaviour and high-effort reasoning for GLM-5.2.
|
||||||
|
- **Fixes** — same-directory session switches now reuse imported extension
|
||||||
|
modules (fresh instances + lifecycle events preserved); deep session
|
||||||
|
branches no longer take quadratic time to build context; Markdown
|
||||||
|
streaming code-fence rendering no longer flickers on partial closing
|
||||||
|
fences; fuzzy `edit` matches preserve untouched line blocks instead of
|
||||||
|
rewriting the whole file; `/model` hides Copilot models unavailable to the
|
||||||
|
account and ranks exact provider-prefixed matches first.
|
||||||
|
|
||||||
|
### Docs: document `~/.config/devbox-shell/ssh-lan.conf` for naming LAN peers
|
||||||
|
|
||||||
|
The host-owned, bind-mounted `~/.config/devbox-shell/ssh-lan.conf` is the
|
||||||
|
intended place to add `ProxyJump host` overrides for **named** LAN peers (so
|
||||||
|
`pi --ssh <peer>` / `dssh <peer>` route through the host), but it was only
|
||||||
|
mentioned in `.env.example` and the `setup-lan-access.sh` header — never in the
|
||||||
|
README. Added a "Naming LAN peers" subsection to the README troubleshooting
|
||||||
|
block (plus a pointer from the SSH/ControlMaster section), and corrected the
|
||||||
|
stale `setup-lan-access.sh` comment that suggested editing the read-only
|
||||||
|
`~/.ssh/config` instead of `ssh-lan.conf`.
|
||||||
|
|
||||||
## v1.1.6 — 2026-06-19
|
## v1.1.6 — 2026-06-19
|
||||||
|
|
||||||
|
|||||||
@@ -479,7 +479,11 @@ this without editing the read-only config:
|
|||||||
cannot fail on the read-only socket dir.
|
cannot fail on the read-only socket dir.
|
||||||
- **`ssh -F ~/.ssh-local/config` / `dssh` / `dscp`** — `setup-lan-access.sh`
|
- **`ssh -F ~/.ssh-local/config` / `dssh` / `dscp`** — `setup-lan-access.sh`
|
||||||
redirects `ControlPath` into the writable `~/.ssh-local/cm` for every host
|
redirects `ControlPath` into the writable `~/.ssh-local/cm` for every host
|
||||||
(the sidecar is rendered on all host OSes).
|
(the sidecar is rendered on all host OSes). To name LAN peers that should
|
||||||
|
jump via the host, add `ProxyJump host` overrides in the host-owned
|
||||||
|
`~/.config/devbox-shell/ssh-lan.conf` (see
|
||||||
|
[Naming LAN peers](#naming-lan-peers)) rather than the read-only
|
||||||
|
`~/.ssh/config`.
|
||||||
|
|
||||||
## tmux and 0-indexed sessions
|
## tmux and 0-indexed sessions
|
||||||
|
|
||||||
@@ -615,6 +619,28 @@ auto-runs on container start and writes `~/.ssh-local/config` with a
|
|||||||
ssh-jump-via-host configuration. Set `DEVBOX_LAN_ACCESS=jump` and
|
ssh-jump-via-host configuration. Set `DEVBOX_LAN_ACCESS=jump` and
|
||||||
`HOST_SSH_USER=<your-mac-user>` in `.env` if auto-detection fails.
|
`HOST_SSH_USER=<your-mac-user>` in `.env` if auto-detection fails.
|
||||||
|
|
||||||
|
#### Naming LAN peers
|
||||||
|
|
||||||
|
`DEVBOX_LAN_ACCESS` / `HOST_SSH_USER` only set up the *jump* to the host. To
|
||||||
|
make a **named** peer route through it — so `pi --ssh alpserv-2`,
|
||||||
|
`dssh alpserv-2`, etc. resolve the ProxyJump — add a `ProxyJump host` override
|
||||||
|
for it in the host-owned, bind-mounted `~/.config/devbox-shell/ssh-lan.conf`
|
||||||
|
(**not** `~/.ssh/config`, which is mounted read-only):
|
||||||
|
|
||||||
|
```
|
||||||
|
Host pve pve-2 alpserv-2 lagret
|
||||||
|
ProxyJump host
|
||||||
|
```
|
||||||
|
|
||||||
|
`HostName` / `User` / `IdentityFile` are inherited from the matching block in
|
||||||
|
your real `~/.ssh/config` (first-value-wins, so only `ProxyJump` is taken from
|
||||||
|
here). This file is `Include`d *before* `~/.ssh/config` and read fresh on every
|
||||||
|
connection — newly added peers work immediately, no container or session
|
||||||
|
restart needed — and the peer names stay out of the published image (they're a
|
||||||
|
fact about your specific LAN, not the image). Alternatively, set
|
||||||
|
`DEVBOX_LAN_AUTOJUMP_PRIVATE=1` to ProxyJump *any* RFC1918 address through the
|
||||||
|
host without naming peers (see `.env.example`).
|
||||||
|
|
||||||
### Smoke-testing a local build
|
### Smoke-testing a local build
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -188,7 +188,9 @@ if [ -r "${HOME}/.ssh/config" ]; then
|
|||||||
|
|
||||||
# Your own target hosts. Scope reset to match-all so this Include applies to
|
# Your own target hosts. Scope reset to match-all so this Include applies to
|
||||||
# every target (an Include is otherwise scoped to the enclosing Host block).
|
# every target (an Include is otherwise scoped to the enclosing Host block).
|
||||||
# Add 'ProxyJump host' to LAN entries here (or in ssh-lan.conf above).
|
# To make a LAN peer jump via the host, add 'ProxyJump host' to its entry in
|
||||||
|
# the host-owned ~/.config/devbox-shell/ssh-lan.conf (Included above) — NOT
|
||||||
|
# here in ~/.ssh/config, which is typically bind-mounted read-only.
|
||||||
Host *
|
Host *
|
||||||
Include ~/.ssh/config
|
Include ~/.ssh/config
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
Reference in New Issue
Block a user