Releases: stacktracejs/stackframe
Releases · stacktracejs/stackframe
1.3.0
Sorry, something went wrong.
No results found
eriwen
released this
05 Jun 21:47
What's Changed
- Update TypeScript definition to maximize compatibility when used with error-stack-parser
- Various dev dependency updates
Full Changelog: v1.2.1...v1.3.0
1.2.1
Sorry, something went wrong.
No results found
eriwen
released this
05 Jun 18:08
What's Changed
- Use GitHub action for CI by @eriwen in #44
- Remove Travis CI by @eriwen in #43
- Various dev dependency updates
Full Changelog: v1.2.0...v1.2.1
1.2.0
Sorry, something went wrong.
No results found
eriwen
released this
05 Jun 18:07
1.1.1
Sorry, something went wrong.
No results found
eriwen
released this
05 Jun 18:04
What's Changed
New Contributors
Full Changelog: v1.1.0...v1.1.1
1.1.0
Sorry, something went wrong.
No results found
eriwen
released this
05 Jun 18:04
What's Changed
New Contributors
Full Changelog: v1.0.4...v1.1.0
v1.0.2
Sorry, something went wrong.
No results found
eriwen
released this
31 Dec 22:34
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'
});