File tree Expand file tree Collapse file tree 3 files changed +24
-6
lines changed
docs/platforms/python/integrations Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag ev
99
1010## Install
1111
12- Install ` sentry-sdk ` (>=2.19.2) from PyPI.
12+ Install ` sentry-sdk ` from PyPI with the ` launchdarkly ` extra .
1313
1414``` bash
15- pip install --upgrade ' sentry-sdk'
15+ pip install --upgrade ' sentry-sdk[launchdarkly] '
1616```
1717
1818## Configure
@@ -47,4 +47,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4747
4848Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false".
4949
50+ ## Supported Versions
51+
52+ - launchdarkly-server-sdk >= 9.8.0
53+ - sentry-sdk >= 2.19.2
54+ - python >= 3.8
55+
5056<PlatformContent includePath = " feature-flags/next-steps" />
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ The [OpenFeature](https://openfeature.dev/) integration tracks feature flag eval
99
1010## Install
1111
12- Install ` sentry-sdk ` (>=2.19.2) from PyPI.
12+ Install ` sentry-sdk ` from PyPI with the ` openfeature ` extra .
1313
1414``` bash
15- pip install --upgrade ' sentry-sdk'
15+ pip install --upgrade ' sentry-sdk[openfeature] '
1616```
1717
1818## Configure
@@ -47,4 +47,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4747
4848Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false".
4949
50+ ## Supported Versions
51+
52+ - openfeature-sdk >= 0.7.1
53+ - sentry-sdk >= 2.19.2
54+ - python >= 3.8
55+
5056<PlatformContent includePath = " feature-flags/next-steps" />
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ The [Unleash](https://www.getunleash.io/) integration tracks feature flag evalua
99
1010## Install
1111
12- Install ` sentry-sdk ` (>=2.20.0) and ` UnleashClient ` (>=6.0.1) from PyPI .
12+ Install ` sentry-sdk ` from PyPI with the ` unleash ` extra .
1313
1414``` bash
15- pip install --upgrade sentry-sdk UnleashClient
15+ pip install --upgrade ' sentry-sdk[unleash] '
1616```
1717
1818## Configure
@@ -49,4 +49,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4949Visit the [ Sentry website] ( https://sentry.io/issues/ ) and confirm that your error
5050event has recorded the feature flag "test-flag", and its value is equal to ` test_flag_enabled ` .
5151
52+ ## Supported Versions
53+
54+ - UnleashClient >= 6.0.1
55+ - sentry-sdk >= 2.20.0
56+ - python >= 3.8
57+
5258<PlatformContent includePath = " feature-flags/next-steps" />
You can’t perform that action at this time.
0 commit comments