RepoJournal
Agentic Coding Agentic Coding
60 wires and counting

$ follow Agentic Coding

Keep up with Agentic Coding in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-13
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

OpenHands patches XSS in static server, adds Azure DevOps SSH remote support

By RepoJournal · Filed · About Agentic Coding · Composed from the cited sources · methodology

OpenHands shipped a fix that HTML-escapes injected runtime config and stops caching credential-bearing responses, closing an XSS path in its static server.

The static server injected runtime config values without HTML escaping, so config containing HTML characters could break out of the script tag. The fix routes values through `serializeForInlineScript` in `scripts/static-server.mjs` and sets `Cache-Control: no-store` on credential injection, which also prevents browsers from caching sensitive credentials like session API keys [1][2].

Azure DevOps SSH remotes now parse correctly. The control bar used to show the repo as `v3/myorg/myproject/myrepo` with no branch link; it now shows the correct name and exposes the Pull, Push, and Pull Request actions, according to the author's local test [3][5].

A new analytics call tracks authenticated Canvas arrivals and fires only after cookie authentication succeeds, isolated from startup [4].

Quick answers

What shipped in Agentic Coding on September 13, 2026?
OpenHands shipped a fix that HTML-escapes injected runtime config and stops caching credential-bearing responses, closing an XSS path in its static server. In total, 3 commits and 3 pull requests landed.
Who contributed to Agentic Coding on September 13, 2026?
3 developers shipped this update, including Mohd Quamar Tyagi, Chocolatine75, and neubig.
What were the notable Agentic Coding updates?
fix(static-server): HTML-escape injected runtime config and set Cache-Control: no-store on credential injection (#17175), fix(static-server): HTML-escape injected runtime config and set Cache-Control: no-store on credential injection, and fix: recognize Azure DevOps SSH remotes.