Skip to content

Commit

Permalink
fix(sourcemaps): Correctly read files with debug_id and debugId (#2268)
Browse files Browse the repository at this point in the history
Previously parsing sourcemaps containing both `debug_id` and `debugId`
would fail because the keys conflicted. This rectifies the problem by
updating `symbolic` and `sourcemap`.
  • Loading branch information
loewenheim authored Nov 26, 2024
1 parent b72ab72 commit d69e741
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ sentry = { version = "0.34.0", default-features = false, features = [
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
sha1_smol = { version = "1.0.0", features = ["serde"] }
sourcemap = { version = "9.0.1", features = ["ram_bundle"] }
symbolic = { version = "12.12.1", features = ["debuginfo-serde", "il2cpp"] }
sourcemap = { version = "9.1.2", features = ["ram_bundle"] }
symbolic = { version = "12.12.3", features = ["debuginfo-serde", "il2cpp"] }
thiserror = "1.0.38"
url = "2.3.1"
username = "0.2.0"
Expand Down

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

0 comments on commit d69e741

Please sign in to comment.