Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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`_

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ This integration only works inside a browser environment. It is only available f

</Alert>

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`_

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ This integration only works inside a browser environment. It is only available f

</Alert>

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.**
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plural 'versions'?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thought it flowed a little better, but I'm ok either way


_Import name: `Sentry.openFeatureIntegration` and `Sentry.OpenFeatureIntegrationHook`_

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/javascript/common/feature-flags/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your

## Prerequisites

* You have the <PlatformLink to="/">JavaScript SDK installed</PlatformLink> (version 8.43.0 or higher).
* You have the <PlatformLink to="/">JavaScript SDK installed</PlatformLink>.

## Enable Evaluation Tracking

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/python/feature-flags/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your

## Prerequisites

* You have the <PlatformLink to="/">Python SDK installed</PlatformLink> (version 2.19.2 or higher).
* You have the <PlatformLink to="/">Python SDK installed</PlatformLink>.

## Enable Evaluation Tracking

Expand Down
4 changes: 2 additions & 2 deletions docs/platforms/python/integrations/launchdarkly/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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!"))
```

Expand Down
4 changes: 2 additions & 2 deletions docs/platforms/python/integrations/openfeature/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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!"))
```

Expand Down
Loading