Releases: getsentry/rust-sourcemap
Releases · getsentry/rust-sourcemap
9.2.2
9.2.1
9.2.0
Various fixes & improvements
- feat: Add ability to adjust SourceMapIndex offset rows (#119) by @szokeasaurusrex
- feat: Enable getting/setting debug ID on DecodedMap (#118) by @szokeasaurusrex
- build: upgrade dependencies (#107) by @paolobarbolini
- build: drop unused
rustc_version
dependency (#108) by @paolobarbolini - feat: Add
debug_id
field toSourceMapIndex
(#117) by @szokeasaurusrex - ref(tests): Move tests under
cfg(test)
(#115) by @szokeasaurusrex - ref(utils): Fix clippy lint (#116) by @szokeasaurusrex
- fix(Hermes): Use 1-based indexing for lines (#106) by @pablomatiasgomez
9.1.2
Various fixes & improvements
- Prefer
"debug_id"
for sourcemap debug IDs (#101) by @loewenheim
9.1.1
Various fixes & improvements
- Fixed an error when deserializing sourcemaps with
both"debugId"
and"debug_id"
keys (#100) by @loewenheim
9.1.0
Various fixes & improvements
- Add support for ignoreList property (#93) by @wbinnssmith
9.0.1
Various fixes and improvements
- Debug IDs can be read from the "debugId" field in addition to "debug_id" (#97) by @loewenheim.
9.0.0
Various fixes and improvements
- ref: Tokens within a sourcemap are now always sorted by their position in the
minified file (#91) by @loewenheim.
Consequently:
- the typeIndexIter
and the functionsget_index_size
,index_iter
,
andidx_from_token
have been deleted;
- the functionsourcemap_from_token
has been turned into the method
sourcemap
onToken
;
- theidx
parameter ofSourceMap::get_token
now has the typeusize
.