Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 May 02:31
· 68 commits to main since this release

2.0.0 (2025-05-21)

Features

BREAKING CHANGES

  • SSE is no longer available as a separate option, but instead is a default fallback of streamable HTTP

Migration

If you had SSE server, simply replace "sse" with "httpStream" and drop endpoint setting:

server.start({
-  transportType: "sse",
+  transportType: "httpStream",
-  sse: {
+  httpStream: {
-    endpoint: "/sse",
    port: 8080,
  },
});

If you already had streamable HTTP server, simply drop endpoint (it already defaults to /stream for streamable HTTP and /sse for SSE):

server.start({
  transportType: "httpStream",
  httpStream: {
-    endpoint: "/stream",
    port: 8080,
  },
});

Note

There are no breaking changes to client integrations, i.e. clients that were already using your streamable HTTP or SSE server, will continue to work without the need to make adjustments to their configuration.

Note

This change is also being rolled out to all servers hosted by Glama.