Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing net48 release value #1142

Merged
merged 2 commits into from
Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
**Bug Fixes**:

- Support Unreal Engine 5 crash reports. ([#1132](https://github.com/getsentry/relay/pull/1132))
- Add missing .NET 4.8 release value. ([#1142](https://github.com/getsentry/relay/pull/1142))

**Internal**:

Expand Down
1 change: 1 addition & 0 deletions relay-general/src/store/normalize/contexts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ fn normalize_runtime_context(runtime: &mut RuntimeContext) {
"528049" => Some("4.8".to_string()),
"528209" => Some("4.8".to_string()),
"528372" => Some("4.8".to_string()),
"528449" => Some("4.8".to_string()),
_ => None,
};

Expand Down