Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Releases: backtrace-labs/backtrace-node

Release 1.2.0

03 Feb 16:33
ba69393
Compare
Choose a tag to compare

Release 1.2.0

  • Add session metrics submission support. This feature, enabled by default, sends metric events to support the counting of error free sessions and application launches.

Version 1.1.0

10 Jun 14:13
Compare
Choose a tag to compare

Version 1.1.0

  • improved deduplication: the relative library path is used instead of absolute path for purposes of deduplication.
  • updated backtrace-node attributes - Backtrace will capture application, application.name, and main attributes based on
    the application package.json - not the faulting library package.json file.

Version 1.0.0

04 Jun 09:19
Compare
Choose a tag to compare

Version 1.0.0 04.06.2019

  • Backtrace-node now supports TypeScript. We care about your applications that using Backtrace-Node library so we prepared compatible API for you. If you still want to use modern API please use BacktraceClient instead.
  • Backtrace-node options now support sampling and client rate limiting.
    • sampling allows you to drop random reports generated by your application depends on sampling value,
    • client rate limit allows you to set up client limit. By setting this value you will tell library how many reports per minute, client can send to Backtrace
  • Backtrace-node send methods accept new paramtere - fileAttachment. If you pass array of strings backtrace-node will try to read each file from hard drive and add this as attachment to backtraceReport.
  • Backtrace-node allows you to use eventEmmiter events! Now when you can use events like: 'before-send', 'after-send' and others!
  • Modern Promise API is here! Backtrace-node allows you to use async/await syntax to send reports to Backtrace!
  • reportSync and reportAsync methods now returns BacktraceResult object that allows you to understand what happend with report. If you have connection/configuration problems BacktraceResult allows you to learn what happend inside library!
  • Backtrace prepare a lot sample application for you! If you want to learn how to use Backtrace in your nodejs application (no matter if you using JavaScript/TypeScript) please check examples directory!

Empty dependency issues fix

06 Feb 19:19
Compare
Choose a tag to compare

Create correct report object for application with empty dependencies object.