File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1+ # 7.4.0 - 2025-12-06
2+
3+ fix: remove unused $exception_message
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 @@ -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 }
Original file line number Diff line number Diff 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"
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