What's wrong with this entry?
What: Network permissions now support Unix domain sockets for local IPC, enabling tools like SSH agents and Docker to work within the sandbox.
How to configure:
{
"permissions": {
"network": {
"allowUnixSockets": true // Allow all Unix sockets
}
}
}
Or with specific paths:
{
"permissions": {
"network": {
"allowUnixSockets": [
"/var/run/docker.sock",
"~/.ssh/agent.sock"
]
}
}
}
Details:
- Three modes:
true(allow all),false(block all - default), or array of specific socket paths - Currently implemented for macOS sandbox profiles using
(remote unix-socket)directive - Essential for Docker, SSH agents, and other development tools requiring local IPC
- Type:
boolean | string[]
Schema definition at lines 354206-354217, implementation at lines 374968-374975, parameter usage at line 375216
Strings lifted out of the shipped bundle, so the claim above can be checked against them.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.