portless Updates & Release Notes

Follow

35 updates curated from 1 source by the Releasebot Team. Last updated: Jul 1, 2026

Get this feed:
  • Jun 30, 2026
    • Date parsed from source:
      Jun 30, 2026
    • First seen by Releasebot:
      Jul 1, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.15.1

    portless adds multi-TLD proxy support, letting one proxy serve the same app names across multiple domains.

    New Features

    Multi-TLD proxy support: --tld is now repeatable and PORTLESS_TLD accepts comma separated values, so one proxy can serve the same app names across multiple TLDs. Routes, TLS, service state, hosts sync, framework environment, and workspace launches now use the full configured TLD list. (#344)

    Contributors

    @ctate

    Original source
  • Jun 24, 2026
    • Date parsed from source:
      Jun 24, 2026
    • First seen by Releasebot:
      Jun 25, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.15.0

    portless adds a read-only diagnostics command and improves proxy handling for HTTP/2 Host forwarding and forced takeover cleanup, helping users troubleshoot setup issues and keep routes stable.

    New Features

    portless doctor: New read only diagnostics command checks Node.js, the state directory, proxy liveness, route entries, hostname resolution, HTTPS CA trust, and LAN prerequisites, then prints suggested fixes. (#337)

    Bug Fixes

    HTTP/2 Host forwarding: Proxy now forwards HTTP/2 :authority as Host to HTTP/1.1 backends, fixing apps that depend on Host and previously saw 127.0.0.1 for browser traffic. (#328)

    --force takeover cleanup: Exit cleanup now removes only routes still owned by the exiting process, so a forced takeover does not deregister the new owner's route. (#328)

    Contributors

    @ctate

    Original source
  • All of your release notes in one feed

    Join Releasebot and get updates from Vercel Labs and hundreds of other software products.

    Create account
  • Jun 4, 2026
    • Date parsed from source:
      Jun 4, 2026
    • First seen by Releasebot:
      Jun 5, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.14.0

    portless adds ngrok sharing for public app access while keeping local .localhost URLs and improving tunnel lifecycle handling.

    New Features

    ngrok sharing: New --ngrok flag exposes portless apps publicly through ngrok while keeping the local .localhost URL. Also configurable with PORTLESS_NGROK=1; child processes receive PORTLESS_NGROK_URL, and portless list shows active ngrok URLs. (#323)

    Improvements

    ngrok tunnel lifecycle: Portless now checks for the ngrok CLI before starting an app, surfaces install and authentication guidance, removes stopped ngrok URLs from route state, and terminates tunnel processes during app cleanup. (#323)

    Contributors

    @ctate

    Original source
  • May 27, 2026
    • Date parsed from source:
      May 27, 2026
    • First seen by Releasebot:
      May 28, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.13.1

    portless adds configurable startup services, persisting proxy options into launchd, systemd, and Task Scheduler. It also improves service status reporting, fixes reinstall port changes and install validation, and now requires Node.js 24 or newer.

    New Features

    Configurable startup services: portless service install now persists proxy options such as --port, --no-tls, --lan, --ip, --tld, --wildcard, --cert, --key, and --state-dir into launchd, systemd, and Task Scheduler. portless service status now reports the installed service port, HTTPS mode, TLD, LAN mode, wildcard mode, and state directory.

    Bug Fixes

    Service reinstall port changes: Reinstalling the startup service with a different port now stops any existing proxy on the previous port before starting the new service.

    Service install validation: LAN service installs now fail early on platforms that cannot publish mDNS records, and service paths such as ~ are normalized before writing native service files.

    Requirements

    Node.js 24: The published package now requires Node.js 24 or newer, and repository development uses pnpm 11 with a minimum release age policy. (#307)

    Contributors

    @ctate

    @skaldebane

    @ItalianScallian

    @neefrehman

    Original source
  • May 8, 2026
    • Date parsed from source:
      May 8, 2026
    • First seen by Releasebot:
      May 8, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.13.0

    portless adds a native startup service for its HTTPS proxy across macOS, Linux, and Windows, with new service install, status, and uninstall commands plus improved Tailscale preflight checks for clearer startup errors.

    New Features

    OS startup service: New portless service install, portless service status, and portless service uninstall commands manage a native startup service for the HTTPS proxy across macOS launchd, Linux systemd, and Windows Task Scheduler. The service starts clean .localhost URLs after reboot, and portless clean removes it during cleanup. (#289)

    Bug Fixes

    Tailscale readiness preflight: --tailscale and --funnel now check Tailscale HTTPS and Funnel prerequisites before starting the child process, surfacing actionable errors instead of hanging during registration. (#282)

    Contributors

    @ctate

    @Anshuman71

    Original source
  • Similar to portless with recent updates:

  • Apr 29, 2026
    • Date parsed from source:
      Apr 29, 2026
    • First seen by Releasebot:
      Apr 30, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.12.0

    portless adds Tailscale sharing and Funnel support, letting apps be shared over Tailscale with no framework config and public access when needed. It also passes the Tailscale URL to child processes, shows tailnet URLs in list, and improves cleanup of stale registrations.

    New Features

    Tailscale sharing: New --tailscale flag shares any portless app over your Tailscale network with zero framework config. Each app is root-mounted on its own Tailscale HTTPS port (443, 8443, 8444, ...) so no basePath configuration is needed. Works as a global flag, per-app flag (portless myapp --tailscale next dev), or env var (PORTLESS_TAILSCALE=1). (#262)

    Tailscale Funnel: New --funnel flag exposes apps to the public internet through Tailscale Funnel. Implies --tailscale. Also configurable via PORTLESS_FUNNEL=1. (#262)

    PORTLESS_TAILSCALE_URL env var: Child processes receive PORTLESS_TAILSCALE_URL containing the Tailscale HTTPS URL so apps can reference their public address. (#262)

    Tailscale URLs in portless list: The list command now shows tailnet URLs alongside local URLs when Tailscale sharing is active. (#262)

    Improvements

    portless prune cleans stale Tailscale registrations: Prune now removes orphaned tailscale serve entries left behind by dead CLI sessions. (#262)

    portless clean removes Tailscale serve state: Clean now tears down any Tailscale serve/funnel registrations alongside the usual CA and hosts file cleanup. (#262)

    Contributors

    @ctate

    Original source
  • Apr 28, 2026
    • Date parsed from source:
      Apr 28, 2026
    • First seen by Releasebot:
      Apr 28, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.11.1

    portless adds a prune command and crash-handling fixes to clean up orphaned dev servers.

    New Features

    portless prune command: Safety net to find and kill orphaned dev servers left behind by dead CLI sessions. Reads stale route entries, checks if something is still listening on each port, and terminates the orphan.

    Bug Fixes

    Zombie process orphaning on CLI crash: Spawn child processes with detached:true on Unix so they get their own process group. Signal handlers now kill the entire group instead of just the immediate child, preventing orphaned dev servers from surviving CLI crashes or kill -9.

    Contributors

    @ctate

    Original source
  • Apr 27, 2026
    • Date parsed from source:
      Apr 27, 2026
    • First seen by Releasebot:
      Apr 27, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.11.0

    portless adds zero-arg startup, monorepo auto-discovery, Turborepo integration, and new config options for scripts and app settings. It also expands Rsbuild support, improves package manager handling, and tightens macOS CA trust and proxy state behavior with several fixes and security updates.

    New Features

    Zero-arg mode: Run bare portless from any project directory to auto-discover the dev script from package.json and start it through the proxy. No arguments, no config required. (#251)

    Multi-app orchestration: In monorepos, bare portless auto-discovers workspace packages (pnpm, npm, yarn, bun) and starts all dev scripts concurrently through the proxy. Each package gets a subdomain derived from its npm scope (e.g. @acme/docs becomes docs.acme.localhost). (#251)

    Turborepo integration: When turbo.json is present, portless delegates to turbo run <script> instead of spawning each app individually. Per-app PORT, HOST, and PORTLESS_URL are injected via a lightweight --require loader so turbo retains dependency ordering and task graph awareness. Set turbo: false in config to opt out. (#251)

    portless.json config file: Configure app name, script, port, and turbo settings without embedding portless in package.json scripts. Also supports a "portless" key in package.json as an inline alternative. (#251)

    --script flag: Override the default "dev" script for a single invocation (e.g. portless --script start). (#251)

    Rsbuild support: Auto-inject --port and --host CLI flags for Rsbuild dev server (#250)

    Bug Fixes

    State directory moved to ~/.portless: All proxy state now lives in ~/.portless instead of /tmp/portless, fixing repeated CA trust prompts on macOS (where /tmp is periodically cleaned) and a symlink local privilege escalation vulnerability (#251)

    Duplicate macOS CA certificates: Fix security delete-certificate failing with "is ambiguous" when multiple portless CA entries had accumulated in the keychain (#251)

    CA trust marker caching: Cache the CA fingerprint after a successful trust so subsequent proxy starts skip the OS security check and avoid re-triggering the macOS authentication dialog (#251)

    Improvements

    Auto-trust CA on proxy auto-start: When the proxy is auto-started and the CA is not yet trusted, portless automatically runs trust with proper sudo elevation (#251)

    Package manager delegation: Detects pnpm, yarn, bun, or npm and delegates script execution to the correct package manager (#251)

    Non-server script detection: Build-only tools (tsup, tsc, esbuild, etc.) are auto-detected and run without a proxy route. Use proxy: false in config for explicit control. (#251)

    Monochrome CLI output: Bold for headers and errors, dim for warnings and muted text, no color codes (#251)

    Contributors

    @ctate

    Original source
  • Apr 16, 2026
    • Date parsed from source:
      Apr 16, 2026
    • First seen by Releasebot:
      Apr 17, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.10.3

    portless fixes a stale TLD restart bug in the proxy.

    Bug Fixes

    Stale TLD persisting across proxy restart: Fix the proxy reverting to a stale TLD (e.g. .local) after restart because transient state markers were not cleaned up on stop (#235)

    Contributors

    @ctate

    Original source
  • Apr 13, 2026
    • Date parsed from source:
      Apr 13, 2026
    • First seen by Releasebot:
      Apr 14, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.10.2

    portless adds automatic CA trust for Node child processes and improves proxy reliability with fixes for slow macOS security checks, lock contention, HMR HTTP/2 protocol errors, and auto-start in non-interactive terminals.

    New Features

    Auto-inject NODE_EXTRA_CA_CERTS: Child processes spawned by portless run now automatically receive NODE_EXTRA_CA_CERTS pointing to the portless CA certificate, so Node.js subprocesses trust the local CA without manual configuration (#220)

    Bug Fixes

    Proxy startup on slow macOS security command: Fix the proxy failing to start when the macOS security command takes longer than expected to verify CA trust (#229)

    Lock contention with parallel commands: Fix lock contention that could cause failures when multiple portless commands run simultaneously (#230)

    ERR_HTTP2_PROTOCOL_ERROR during HMR: Fix HTTP/2 stream reset flood during hot module replacement causing protocol errors (#231)

    Proxy auto-start in non-interactive terminals: Fix auto-start failing in non-interactive terminals (e.g. IDE task runners) and when previous proxy config exists (#232)

    Contributors

    @ctate

    Original source
  • Apr 7, 2026
    • Date parsed from source:
      Apr 7, 2026
    • First seen by Releasebot:
      Apr 7, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.10.1

    portless adds a clean command and automatic hosts file syncing, making proxy cleanup easier and improving Safari and other .localhost setups that need loopback resolution.

    New Features

    portless clean: New command stops the proxy if it is running, removes the local CA from the OS trust store when it was installed by portless, deletes allowlisted files under known state directories, and removes the portless-managed block from the hosts file. Custom --cert and --key paths are never removed. (#213)

    Improvements

    Hosts file sync by default: The proxy now keeps the hosts file in sync with active routes automatically (improves Safari and other setups where .localhost subdomains do not resolve to loopback). Set PORTLESS_SYNC_HOSTS=0 to opt out. The managed block is removed from the hosts file when the proxy exits. (#213)

    Contributors

    @ctate

    Original source
  • Apr 7, 2026
    • Date parsed from source:
      Apr 7, 2026
    • First seen by Releasebot:
      Apr 7, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.10.0

    portless adds LAN mode for mDNS .local access and auto-injects --port for VitePlus dev servers.

    New Features

    LAN mode: New --lan flag exposes portless services to phones and other devices on the same network via mDNS .local hostnames. Auto-detects the active LAN IP, follows network changes, and supports --ip / PORTLESS_LAN_IP overrides for VPN or multi-interface setups. Publishes mDNS records with platform-native tools (dns-sd on macOS, avahi-publish-address on Linux). Adds *.local to generated certificate SANs so HTTPS works for LAN hostnames. (#168)

    VitePlus support: Auto-inject --port for VitePlus (vp) dev server (#147)

    Contributors

    @gabimoncha

    @carderne

    Original source
  • Apr 4, 2026
    • Date parsed from source:
      Apr 4, 2026
    • First seen by Releasebot:
      Apr 5, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.9.6

    portless fixes a WebSocket proxy memory leak with added close and end handlers.

    Bug Fixes

    WebSocket proxy memory leak: Add socket close/end handlers to prevent memory leaks in the WebSocket proxy (#208)

    Contributors

    @ctate

    Original source
  • Apr 4, 2026
    • Date parsed from source:
      Apr 4, 2026
    • First seen by Releasebot:
      Apr 5, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.9.5

    portless fixes --force route conflicts and includes the CA certificate in TLS chains for smoother TLS connections.

    Bug Fixes

    • --force kills existing process: --force now terminates the process that owns the conflicting route before registering a new one, instead of only removing the stale route entry (#204)
    • CA certificate included in TLS chain: The proxy now sends the CA certificate as part of the TLS chain, fixing UNABLE_TO_VERIFY_LEAF_SIGNATURE errors in clients that do not have the portless CA in their trust store (#203)

    Contributors

    @ctate

    Original source
  • Apr 2, 2026
    • Date parsed from source:
      Apr 2, 2026
    • First seen by Releasebot:
      Apr 3, 2026
    Vercel Labs logo

    portless by Vercel Labs

    v0.9.4

    portless fixes the npm package so the README is now included after a packaging issue was resolved.

    Bug Fixes

    README missing from npm package: The published npm package now includes its README. Previously .gitignore excluded the copied README during packing; an .npmignore override fixes this. (#197)

    Contributors

    @ctate

    Original source
Releasebot

Curated by the Releasebot team

Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.

Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.