github VoltAgent/voltagent @voltagent/server-hono@1.0.20

latest releases: @voltagent/server-core@1.0.18, @voltagent/server-hono@1.0.24, @voltagent/core@1.1.31...
one day ago

Patch Changes

  • #696 69bc5bf Thanks @fav-devs! - Add hostname configuration option to honoServer() to support IPv6 and dual-stack networking.

    The honoServer() function now accepts a hostname option that allows configuring which network interface the server binds to. This fixes deployment issues on platforms like Railway that require IPv6 binding for private networking.

    Example usage:

    import { honoServer } from "@voltagent/server-hono";
    
    new VoltAgent({
      agents,
      server: honoServer({
        port: 8080,
        hostname: "::", // Binds to IPv6/dual-stack
      }),
    });

    Options:

    • "0.0.0.0" - Binds to all IPv4 interfaces (default, maintains backward compatibility)
    • "::" - Binds to all IPv6 interfaces (dual-stack on most systems)
    • "localhost" or "127.0.0.1" - Only localhost access

    Fixes #694

Don't miss a new voltagent release

NewReleases is sending notifications on new releases.