Skip to content

Commit

Permalink
ref(flags): move min version requirements from index to integration docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aliu39 committed Dec 26, 2024
1 parent 24d04c3 commit 6294b0a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ notSupported:

<Alert level="info">

This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`).
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.

</Alert>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ notSupported:

<Alert level="info">

This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`).
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.

</Alert>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ notSupported:

<Alert level="info">

This integration only works inside a browser environment. It is only available from a package-based install (e.g. `npm` or `yarn`).
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.

</Alert>

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

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

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

0 comments on commit 6294b0a

Please sign in to comment.