Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 6.0.2 - 2025-07-02

- fix: send_feature_flags changed to default to false in `Client::capture_exception`

# 6.0.1

- fix: response `$process_person_profile` property when passed to capture
Expand Down
2 changes: 1 addition & 1 deletion posthog/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class OptionalCaptureArgs(TypedDict):
error ID if you capture an exception).
groups: Group identifiers to associate with this event (format: {group_type: group_key})
send_feature_flags: Whether to include currently active feature flags in the event properties.
Defaults to True
Defaults to False
disable_geoip: Whether to disable GeoIP lookup for this event. Defaults to False.
"""

Expand Down
2 changes: 1 addition & 1 deletion posthog/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def capture_exception(
):
distinct_id = kwargs.get("distinct_id", None)
properties = kwargs.get("properties", None)
send_feature_flags = kwargs.get("send_feature_flags", True)
send_feature_flags = kwargs.get("send_feature_flags", False)
disable_geoip = kwargs.get("disable_geoip", None)
# this function shouldn't ever throw an error, so it logs exceptions instead of raising them.
# this is important to ensure we don't unexpectedly re-raise exceptions in the user's code.
Expand Down
2 changes: 1 addition & 1 deletion posthog/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "6.0.1"
VERSION = "6.0.2"

if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
Loading