File tree Expand file tree Collapse file tree 4 files changed +5
-11
lines changed
Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 1+ # 7.3.1 - 2025-12-06
2+
3+ fix: remove unused $exception_message and $exception_type
4+
15# 7.3.0 - 2025-12-05
26
37feat: improve code variables capture masking
Original file line number Diff line number Diff line change @@ -1001,10 +1001,6 @@ def capture_exception(
10011001 all_exceptions_with_trace_and_in_app = event ["exception" ]["values" ]
10021002
10031003 properties = {
1004- "$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- ),
10081004 "$exception_list" : all_exceptions_with_trace_and_in_app ,
10091005 ** properties ,
10101006 }
Original file line number Diff line number Diff line change @@ -198,12 +198,6 @@ def test_basic_capture_exception_with_no_exception_given(self):
198198 print (capture_call )
199199 self .assertEqual (capture_call [1 ]["distinct_id" ], "distinct_id" )
200200 self .assertEqual (capture_call [0 ][0 ], "$exception" )
201- self .assertEqual (
202- capture_call [1 ]["properties" ]["$exception_type" ], "Exception"
203- )
204- self .assertEqual (
205- capture_call [1 ]["properties" ]["$exception_message" ], "test exception"
206- )
207201 self .assertEqual (
208202 capture_call [1 ]["properties" ]["$exception_list" ][0 ]["mechanism" ][
209203 "type"
Original file line number Diff line number Diff line change 1- VERSION = "7.3.0 "
1+ VERSION = "7.3.1 "
22
33if __name__ == "__main__" :
44 print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments