File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 6.0.2 - 2025-07-02
2
+
3
+ - fix: send_feature_flags changed to default to false in ` Client::capture_exception `
4
+
1
5
# 6.0.1
2
6
3
7
- fix: response ` $process_person_profile ` property when passed to capture
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class OptionalCaptureArgs(TypedDict):
22
22
error ID if you capture an exception).
23
23
groups: Group identifiers to associate with this event (format: {group_type: group_key})
24
24
send_feature_flags: Whether to include currently active feature flags in the event properties.
25
- Defaults to True
25
+ Defaults to False
26
26
disable_geoip: Whether to disable GeoIP lookup for this event. Defaults to False.
27
27
"""
28
28
Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ def capture_exception(
522
522
):
523
523
distinct_id = kwargs .get ("distinct_id" , None )
524
524
properties = kwargs .get ("properties" , None )
525
- send_feature_flags = kwargs .get ("send_feature_flags" , True )
525
+ send_feature_flags = kwargs .get ("send_feature_flags" , False )
526
526
disable_geoip = kwargs .get ("disable_geoip" , None )
527
527
# this function shouldn't ever throw an error, so it logs exceptions instead of raising them.
528
528
# this is important to ensure we don't unexpectedly re-raise exceptions in the user's code.
Original file line number Diff line number Diff line change 1
- VERSION = "6.0.1 "
1
+ VERSION = "6.0.2 "
2
2
3
3
if __name__ == "__main__" :
4
4
print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments