This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Releases: backtrace-labs/backtrace-node
Releases · backtrace-labs/backtrace-node
Release 1.2.0
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
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
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 useBacktraceClient
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 stringsbacktrace-node
will try to read each file from hard drive and add this as attachment tobacktraceReport
.Backtrace-node
allows you to useeventEmmiter
events! Now when you can use events like:'before-send'
,'after-send'
and others!- Modern Promise API is here!
Backtrace-node
allows you to useasync/await
syntax to send reports to Backtrace! reportSync
andreportAsync
methods now returnsBacktraceResult
object that allows you to understand what happend with report. If you have connection/configuration problemsBacktraceResult
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
Create correct report object for application with empty dependencies object.