Skip to content

Commit 977ccaf

Browse files
committed
fix: remove unused
1 parent ce38fb2 commit 977ccaf

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 7.4.0 - 2025-12-06
2+
3+
fix: remove unused $exception_message
4+
15
# 7.3.0 - 2025-12-05
26

37
feat: improve code variables capture masking

posthog/client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,9 +1002,6 @@ def capture_exception(
10021002

10031003
properties = {
10041004
"$exception_type": all_exceptions_with_trace_and_in_app[0].get("type"),
1005-
"$exception_message": all_exceptions_with_trace_and_in_app[0].get(
1006-
"value"
1007-
),
10081005
"$exception_list": all_exceptions_with_trace_and_in_app,
10091006
**properties,
10101007
}

posthog/test/test_client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,6 @@ def test_basic_capture_exception_with_no_exception_given(self):
201201
self.assertEqual(
202202
capture_call[1]["properties"]["$exception_type"], "Exception"
203203
)
204-
self.assertEqual(
205-
capture_call[1]["properties"]["$exception_message"], "test exception"
206-
)
207204
self.assertEqual(
208205
capture_call[1]["properties"]["$exception_list"][0]["mechanism"][
209206
"type"

posthog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "7.3.0"
1+
VERSION = "7.3.1"
22

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

0 commit comments

Comments
 (0)