We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52df246 commit 3778eaeCopy full SHA for 3778eae
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 4.10.0 - 2025-06-13
2
+
3
+- fix: no longer fail in autocapture.
4
5
## 4.9.0 - 2025-06-13
6
7
- feat(ai): track reasoning and cache tokens in the LangChain callback
posthog/client.py
@@ -708,7 +708,7 @@ def capture_exception(
708
)
709
710
# Mark the exception as captured to prevent duplicate captures
711
- if exception is not None:
+ if exception is not None and isinstance(exception, BaseException):
712
setattr(exception, "__posthog_exception_captured", True)
713
714
return res
posthog/version.py
@@ -1,4 +1,4 @@
-VERSION = "4.9.0"
+VERSION = "4.10.0"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
0 commit comments