Skip to content

Releases: stacktracejs/error-stack-parser

v2.1.4

06 Jun 22:16
v2.1.4
9f33c22
Compare
Choose a tag to compare
  • Revert "Fix comment in typescript definition" 2a82186
  • Revert "Use default export for ErrorStackParser module" 5265364

v2.1.3...v2.1.4

2.1.0

05 Jun 21:33
Compare
Choose a tag to compare

What's Changed

  • Update stackframe dependency from 1.1.1 to 1.3.0
  • Update typescript definitions to prevent partial import and maximize compatibility
  • Various dev dependency updates

New Contributors

Full Changelog: v2.0.7...v2.1.0

v2.0.7

11 Feb 17:45
v2.0.7
c4f2c75
Compare
Choose a tag to compare
  • 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, not gulp 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.6...v2.0.7

v2.0.0

10 Dec 03:42
90d9bd7
Compare
Choose a tag to compare

Update stackframe dependency to v1.x. Stackframes are constructed and accessed differently. See the stackframe CHANGELOG for details.

v1.3.0

21 Sep 14:54
Compare
Choose a tag to compare
  • Improved handling of Anonymous functions
    Previous versions of ErrorStackParser.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"