Releases: stacktracejs/error-stack-parser
Releases · stacktracejs/error-stack-parser
v2.1.4
2.1.0
What's Changed
- Update
stackframe
dependency from1.1.1
to1.3.0
- Update typescript definitions to prevent partial import and maximize compatibility
- Re-export StackFrame type for backwards compatibility by @andersk in #72
- Update types to reflect issue#45 by @alessioprestileo in #74
- Various dev dependency updates
New Contributors
- @alessioprestileo made their first contribution in #74
Full Changelog: v2.0.7...v2.1.0
v2.0.7
- chore: updated dist (unsure why gitignore did not respect) 5786d10
- chore: build dist 409cdd7
- Merge pull request #66 from Aleksey28/parse-file-name-for-node 1c9261a
- Merge pull request #68 from stacktracejs/dependabot/npm_and_yarn/follow-redirects-1.14.7 802ff4e
- Bump follow-redirects from 1.9.0 to 1.14.7 bca7cb5
- Merge pull request #54 from andersk/typescript-import ebda26a
- Merge pull request #67 from stacktracejs/dependabot/npm_and_yarn/jszip-3.7.1 414fe57
- Merge pull request #63 from mattwynne/patch-1 abe34a7
- Merge pull request #60 from stacktracejs/dependabot/npm_and_yarn/hosted-git-info-2.8.9 89b59cb
- Bump jszip from 3.2.2 to 3.7.1 064baab
- Merge pull request #59 from stacktracejs/dependabot/npm_and_yarn/lodash-4.17.21 08d9262
- Merge pull request #58 from stacktracejs/dependabot/npm_and_yarn/handlebars-4.7.7 5d63d77
- Merge pull request #56 from stacktracejs/dependabot/npm_and_yarn/http-proxy-1.18.1 ec66349
- test:added new key for node error when function name isn't there 2bd8aa1
- fix: removed splitting 'sanitizedLine' and reorganized using 'sanitizedLine' and 'location' d74fe21
- fix: removed regexp group ':(\d+):(\d+)' because we should get any location in brackets 280acd5
- fix: fixed removing last round bracket df5d38f
- refactor: added pre-replace instead of splitting 523951b
- We seem to use
npm test
, notgulp test
86089a3 - Bump hosted-git-info from 2.8.5 to 2.8.9 84e8aab
- Bump lodash from 4.17.15 to 4.17.21 3156998
- Bump handlebars from 4.5.3 to 4.7.7 8ca6409
- Bump http-proxy from 1.18.0 to 1.18.1 5b8ead7
- Import the TypeScript definition for StackFrame from stackframe ce729ee
- Remove duplicate test a3bf972
- Update transitive dev dependencies to fix vuln f67192d
v2.0.0
Update stackframe dependency to v1.x. Stackframes are constructed and accessed differently. See the stackframe CHANGELOG for details.
v1.3.0
- Improved handling of Anonymous functions
Previous versions ofErrorStackParser.parse
would try to remove/normalize anonymous function representations cross-browser. The approach used was not future-proof or consistent. Removing this will improve other efforts to normalize stack traces. - Improved handling of "new Constructor"