Skip to content

Commit 2b22a2e

Browse files
authored
ref(flags): move min version requirements from index to integration docs (#12215)
* ref(flags): move min version requirements from index to integration docs * Rm pypi links * Move JS notes down to main desc * Ref python notes
1 parent 24d04c3 commit 2b22a2e

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

docs/platforms/javascript/common/configuration/integrations/featureflags.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ If you are using an external feature flag provider, refer to the [supported list
3737

3838
The Feature Flags integration allows you to manually track feature flag evaluations through an API.
3939
These evaluations are held in memory and sent to Sentry when an error occurs.
40-
**At the moment, we only support boolean flag evaluations.**
40+
**At the moment, we only support boolean flag evaluations.** This integration is available in
41+
Sentry SDK **versions 8.43.0 or higher.**
4142

4243
_Import names: `Sentry.featureFlagsIntegration` and `type Sentry.FeatureFlagsIntegration`_
4344

docs/platforms/javascript/common/configuration/integrations/launchdarkly.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ This integration only works inside a browser environment. It is only available f
2929

3030
</Alert>
3131

32-
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.**
32+
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
33+
Sentry SDK **versions 8.43.0 or higher.**
3334

3435
_Import names: `Sentry.launchDarklyIntegration` and `Sentry.buildLaunchDarklyFlagUsedHandler`_
3536

docs/platforms/javascript/common/configuration/integrations/openfeature.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ This integration only works inside a browser environment. It is only available f
2929

3030
</Alert>
3131

32-
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.**
32+
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
33+
Sentry SDK **versions 8.43.0 or higher.**
3334

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

docs/platforms/javascript/common/feature-flags/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your
2626

2727
## Prerequisites
2828

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

3131
## Enable Evaluation Tracking
3232

docs/platforms/python/feature-flags/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your
88

99
## Prerequisites
1010

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

1313
## Enable Evaluation Tracking
1414

docs/platforms/python/integrations/launchdarkly/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag ev
99

1010
## Install
1111

12-
Install `sentry-sdk` from PyPI.
12+
Install `sentry-sdk` (>=2.19.2) from PyPI.
1313

1414
```bash
1515
pip install --upgrade 'sentry-sdk'
@@ -41,7 +41,7 @@ import sentry_sdk
4141

4242
client = ldclient.get()
4343
client.variation("hello", Context.create("test-context"), False)
44-
44+
4545
sentry_sdk.capture_exception(Exception("Something went wrong!"))
4646
```
4747

docs/platforms/python/integrations/openfeature/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The [OpenFeature](https://openfeature.dev/) integration tracks feature flag eval
99

1010
## Install
1111

12-
Install `sentry-sdk` from PyPI.
12+
Install `sentry-sdk` (>=2.19.2) from PyPI.
1313

1414
```bash
1515
pip install --upgrade 'sentry-sdk'
@@ -41,7 +41,7 @@ import sentry_sdk
4141

4242
client = api.get_client()
4343
client.get_boolean_value("hello", default_value=False)
44-
44+
4545
sentry_sdk.capture_exception(Exception("Something went wrong!"))
4646
```
4747

0 commit comments

Comments
 (0)