Compare commits

...
Author SHA1 Message Date
David NewellandGitHub 986a3ad04e Merge branch 'master' into dn-fix/default-in-app-false 2024-11-27 22:28:25 +00:00
David Newell 9cc8a2929c bump versions 2024-11-27 21:46:39 +00:00
David Newell f2ad43426f fix: default in_app to false 2024-11-27 21:44:27 +00:00
3 changed files with 8 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
## 3.7.5 - 2024-11-27
1. Fix a bug where `in_app` was occassionally not present on exception stack frames.
## 3.7.4 - 2024-11-25
1. Fix bug where this SDK incorrectly sent feature flag events with null values when calling `get_feature_flag_payload`.
+3
View File
@@ -733,6 +733,7 @@ def set_in_app_in_frames(frames, in_app_exclude, in_app_include, project_root=No
# if frame has no abs_path, skip further checks
abs_path = frame.get("abs_path")
if abs_path is None:
frame["in_app"] = False
continue
if _is_external_source(abs_path):
@@ -743,6 +744,8 @@ def set_in_app_in_frames(frames, in_app_exclude, in_app_include, project_root=No
frame["in_app"] = True
continue
frame["in_app"] = False
return frames
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION = "3.7.4"
VERSION = "3.7.5"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201