@oh-my-pi/pi-coding-agent
Changed
- Refined secret obfuscation to only target message roles and fields containing operator secrets
- Restricted obfuscator to ignore secrets and regex matches shorter than 8 characters
- Optimized obfuscation to skip static system prompts and tool schemas in provider contexts
- Ensured image data bytes are never modified to prevent corrupted data URL payloads
Fixed
- Fixed secret obfuscation corrupting Codex image reads (and other provider requests) with
Invalid 'input[N].content[].image_url'. Expected a base64-encoded data URL ... but got an invalid base64-encoded value. The obfuscator deep-walked every string in the outbound request — including inline image base64 and opaque provider replay/signature fields — so a configured secret that happened to be a substring of the base64 (or of an ordinary word likeresponse) injected#HASH#placeholders mid-payload. Obfuscation is now opt-in and fully typed: only user messages, tool-result messages, and user-attributed developer messages (@filementions) are redacted; system prompts and tool schemas pass through untouched; image bytes and signature/encrypted-reasoning fields are never rewritten; and tool-call arguments are the only JSON walked. Configured plain secrets and regex matches shorter than 8 characters are now ignored to stop false matches on short words. - Fixed RPC/ACP startup clobbering explicit caller/project/global configuration for
task.isolation.{mode,merge,commits},task.eager,task.batch,task.maxConcurrency,task.maxRecursionDepth,task.disabledAgents,task.agentModelOverrides,memory.backend,memories.enabled,advisor.{enabled,subagents,syncBacklog,immuneTurns}, plus the RPC-onlyasync.{enabled,maxJobs}andbash.autoBackground.{enabled,thresholdMs}.applyDefaultSettingOverridesre-asserted the schema default as a runtime override after settings load, regressing theisConfigured()guard added for #2598 and ignoring every explicit value the embedder, project,--configoverlay, or global config had set. The guard is restored, so the host default now only fills holes (#3207).
@oh-my-pi/pi-natives
Added
- Added Julia syntax highlighting to
highlightCode/supportsLanguagevia a vendoredJulia.sublime-syntaxfolded into syntect's default set (jl/juliaaliases); syntect ships no Julia grammar.
What's Changed
Full Changelog: v16.1.11...v16.1.12