Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.7.3 - 2024-11-19

1. Rename `platform` property on each frame of exception stacks to `lang`.

## 3.7.2 - 2024-11-19

1. Add `type` property to exception stacks.
Expand Down
2 changes: 1 addition & 1 deletion posthog/exception_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def serialize_frame(
tb_lineno = frame.f_lineno

rv = {
"platform": "python",
"lang": "python",
"filename": filename_for_module(module, abs_path) or None,
"abs_path": os.path.abspath(abs_path) if abs_path else None,
"function": function or "<unknown>",
Expand Down
2 changes: 1 addition & 1 deletion posthog/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "3.7.2"
VERSION = "3.7.3"

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