cruss-agent 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cruss-agent",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Local API relay for Cruss — test localhost APIs from cruss-ten.vercel.app",
5
5
  "main": "server.js",
6
6
  "bin": {
package/server.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * cruss-agent — Cruss Local API Agent v1.0.2
3
+ * cruss-agent — Cruss Local API Agent v1.0.4
4
4
  *
5
5
  * A lightweight HTTP proxy that runs on your machine (port 9119).
6
6
  * The Cruss web app routes local API requests through this agent
@@ -16,9 +16,10 @@
16
16
  * POST /proxy — proxy a request
17
17
  *
18
18
  * Changelog:
19
- * v1.0.2 — bind to 0.0.0.0 (fixes macOS IPv6 detection), IPv4/IPv6
19
+ * v1.0.4 — bind to 0.0.0.0 (fixes macOS IPv6 detection), IPv4/IPv6
20
20
  * fallback in proxyRequest (fixes 127.0.0.1 vs ::1 mismatch),
21
21
  * wildcard CORS (no more domain allowlist to maintain)
22
+ *
22
23
  */
23
24
 
24
25
  'use strict'