Skip to content

docs: dsh 0.1.2-rc.1 adds HTTP proxy support for outbound traffic - #18

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
docs/sync
Open

docs: dsh 0.1.2-rc.1 adds HTTP proxy support for outbound traffic#18
github-actions[bot] wants to merge 1 commit into
mainfrom
docs/sync

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 28, 2026

Copy link
Copy Markdown
Contributor

DSH now honors standard HTTP(S) proxy environment variables for its outbound traffic — model calls, web search, page fetches, and MCP servers — shipped in new npm release 0.1.2-rc.1 (the next tag moved from 0.1.1-rc.2). A new user guide documents the behavior, and the module/config catalogs show a new shared http-proxy util package extracted to centralize it. This matters because dsh is a developer preview that makes interface changes without migration paths, and proxy support changes how every network-facing tool in dsh behaves inside a locked-down or corporate network.

  • New npm release 0.1.2-rc.1 (2026-09-03); latest stays 0.1.1-rc.2, next now points at the rc.
  • New guide page "Run DSH behind a network proxy" (dsh/docs/user/guide/network-proxy.md): proxy is read from HTTP_PROXY/HTTPS_PROXY/NO_PROXY/ALL_PROXY at launch; documented limits include no SOCKS support, CIDR ranges ignored in NO_PROXY, TLS-intercepting proxies needing NODE_EXTRA_CA_CERTS, and credentials-in-URL reaching model-written child tools. A project's own .env cannot set proxy vars (refused at startup).
  • Module graph adds http-proxy (packages/util/http-proxy); e2b, subprocess, web-fetch-http, session-snapshot, and loader-smoke now depend on it — proxy handling was refactored into one shared package rather than per-tool code.
  • config-catalog.md lists @deepseek-ai/dsh-http-proxy as a new library package (imported as a library, not loadable as a cordis.yml plugin).
  • Index churn (llms.txt, .metadata.json): the new page is registered, and two old news entries (news1226, news250120) now resolve to real titles instead of being flagged "served fallback shell" — content itself unchanged, fetcher metadata corrected.

@github-actions github-actions Bot changed the title docs: Offline tokenizer zip bumped to v4 in token_usage docs docs: token_usage tokenizer zip bumped from deepseek-v3 to deepseek-v4 Aug 28, 2026
@github-actions github-actions Bot changed the title docs: token_usage tokenizer zip bumped from deepseek-v3 to deepseek-v4 docs: dsh 0.1.2-alpha.2: RemoteError code namespaces, ignorable session events, new Remote API surfaces Aug 30, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha.2: RemoteError code namespaces, ignorable session events, new Remote API surfaces docs: dsh Remote API reworked: RemoteError code namespace, sessionProjections requirement, 0.1.2-alpha.2 Aug 30, 2026
@github-actions github-actions Bot changed the title docs: dsh Remote API reworked: RemoteError code namespace, sessionProjections requirement, 0.1.2-alpha.2 docs: dsh refresh: RemoteError failure vocabulary, mandatory sessionProjections seam, 0.1.2-alpha.2 Aug 31, 2026
@github-actions github-actions Bot changed the title docs: dsh refresh: RemoteError failure vocabulary, mandatory sessionProjections seam, 0.1.2-alpha.2 docs: dsh 0.1.2-alpha.2: RemoteError taxonomy rename, sessionProjections now a required inject across ~20 plugins, new API surface Aug 31, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha.2: RemoteError taxonomy rename, sessionProjections now a required inject across ~20 plugins, new API surface docs: dsh 0.1.2-alpha.3: Remote error codes renamespaced, SQLite persistence dropped, new Remote API cookbook Aug 31, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha.3: Remote error codes renamespaced, SQLite persistence dropped, new Remote API cookbook docs: dsh 0.1.2-alpha: RemoteError code overhaul, ignorable session events, SQLite backend dropped Sep 1, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha: RemoteError code overhaul, ignorable session events, SQLite backend dropped docs: dsh 0.1.2-alpha: RemoteError wire codes, sessionProjections service requirement, new alpha npm release Sep 1, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha: RemoteError wire codes, sessionProjections service requirement, new alpha npm release docs: dsh 0.1.2-alpha: Remote API cookbook, namespaced gateway error codes, subagent/session API overhaul Sep 1, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha: Remote API cookbook, namespaced gateway error codes, subagent/session API overhaul docs: dsh 0.1.2-alpha.4 lands RemoteError taxonomy, session-log format changes, and a sessionProjections core service Sep 1, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha.4 lands RemoteError taxonomy, session-log format changes, and a sessionProjections core service docs: dsh 0.1.2-alpha line lands: report tool removed, send_message takes agent_id, plugins now require sessionProjections Sep 2, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha line lands: report tool removed, send_message takes agent_id, plugins now require sessionProjections docs: dsh 0.1.2-alpha line: handle-based session persistence, subagent messaging rewrite, bundle/package renames Sep 2, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-alpha line: handle-based session persistence, subagent messaging rewrite, bundle/package renames docs: dsh 0.1.2 alpha: session-event format and settings API break, new Remote API cookbook Sep 2, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2 alpha: session-event format and settings API break, new Remote API cookbook docs: dsh 0.1.2-rc.1 (next) adds network-proxy support via new http-proxy util package Sep 3, 2026
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-rc.1 (next) adds network-proxy support via new http-proxy util package docs: dsh 0.1.2-rc.1 lands HTTP-proxy support; new network-proxy guide and http-proxy package Sep 3, 2026
DSH now honors standard HTTP(S) proxy environment variables for its outbound traffic — model calls, web search, page fetches, and MCP servers — shipped in new npm release `0.1.2-rc.1` (the `next` tag moved from `0.1.1-rc.2`). A new user guide documents the behavior, and the module/config catalogs show a new shared `http-proxy` util package extracted to centralize it. This matters because dsh is a developer preview that makes interface changes without migration paths, and proxy support changes how every network-facing tool in dsh behaves inside a locked-down or corporate network.

- New npm release `0.1.2-rc.1` (2026-09-03); `latest` stays `0.1.1-rc.2`, `next` now points at the rc.
- New guide page "Run DSH behind a network proxy" (`dsh/docs/user/guide/network-proxy.md`): proxy is read from `HTTP_PROXY`/`HTTPS_PROXY`/`NO_PROXY`/`ALL_PROXY` at launch; documented limits include no SOCKS support, CIDR ranges ignored in `NO_PROXY`, TLS-intercepting proxies needing `NODE_EXTRA_CA_CERTS`, and credentials-in-URL reaching model-written child tools. A project's own `.env` cannot set proxy vars (refused at startup).
- Module graph adds `http-proxy` (`packages/util/http-proxy`); `e2b`, `subprocess`, `web-fetch-http`, `session-snapshot`, and `loader-smoke` now depend on it — proxy handling was refactored into one shared package rather than per-tool code.
- `config-catalog.md` lists `@deepseek-ai/dsh-http-proxy` as a new library package (imported as a library, not loadable as a `cordis.yml` plugin).
- Index churn (`llms.txt`, `.metadata.json`): the new page is registered, and two old news entries (`news1226`, `news250120`) now resolve to real titles instead of being flagged "served fallback shell" — content itself unchanged, fetcher metadata corrected.
@github-actions github-actions Bot changed the title docs: dsh 0.1.2-rc.1 lands HTTP-proxy support; new network-proxy guide and http-proxy package docs: dsh 0.1.2-rc.1 adds HTTP proxy support for outbound traffic Sep 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants