Skip to content

Releases: getsentry/rust-sourcemap

9.3.1

09 Dec 08:29

Choose a tag to compare

9.3.0

04 Dec 10:27

Choose a tag to compare

New Features ✨

Build / dependencies / internal 🔧

Other

  • Store SourceView linecache as offsets rather than pointers by @coolreader18 in #133

9.2.2

02 Jun 15:19

Choose a tag to compare

Various fixes & improvements

  • fix: Correctly interpret missing line/column numbers (#129) by @loewenheim
  • ref: Remove fail macro (#128) by @loewenheim
  • perf: Make adjust_mappings faster by reducing the type size (#124) by @kdy1
  • perf: Optimize flatten() even more (#122) by @kdy1

9.2.1

16 May 07:47

Choose a tag to compare

Various fixes & improvements

  • perf: Make SourceMapIndex::flatten more efficient (#121) by @kdy1

9.2.0

29 Apr 13:41

Choose a tag to compare

Various fixes & improvements

9.1.2

26 Nov 12:10

Choose a tag to compare

Various fixes & improvements

9.1.1

26 Nov 09:43

Choose a tag to compare

Various fixes & improvements

  • Fixed an error when deserializing sourcemaps with
    both "debugId" and "debug_id" keys (#100) by @loewenheim

9.1.0

13 Nov 11:26

Choose a tag to compare

Various fixes & improvements

9.0.1

06 Nov 16:17

Choose a tag to compare

Various fixes and improvements

  • Debug IDs can be read from the "debugId" field in addition to "debug_id" (#97) by @loewenheim.

9.0.0

02 Aug 09:22

Choose a tag to compare

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 type IndexIter and the functions get_index_size, index_iter,
    and idx_from_token have been deleted;
    - the function sourcemap_from_token has been turned into the method
    sourcemap on Token;
    - the idx parameter of SourceMap::get_token now has the type usize.