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 @@
## 4.10.0 - 2025-06-13

- fix: no longer fail in autocapture.

## 4.9.0 - 2025-06-13

- feat(ai): track reasoning and cache tokens in the LangChain callback
Expand Down
2 changes: 1 addition & 1 deletion posthog/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def capture_exception(
)

# Mark the exception as captured to prevent duplicate captures
if exception is not None:
if exception is not None and isinstance(exception, BaseException):
setattr(exception, "__posthog_exception_captured", True)

return res
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 = "4.9.0"
VERSION = "4.10.0"

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