From f061265d73fc38d27928c721f2314616a084b3ac Mon Sep 17 00:00:00 2001 From: s1gr1d <32902192+s1gr1d@users.noreply.github.com> Date: Thu, 28 May 2026 17:34:20 +0200 Subject: [PATCH] docs(hono): Remove beta warning --- docs/platforms/javascript/guides/hono/index.mdx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/platforms/javascript/guides/hono/index.mdx b/docs/platforms/javascript/guides/hono/index.mdx index 14cb232e534dd3..82bc3916ffb31e 100644 --- a/docs/platforms/javascript/guides/hono/index.mdx +++ b/docs/platforms/javascript/guides/hono/index.mdx @@ -9,13 +9,6 @@ categories: - server-node --- - - -This SDK is currently in **beta**. Beta features are still in progress and may have bugs. -Please reach out on [GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback or concerns - - - The `@sentry/hono` SDK supports Hono 4+ across multiple runtimes: Cloudflare Workers, Node.js, and Bun. It works as Hono middleware, so you can drop it into your existing app with minimal setup. @@ -168,6 +161,7 @@ Node.js requires Sentry to initialize before your application loads so it can in ```typescript {filename:instrument.mjs} +// IMPORTANT: import from `@sentry/hono/node`, not `@sentry/node` import * as Sentry from "@sentry/hono/node"; // ___PRODUCT_OPTION_START___ profiling import { nodeProfilingIntegration } from "@sentry/profiling-node";