Releases: stacktracejs/stackframe
Releases · stacktracejs/stackframe
1.3.0
1.2.1
1.2.0
What's changed
- Allow StackFrames to be constructed using an evalOrigin
- Document evalOrigin property and methods — Fixes #34
- Various dev dependency updates for security
1.1.1
1.1.0
What's Changed
- Rewrite toString to match Node internals by @niftylettuce in #23
- Fix travis.yml (trusty > xenial) by @niftylettuce in #25
New Contributors
- @niftylettuce made their first contribution in #23
Full Changelog: v1.0.4...v1.1.0
v1.0.2
StackFrame v1.0 is out! Major features:
eval
, native, and global code can now be represented.evalOrigin
represents location of code within an eval'd String or Function- BREAKING CHANGE:
new StackFrame(obj)
is now constructed with an Object parameter. For example:
var stackFrame = new StackFrame({
functionName: 'funName',
args: ['args'],
fileName: 'http://localhost:3000/file.js',
lineNumber: 1,
columnNumber: 3288,
isEval: true,
isNative: false,
source: 'ORIGINAL_STACK_LINE'
});