Releases: getsentry/rust-sourcemap
Releases · getsentry/rust-sourcemap
9.3.1
- Support charset in
decode_data_urlby @coolreader18 in #137
9.3.0
New Features ✨
- feat(debugId): Serialize source maps with
debugId, notdebug_idby @szokeasaurusrex in #134
Build / dependencies / internal 🔧
- chore: Fix 1.88.0 clippy lints by @loewenheim in #130
Other
- Store SourceView linecache as offsets rather than pointers by @coolreader18 in #133
9.2.2
Various fixes & improvements
- fix: Correctly interpret missing line/column numbers (#129) by @loewenheim
- ref: Remove fail macro (#128) by @loewenheim
- perf: Make
adjust_mappingsfaster by reducing the type size (#124) by @kdy1 - perf: Optimize
flatten()even more (#122) by @kdy1
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_versiondependency (#108) by @paolobarbolini - feat: Add
debug_idfield 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 typeIndexIterand the functionsget_index_size,index_iter,
andidx_from_tokenhave been deleted;
- the functionsourcemap_from_tokenhas been turned into the method
sourcemaponToken;
- theidxparameter ofSourceMap::get_tokennow has the typeusize.