Skip to content

Commit

Permalink
Add support for reading zstd compressed ELF debug section (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem authored Jun 3, 2024
1 parent 2767e21 commit 53f6a0f
Show file tree
Hide file tree
Showing 9 changed files with 179 additions and 71 deletions.
16 changes: 7 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,22 @@

## Unreleased

**Internal**
**Features**

- Update tokio to latest version ([#833](https://github.com/getsentry/symbolic/pull/833))
- Fix infinite recursion caused by indirect self-references when resolving function names ([#836](https://github.com/getsentry/symbolic/pull/836))
- Switch to workspace dependencies ([#841](https://github.com/getsentry/symbolic/pull/841))
- Add support for reading `zstd` compressed ELF debug section ([#843](https://github.com/getsentry/symbolic/pull/843))

**Fixes**

- sourcebundles: Only valid UTF-8 files can be written into sourcebundles ([#816](https://github.com/getsentry/symbolic/pull/816))
- Fix an issue when extracting the name of the debug file from a PE object ([#825](https://github.com/getsentry/symbolic/pull/825))

**Features**

## 12.8.0

**Internal**

**Fixes**
- Update tokio to latest version ([#833](https://github.com/getsentry/symbolic/pull/833))
- Fix infinite recursion caused by indirect self-references when resolving function names ([#836](https://github.com/getsentry/symbolic/pull/836))
- Switch to workspace dependencies ([#841](https://github.com/getsentry/symbolic/pull/841))

## 12.8.0

**Features**

Expand Down
116 changes: 83 additions & 33 deletions Cargo.lock

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

41 changes: 22 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
[workspace]
resolver = "2"
members = [
"symbolic*",
"examples/*",
]
members = ["symbolic*", "examples/*"]

[workspace.dependencies]
anyhow = "1.0.32"
Expand All @@ -18,11 +15,17 @@ criterion = { version = "0.5.1", features = ["html_reports"] }
debugid = "0.8.0"
dmsort = "1.0.2"
elementtree = "1.2.3"
elsa = "1.8.0"
elsa = "1.8.0"
fallible-iterator = "0.3.0"
flate2 = { version = "1.0.25" , default-features = false, features = ["rust_backend"] }
gimli = { version = "0.29.0" , default-features = false, features = ["read", "std", "fallible-iterator"] }
goblin = { version = "0.8.0" , default-features = false }
flate2 = { version = "1.0.25", default-features = false, features = [
"rust_backend",
] }
gimli = { version = "0.30.0", default-features = false, features = [
"read",
"std",
"fallible-iterator",
] }
goblin = { version = "0.8.0", default-features = false }
indexmap = "2.0.0"
insta = { version = "1.28.0", features = ["yaml"] }
itertools = "0.13.0"
Expand All @@ -33,16 +36,16 @@ minidump = "0.21.0"
minidump-processor = "0.21.0"
minidump-unwind = "0.21.0"
msvc-demangler = "0.10.0"
nom = "7.1.3"
nom-supreme = "0.8.0"
once_cell = "1.17.1"
parking_lot = "0.12.1"
pdb-addr2line = "0.10.4"
nom = "7.1.3"
nom-supreme = "0.8.0"
once_cell = "1.17.1"
parking_lot = "0.12.1"
pdb-addr2line = "0.10.4"
proguard = { version = "5.4.0", features = ["uuid"] }
regex = "1.7.1"
regex = "1.7.1"
rustc-demangle = "0.1.21"
# keep this in sync with whatever version `goblin` uses
scroll = "0.12.0"
scroll = "0.12.0"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.102"
similar-asserts = "1.4.2"
Expand All @@ -55,7 +58,7 @@ symbolic-common = { version = "12.8.0", path = "symbolic-common" }
symbolic-debuginfo = { version = "12.8.0", path = "symbolic-debuginfo" }
symbolic-demangle = { version = "12.8.0", path = "symbolic-demangle" }
symbolic-il2cpp = { version = "12.8.0", path = "symbolic-il2cpp" }
symbolic-ppdb = { version = "12.8.0", path = "symbolic-ppdb" }
symbolic-ppdb = { version = "12.8.0", path = "symbolic-ppdb" }
symbolic-sourcemapcache = { version = "12.8.0", path = "symbolic-sourcemapcache" }
symbolic-symcache = { version = "12.8.0", path = "symbolic-symcache" }
symbolic-testutils = { path = "symbolic-testutils" }
Expand All @@ -68,9 +71,10 @@ tracing = "0.1.34"
tracing-subscriber = "0.3.11"
uuid = "1.3.0"
walkdir = "2.3.1"
wasmparser = "0.208.1"
wasmparser = "0.209.1"
watto = { version = "0.1.0", features = ["writer", "strings"] }
zip = { version = "1.3.1" , default-features = false, features = ["deflate"] }
zip = { version = "2.1.2", default-features = false, features = ["deflate"] }
zstd = { version = "0.13.1" }


[profile.release]
Expand All @@ -79,4 +83,3 @@ lto = true

[profile.bench]
debug = true

Loading

0 comments on commit 53f6a0f

Please sign in to comment.