diff --git a/docs/platforms/javascript/common/configuration/apis.mdx b/docs/platforms/javascript/common/configuration/apis.mdx index 52e65a9062f3ec..4b32b78911054f 100644 --- a/docs/platforms/javascript/common/configuration/apis.mdx +++ b/docs/platforms/javascript/common/configuration/apis.mdx @@ -1461,9 +1461,9 @@ export const GET = wrapServerRouteWithSentry(async () => { ## Server Request Instrumentation -Astro server requests are automatically instrumented starting from Astro version `3.5.2`. +Astro server requests are automatically instrumented. -If you're below Astro version `3.5.2` or want to customize instrumentation, you can use `Sentry.handleRequest()` as an Astro middleware. +If you want to customize instrumentation, you can use `Sentry.handleRequest()` as an Astro middleware. -If you're using Astro version `>=3.5.2`, you must disable automatic instrumentation before adding this middleware manually. +You must disable automatic instrumentation before adding this middleware manually. diff --git a/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx b/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx index a306db05e3ceab..0ab4eae0040756 100644 --- a/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx +++ b/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx @@ -42,7 +42,7 @@ Once you enable tracing, the SDK automatically captures performance data without ## Disable Automatic Instrumentation -For Astro version `3.5.2` and up, you can optionally disable the automatic server instrumentation by turning off the `requestHandler` auto instrumentation option: +You can optionally disable the automatic server instrumentation by turning off the `requestHandler` auto instrumentation option: ```javascript {filename:astro.config.mjs} import { defineConfig } from "astro/config"; diff --git a/docs/platforms/javascript/guides/astro/index.mdx b/docs/platforms/javascript/guides/astro/index.mdx index c33822a3e82197..f7daddeabd7504 100644 --- a/docs/platforms/javascript/guides/astro/index.mdx +++ b/docs/platforms/javascript/guides/astro/index.mdx @@ -15,7 +15,7 @@ You need: - A Sentry [account](https://sentry.io/signup/) and [project](/product/projects/) - Your application up and running -- Astro `3.0.0` or above +- Astro `4.0.0` or above - If you're using Astro's Netlify adapter (`@astrojs/netlify`), you need version `5.0.0` or above