|
1 | 1 | # Backtrace Node Release Notes
|
2 | 2 |
|
| 3 | +## Version 1.1.0 |
| 4 | + |
| 5 | +- updated backtrace-node attributes - Backtrace will capture application, application.name, and main attributes based on the |
| 6 | + application package.json - not the faulting library package.json file. |
| 7 | +- updated source-code integration - Backtrace will now include the relative path in stack trace. |
| 8 | + |
3 | 9 | ## Version 1.0.9
|
| 10 | + |
4 | 11 | - axios client update
|
5 | 12 |
|
6 | 13 | ## Version 1.0.8
|
| 14 | + |
7 | 15 | - dependency updates
|
8 | 16 |
|
9 | 17 | ## Version 1.0.7
|
| 18 | + |
10 | 19 | - Full source map support,
|
11 | 20 | - readme updates
|
12 | 21 |
|
13 | 22 | ## Version 1.0.6 30.10.2019
|
14 |
| -* Added sourcemap support to Backtrace-node |
15 |
| -* Fixed type attributes for report function |
16 |
| -* Changed a unit test result - removed console.log and check data instead. |
| 23 | + |
| 24 | +- Added sourcemap support to Backtrace-node |
| 25 | +- Fixed type attributes for report function |
| 26 | +- Changed a unit test result - removed console.log and check data instead. |
17 | 27 |
|
18 | 28 | ## Version 1.0.5 28.08.2019
|
19 |
| -* Fixed invalid source code line number |
| 29 | + |
| 30 | +- Fixed invalid source code line number |
20 | 31 |
|
21 | 32 | ## Version 1.0.4 26.08.2019
|
22 |
| -* Added attachments checks, |
23 |
| -* Added callback funciton to third parameter of send method, |
24 |
| -* Removed Backtrace stack frames from message error, |
| 33 | + |
| 34 | +- Added attachments checks, |
| 35 | +- Added callback funciton to third parameter of send method, |
| 36 | +- Removed Backtrace stack frames from message error, |
25 | 37 |
|
26 | 38 | ## Version 1.0.3 06.06.2019
|
27 |
| -* Added new events to event emitter: `new-report`, `unhandledRejection`, `uncaughtException`. `uncaughtException` and `unhandledRejection` events will be emited by library when library catch unhandled exception or unhandler promise rejection. `new-report` event will be emited when library create new `backtraceReport` object. |
| 39 | + |
| 40 | +- Added new events to event emitter: `new-report`, `unhandledRejection`, `uncaughtException`. `uncaughtException` and |
| 41 | + `unhandledRejection` events will be emited by library when library catch unhandled exception or unhandler promise |
| 42 | + rejection. `new-report` event will be emited when library create new `backtraceReport` object. |
28 | 43 |
|
29 | 44 | ## Version 1.0.2 05.06.2019
|
30 |
| -* Fixed arguments in callback function in report `send` method. |
| 45 | + |
| 46 | +- Fixed arguments in callback function in report `send` method. |
31 | 47 |
|
32 | 48 | ## Version 1.0.1 05.06.2019
|
33 | 49 |
|
34 |
| -* Added type definition for report `send` method |
| 50 | +- Added type definition for report `send` method |
35 | 51 |
|
36 | 52 | ## Version 1.0.0 04.06.2019
|
37 | 53 |
|
38 |
| -* `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. |
39 |
| -* `Backtrace-node` options now support sampling and client rate limiting. |
40 |
| - - sampling allows you to drop random reports generated by your application depends on sampling value, |
41 |
| - - 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 |
42 |
| -* `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`. |
43 |
| -* `Backtrace-node` allows you to use `eventEmmiter` events! Now when you can use events like: `'before-send'`, `'after-send'` and others! |
44 |
| -* Modern Promise API is here! `Backtrace-node` allows you to use `async/await` syntax to send reports to Backtrace! |
45 |
| -* `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! |
46 |
| -* 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! |
| 54 | +- `Backtrace-node` now supports TypeScript. We care about your applications that using Backtrace-Node library so we |
| 55 | + prepared compatible API for you. If you still want to use modern API please use `BacktraceClient` instead. |
| 56 | +- `Backtrace-node` options now support sampling and client rate limiting. |
| 57 | + - sampling allows you to drop random reports generated by your application depends on sampling value, |
| 58 | + - client rate limit allows you to set up client limit. By setting this value you will tell library how many reports |
| 59 | + per minute, client can send to Backtrace |
| 60 | +- `Backtrace-node` send methods accept new paramtere - `fileAttachment`. If you pass array of strings `backtrace-node` |
| 61 | + will try to read each file from hard drive and add this as attachment to `backtraceReport`. |
| 62 | +- `Backtrace-node` allows you to use `eventEmmiter` events! Now when you can use events like: `'before-send'`, |
| 63 | + `'after-send'` and others! |
| 64 | +- Modern Promise API is here! `Backtrace-node` allows you to use `async/await` syntax to send reports to Backtrace! |
| 65 | +- `reportSync` and `reportAsync` methods now returns `BacktraceResult` object that allows you to understand what happend |
| 66 | + with report. If you have connection/configuration problems `BacktraceResult` allows you to learn what happend inside |
| 67 | + library! |
| 68 | +- Backtrace prepare a lot sample application for you! If you want to learn how to use Backtrace in your nodejs |
| 69 | + application (no matter if you using JavaScript/TypeScript) please check examples directory! |
0 commit comments