fix(core_base/request): Strip unix: prefix when parsing unix socket URLs so socketPath is a clean filesystem path

This commit is contained in:
2025-11-16 23:41:24 +00:00
parent e14800f077
commit 8b52ca1021
6 changed files with 18 additions and 5 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2025-11-16 - 4.4.2 - fix(core_base/request)
Strip 'unix:' prefix when parsing unix socket URLs so socketPath is a clean filesystem path
- CoreRequest.parseUnixSocketUrl now removes a leading 'unix:' prefix and returns socketPath as a filesystem path (e.g., /var/run/docker.sock)
- Updated tests for Bun, Deno and Node to expect socketPath without the 'unix:' prefix
- Adjusted comments/documentation in core_base/request.ts to clarify returned socketPath format
## 2025-11-16 - 4.4.1 - fix(core_node)
Fix unix socket URL parsing and handling in CoreRequest