Skip to content

Releases: getsentry/rust-sourcemap

9.2.2

02 Jun 15:19
Compare
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
Compare
Choose a tag to compare

Various fixes & improvements

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

9.2.0

29 Apr 13:41
Compare
Choose a tag to compare

Various fixes & improvements

9.1.2

26 Nov 12:10
Compare
Choose a tag to compare

Various fixes & improvements

9.1.1

26 Nov 09:43
Compare
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
Compare
Choose a tag to compare

Various fixes & improvements

9.0.1

06 Nov 16:17
Compare
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
Compare
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.

8.0.1

02 Apr 09:36
Compare
Choose a tag to compare

Various fixes & improvements

  • feat: Skip encoding range mappings if it's empty (#86) by @kdy1

8.0.0

22 Mar 09:45
Compare
Choose a tag to compare

Various fixes & improvements

  • feat: Add support for range mappings proposal (#77) by @kdy1
  • perf: using Arc instead of String (#84) by @underfin
  • perf: using FxHashMap instead of HashMap (#83) by @underfin