Skip to content

Commit ecfe3bb

Browse files
committed
Bump version to 1.0.0, update CHANGELOG and package for distribution
1 parent 21569ca commit ecfe3bb

9 files changed

+82
-10
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
## v1.0.0
2+
3+
### stacktrace.js is reborn
4+
5+
stacktrace.js is now modularized into 5 projects:
6+
7+
* [stacktrace-gps](https://github.com/stacktracejs/stacktrace-gps) - turn partial code location into precise code location
8+
* [error-stack-parser](https://github.com/stacktracejs/error-stack-parser) - extract meaning from JS Errors
9+
* [stack-generator](https://github.com/stacktracejs/stack-generator) - generate artificial backtrace in old browsers
10+
* [stackframe](https://github.com/stacktracejs/stackframe) - JS Object representation of a stack frame
11+
12+
... and putting it all together: [stacktrace.js](stacktracejs/stacktrace.js) for instrumenting your code and generating stack traces!
13+
14+
### Key Features
15+
16+
* Fully asynchronous API, using [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). Use your own polyfill or use [our distribution with polyfills included](https://github.com/stacktracejs/stacktrace.js/blob/master/dist/stacktrace-with-polyfills.min.js). See the [Migration Guide](http://www.stacktracejs.com/docs/v0-migration-guide)
17+
* [Source Maps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) support
18+
* Forward-compatible: stacktrace.js no longer assumes a given browser formats Error stacks in a given way. This prevents new browser versions from breaking error parsing
19+
* Stack entries are now fully parsed and returned as [StackFrame objects](https://github.com/stacktracejs/stackframe). Prefer the old format? - just call `.toString()`!
20+
* Use only what you need. All 5 projects work independently as well as together!
21+
* iOS 8+ Safari support
22+
23+
### Available everywhere
24+
25+
```
26+
npm install stacktrace-js
27+
bower install stacktrace-js
28+
component install stacktracejs/stacktrace.js
29+
https://cdnjs.cloudflare.com/ajax/libs/stacktrace.js/1.0.0/stacktrace.min.js
30+
```
31+
32+
### Better for contributors
33+
34+
* gulp build
35+
* TravisCI + Sauce for testing a bunch of browsers
36+
* EditorConfig for style adherence
37+
138
## v0.6.2
239

340
* Ignore test/ dir in bower

bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"homepage": "https://github.com/stacktracejs/stacktrace.js",
55
"authors": [
66
"Eric Wendelin <[email protected]> (http://www.eriwen.com)",
7-
"Victor Homyakov <[email protected]> (https://github.com/victor-homyakov)"
7+
"Victor Homyakov <[email protected]> (https://github.com/victor-homyakov)",
8+
"Oliver Salzburg (https://github.com/oliversalzburg)"
89
],
910
"description": "Turns partial code location into precise code location",
1011
"moduleType": [

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "stacktrace.js",
33
"repository": "stacktracejs/stacktrace.js",
44
"description": "Framework-agnostic, micro-library for getting stack traces in all environments",
5-
"version": "0.6.4",
5+
"version": "1.0.0",
66
"keywords": [
77
"stacktrace",
88
"error",

dist/stacktrace-with-polyfills.min.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stacktrace-with-polyfills.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stacktrace.js

+25
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,31 @@
155155
// Function not instrumented, return original
156156
return fn;
157157
}
158+
},
159+
160+
/**
161+
* Given an Array of StackFrames, serialize and POST to given URL.
162+
*
163+
* @param stackframes - Array[StackFrame]
164+
* @param url - URL as String
165+
*/
166+
report: function StackTrace$$report(stackframes, url) {
167+
return new Promise(function (resolve, reject) {
168+
var req = new XMLHttpRequest();
169+
req.onerror = reject;
170+
req.onreadystatechange = function onreadystatechange() {
171+
if (req.readyState === 4) {
172+
if (req.status >= 200 && req.status < 400) {
173+
resolve(req.responseText);
174+
} else {
175+
reject(new Error('POST to ' + url + ' failed with status: ' + req.status));
176+
}
177+
}
178+
};
179+
req.open('post', url);
180+
req.setRequestHeader('Content-Type', 'application/json');
181+
req.send({stack: stackframes});
182+
});
158183
}
159184
};
160185
}));

dist/stacktrace.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stacktrace.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+12-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Victor Homyakov <[email protected]> (https://github.com/victor-homyakov)",
77
"Oliver Salzburg (https://github.com/oliversalzburg)"
88
],
9-
"version": "0.6.4",
9+
"version": "1.0.0",
1010
"license": "SEE LICENSE IN LICENSE",
1111
"keywords": [
1212
"stacktrace",
@@ -34,12 +34,12 @@
3434
"gulp-coveralls": "^0.1.4",
3535
"gulp-jshint": "^1.11.2",
3636
"gulp-sourcemaps": "^1.5.2",
37-
"gulp-uglify": "^1.2.0",
37+
"gulp-uglify": "^1.4.1",
3838
"jasmine-node": "~1.14",
3939
"jasmine-sinon": "^0.4.0",
4040
"karma": "^0.13.9",
4141
"karma-chrome-launcher": "^0.2.0",
42-
"karma-coverage": "^0.5.0",
42+
"karma-coverage": "^0.5.2",
4343
"karma-firefox-launcher": "^0.1.6",
4444
"karma-ie-launcher": "^0.2.0",
4545
"karma-jasmine": "^0.1.5",
@@ -48,12 +48,20 @@
4848
"karma-safari-launcher": "^0.1.1",
4949
"karma-sauce-launcher": "^0.2.14",
5050
"karma-sinon": "^1.0.4",
51-
"run-sequence": "^1.1.2"
51+
"run-sequence": "^1.1.2",
52+
"sinon": "^1.16.1"
5253
},
5354
"bugs": {
5455
"url": "https://github.com/stacktracejs/stacktrace.js/issues"
5556
},
5657
"main": "./stacktrace.js",
58+
"files": [
59+
"LICENSE",
60+
"CHANGELOG.md",
61+
"README.md",
62+
"stacktrace.js",
63+
"dist/"
64+
],
5765
"scripts": {
5866
"test": "gulp test"
5967
}

0 commit comments

Comments
 (0)