Skip to content

Commit 6294b0a

Browse files
committed
ref(flags): move min version requirements from index to integration docs
1 parent 24d04c3 commit 6294b0a

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ notSupported:
2525

2626
<Alert level="info">
2727

28-
This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`).
28+
This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`), version 8.43.0 or higher.
2929

3030
</Alert>
3131

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ notSupported:
2525

2626
<Alert level="info">
2727

28-
This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`).
28+
This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`), version 8.43.0 or higher.
2929

3030
</Alert>
3131

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ notSupported:
2525

2626
<Alert level="info">
2727

28-
This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`).
28+
This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`), version 8.43.0 or higher.
2929

3030
</Alert>
3131

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` from PyPI](https://pypi.org/project/sentry-sdk/). The minimum version for this integration is 2.19.2.
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` from PyPI](https://pypi.org/project/sentry-sdk/). The minimum version for this integration is 2.19.2.
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)