Skip to content

Releases: rust-minidump/minidump-writer

Release 0.8.2

21 Sep 13:38
Compare
Choose a tag to compare

Added

  • PR#86 added support for i686-android-linux.

Fixed

  • PR#85 removed the dependency on chrono.
  • PR#89 resolved #88 by merging ranges that were mapped, but had 1 or more unmapped ranges in between them.

Changed

  • PR#87 updated some dependencies.

Release 0.8.1

21 Jun 09:47
Compare
Choose a tag to compare

Added

  • PR#70 resolved #8 by adding support for writing MemoryInfoListStream on Linux/Android targets, this allows minidump consumers to process minidumps more easily without needing to parse and understand Linux-specific information. Thanks @afranchuk!
  • PR#81 stabilized arm and aarch64 support for unknown-linux and linux-android, as well as adding support for x86_64-linux-android.

Changed

  • PR#70 replaced the custom reading of procfs information used when generating a minidump on Linux to use the procfs crate instead, removing a bunch of code.
  • PR#80 along with PR#84 replaced procfs with procfs-core, removing unneeded dependencies such as windows-sys.

Fixed

  • PR#78 resolved #24 by ignoring guard pages when dumping the stack to the minidump in the event of a stack overflow.
  • PR#83 resolved #82 by correctly aligning a structure.

Release 0.8.0

03 Apr 11:44
Compare
Choose a tag to compare

Removed

  • PR#77 removed the dependency on winapi, all bindings are either part of minidump-writer or crash-context now.

Changed

  • PR#77 closed #67 by allowing the user to specify the MinidumpType flags when creating a minidump.

Fixed

  • PR#68 resolved #29 by ignoring the bening ESRCH error when detaching pthreads. Thanks @afranchuk!
  • PR#74 resolved #73 by ensuring the NT_GNU_BUILD_ID section had the proper correct GNU name before using it as the build identifier.

Release 0.7.0

17 Nov 13:53
Compare
Choose a tag to compare

Changed

  • PR#65 updated crash-context to 0.5, which has support for a custom capture_context to replace RtlCaptureContext on Windows, due to improper bindings and deficiencies, resolving #63.
  • PR#65 replaced most of the custom bindings from PR#60 with bindings from either crash-context or winapi.

Release 0.6.0

15 Nov 12:35
Compare
Choose a tag to compare

Changed

  • PR#60 removed the dependency on windows-sys due the massive version churn, resolving #58. This should allow projects to more easily integrate this crate into their project without introducing multiple versions of transitive dependencies.
  • PR#62 replaced MDExceptionCodeLinux with minidump_common::ExceptionCodeLinux.
  • PR#64 updated dependencies.

Release 0.5.0

21 Oct 11:41
Compare
Choose a tag to compare

Changed

  • PR#53 made the mem_writer and dir_section modules public. Thanks @sage-msft!
  • PR#55 bumped nix, minidump-common, minidump, minidump-processor and dump_syms. Thanks
    @sfackler!
  • PR#57 bumped windows-sys to 0.42.

Removed

Release 0.4.0

21 Jul 14:06
Compare
Choose a tag to compare

Changed

  • PR#50 updated minidump-common and crash-context.

Fixed

  • PR#50 resolved #33 by encoding the full exception info in the exception_information field of the exception stream.
  • PR#50 resolved #34 by unwrapping EXC_CRASH exceptions to retrieve the wrapped exception.

Release 0.3.0

15 Jul 15:54
Compare
Choose a tag to compare

Fixed

  • PR#42 resolved #41 by capping the VM read of task memory to avoid a syscall failure, as well as made it so that if an error does occur when reading the module's file path, the module is still written to the minidump, as the file path is less important than the UUID in terms of module identification.
  • PR#44 resolved #43 by correctly calculating the base address of each loaded module. The bug was inherited from Breakpad.
  • PR#44 and PR#45 resolved #37 by making the crash_context::CrashContext optional on MacOS and Windows, to make creating a minidump without necessarily having an actual crash more convenient for users.

Release 0.2.1

25 May 12:13
Compare
Choose a tag to compare

Added

  • PR#32 resolved #23 by adding support for the thread names stream on MacOS.

Release 0.2.0

23 May 07:50
Compare
Choose a tag to compare

Added

  • PR#21 added an initial implementation for x86_64-apple-darwin and aarch64-apple-darwin