Skip to content

Commit

Permalink
build: Update symbolic to support UE5 (#1132)
Browse files Browse the repository at this point in the history
The development version of Unreal Engine 5 added magic bytes to their
crash archive format. This PR updates symbolic to support the new
format.
  • Loading branch information
jan-auer committed Nov 18, 2021
1 parent a21076a commit edabe34
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
- Extract measurement ratings, port from frontend. ([#1130](https://github.com/getsentry/relay/pull/1130))
- External Relays perform dynamic sampling and emit outcomes as client reports. This feature is now enabled *by default*. ([#1119](https://github.com/getsentry/relay/pull/1119))

**Bug Fixes**:

- Support Unreal Engine 5 crash reports. ([#1132](https://github.com/getsentry/relay/pull/1132))

**Internal**:

- Add more statsd metrics for relay metric bucketing. ([#1124](https://github.com/getsentry/relay/pull/1124), [#1128](https://github.com/getsentry/relay/pull/1128))
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion relay-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.55"
serde_urlencoded = "0.7.0"
smallvec = { version = "1.4.0", features = ["serde"] }
symbolic = { version = "8.4.0", optional = true, default-features=false, features=["unreal-serde"] }
symbolic = { version = "8.5.0", optional = true, default-features=false, features=["unreal-serde"] }
take_mut = "0.2.2"
tokio = { version = "1.0", features = ["rt-multi-thread"] } # in sync with reqwest
tokio-timer = "0.2.13"
Expand Down

0 comments on commit edabe34

Please sign in to comment.