diff --git a/docs/platforms/javascript/common/configuration/integrations/featureflags.mdx b/docs/platforms/javascript/common/configuration/integrations/featureflags.mdx index 718234edd9b85d..ce9abcb7a50907 100644 --- a/docs/platforms/javascript/common/configuration/integrations/featureflags.mdx +++ b/docs/platforms/javascript/common/configuration/integrations/featureflags.mdx @@ -37,7 +37,8 @@ If you are using an external feature flag provider, refer to the [supported list The Feature Flags integration allows you to manually track feature flag evaluations through an API. These evaluations are held in memory and sent to Sentry when an error occurs. -**At the moment, we only support boolean flag evaluations.** +**At the moment, we only support boolean flag evaluations.** This integration is available in +Sentry SDK **versions 8.43.0 or higher.** _Import names: `Sentry.featureFlagsIntegration` and `type Sentry.FeatureFlagsIntegration`_ diff --git a/docs/platforms/javascript/common/configuration/integrations/launchdarkly.mdx b/docs/platforms/javascript/common/configuration/integrations/launchdarkly.mdx index 26e4791c9beac6..5dcbfda7256c5f 100644 --- a/docs/platforms/javascript/common/configuration/integrations/launchdarkly.mdx +++ b/docs/platforms/javascript/common/configuration/integrations/launchdarkly.mdx @@ -29,7 +29,8 @@ This integration only works inside a browser environment. It is only available f -The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag evaluations produced by the LaunchDarkly SDK. These evaluations are held in memory, and in the event an error occurs, sent to Sentry for review and analysis. **At the moment, we only support boolean flag evaluations.** +The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag evaluations produced by the LaunchDarkly SDK. These evaluations are held in memory, and in the event an error occurs, sent to Sentry for review and analysis. **At the moment, we only support boolean flag evaluations.** This integration is available in +Sentry SDK **versions 8.43.0 or higher.** _Import names: `Sentry.launchDarklyIntegration` and `Sentry.buildLaunchDarklyFlagUsedHandler`_ diff --git a/docs/platforms/javascript/common/configuration/integrations/openfeature.mdx b/docs/platforms/javascript/common/configuration/integrations/openfeature.mdx index 2d64f586f66f80..e542ac08d8f6bd 100644 --- a/docs/platforms/javascript/common/configuration/integrations/openfeature.mdx +++ b/docs/platforms/javascript/common/configuration/integrations/openfeature.mdx @@ -29,7 +29,8 @@ This integration only works inside a browser environment. It is only available f -The [OpenFeature](https://openfeature.dev/) integration tracks feature flag evaluations produced by the OpenFeature SDK. These evaluations are held in memory, and in the event an error occurs, sent to Sentry for review and analysis. **At the moment, we only support boolean flag evaluations.** +The [OpenFeature](https://openfeature.dev/) integration tracks feature flag evaluations produced by the OpenFeature SDK. These evaluations are held in memory, and in the event an error occurs, sent to Sentry for review and analysis. **At the moment, we only support boolean flag evaluations.** This integration is available in +Sentry SDK **versions 8.43.0 or higher.** _Import name: `Sentry.openFeatureIntegration` and `Sentry.OpenFeatureIntegrationHook`_ diff --git a/docs/platforms/javascript/common/feature-flags/index.mdx b/docs/platforms/javascript/common/feature-flags/index.mdx index 0677cd61cf1446..f1e080c0880419 100644 --- a/docs/platforms/javascript/common/feature-flags/index.mdx +++ b/docs/platforms/javascript/common/feature-flags/index.mdx @@ -26,7 +26,7 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your ## Prerequisites -* You have the JavaScript SDK installed (version 8.43.0 or higher). +* You have the JavaScript SDK installed. ## Enable Evaluation Tracking diff --git a/docs/platforms/python/feature-flags/index.mdx b/docs/platforms/python/feature-flags/index.mdx index 75b471db249672..94e8c7372d9523 100644 --- a/docs/platforms/python/feature-flags/index.mdx +++ b/docs/platforms/python/feature-flags/index.mdx @@ -8,7 +8,7 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your ## Prerequisites -* You have the Python SDK installed (version 2.19.2 or higher). +* You have the Python SDK installed. ## Enable Evaluation Tracking diff --git a/docs/platforms/python/integrations/launchdarkly/index.mdx b/docs/platforms/python/integrations/launchdarkly/index.mdx index ebf6b1f21e94c4..e642fb0826a869 100644 --- a/docs/platforms/python/integrations/launchdarkly/index.mdx +++ b/docs/platforms/python/integrations/launchdarkly/index.mdx @@ -9,7 +9,7 @@ The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag ev ## Install -Install `sentry-sdk` from PyPI. +Install `sentry-sdk` (>=2.19.2) from PyPI. ```bash pip install --upgrade 'sentry-sdk' @@ -41,7 +41,7 @@ import sentry_sdk client = ldclient.get() client.variation("hello", Context.create("test-context"), False) - + sentry_sdk.capture_exception(Exception("Something went wrong!")) ``` diff --git a/docs/platforms/python/integrations/openfeature/index.mdx b/docs/platforms/python/integrations/openfeature/index.mdx index 6c86cefee6c5e0..59b260e38699ec 100644 --- a/docs/platforms/python/integrations/openfeature/index.mdx +++ b/docs/platforms/python/integrations/openfeature/index.mdx @@ -9,7 +9,7 @@ The [OpenFeature](https://openfeature.dev/) integration tracks feature flag eval ## Install -Install `sentry-sdk` from PyPI. +Install `sentry-sdk` (>=2.19.2) from PyPI. ```bash pip install --upgrade 'sentry-sdk' @@ -41,7 +41,7 @@ import sentry_sdk client = api.get_client() client.get_boolean_value("hello", default_value=False) - + sentry_sdk.capture_exception(Exception("Something went wrong!")) ```