Skip to content

Commit d11bb20

Browse files
committed
v3.0.6
1 parent c25a3c1 commit d11bb20

File tree

5 files changed

+52
-33
lines changed

5 files changed

+52
-33
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Changelog
22
=========
33

4+
3.0.6 (2016-10-11)
5+
-----
6+
7+
### Enhancements
8+
9+
- You can now call `Bugsnag.notify()` and `Bugsnag.notifyException()` with no
10+
arguments. This will show up in the dashboard as "BugsnagNotify". (#197)
11+
12+
### Changes
13+
14+
- New methods enabling disabling automatic breadcrumbs (#199). The old
15+
configuration options (e.g. `Bugsnag.autoBreadcrumbsConsole = false`) were
16+
broken. They should no longer be used and are now deprecated. Use instead the
17+
new methods (e.g. `Bugsnag.enableAutoBreadcrumbsConsole(); Bugsnag.disableAutoBreadcrumbsConsole();`)
18+
19+
### Bug fixes
20+
21+
- `npm run test:watch` now correctly reloads changes in the test file. (#198)
22+
423
3.0.5 (2016-10-05)
524
-----
625

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "bugsnag",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"main": "./src/bugsnag.js"
55
}

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "bugsnag",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"main": "./src/bugsnag.js"
55
}

package.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "bugsnag-js",
3-
"version": "3.0.5",
4-
"main": "src/bugsnag.js",
5-
"scripts": {
6-
"test": "karma start --single-run",
7-
"test:watch": "karma start --browsers PhantomJS",
8-
"test:quick": "karma start --single-run --browsers PhantomJS"
9-
},
10-
"repository": {
11-
"type": "git",
12-
"url": "https://github.com/bugsnag/bugsnag-js"
13-
},
14-
"devDependencies": {
15-
"eslint": "^3.4.0",
16-
"grunt": "~0.4.2",
17-
"grunt-bumpx": "~0.1.0",
18-
"grunt-contrib-watch": "~0.5.2",
19-
"grunt-docco": "~0.4.0",
20-
"grunt-invalidate-cloudfront": "~0.1.4",
21-
"grunt-regex-replace": "~0.2.5",
22-
"grunt-s3": "git://github.com/pifantastic/grunt-s3",
23-
"gruntify-eslint": "^1.3.0",
24-
"karma": "^1.3.0",
25-
"karma-mocha-ie-legacy": "file:./test/karma-mocha",
26-
"karma-phantomjs-launcher": "^1.0.1",
27-
"karma-sauce-launcher": "^1.0.0",
28-
"mocha": "~1.15.1",
29-
"uglifyjs": "latest"
30-
}
31-
}
2+
"name": "bugsnag-js",
3+
"version": "3.0.6",
4+
"main": "src/bugsnag.js",
5+
"scripts": {
6+
"test": "karma start --single-run",
7+
"test:watch": "karma start --browsers PhantomJS",
8+
"test:quick": "karma start --single-run --browsers PhantomJS"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/bugsnag/bugsnag-js"
13+
},
14+
"devDependencies": {
15+
"eslint": "^3.4.0",
16+
"grunt": "~0.4.2",
17+
"grunt-bumpx": "~0.1.0",
18+
"grunt-contrib-watch": "~0.5.2",
19+
"grunt-docco": "~0.4.0",
20+
"grunt-invalidate-cloudfront": "~0.1.4",
21+
"grunt-regex-replace": "~0.2.5",
22+
"grunt-s3": "git://github.com/pifantastic/grunt-s3",
23+
"gruntify-eslint": "^1.3.0",
24+
"karma": "^1.3.0",
25+
"karma-mocha-ie-legacy": "file:./test/karma-mocha",
26+
"karma-phantomjs-launcher": "^1.0.1",
27+
"karma-sauce-launcher": "^1.0.0",
28+
"mocha": "~1.15.1",
29+
"uglifyjs": "latest"
30+
}
31+
}

src/bugsnag.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@
596596
// Set up default notifier settings.
597597
var DEFAULT_BASE_ENDPOINT = "https://notify.bugsnag.com/";
598598
var DEFAULT_NOTIFIER_ENDPOINT = DEFAULT_BASE_ENDPOINT + "js";
599-
var NOTIFIER_VERSION = "3.0.5";
599+
var NOTIFIER_VERSION = "3.0.6";
600600

601601
// Keep a reference to the currently executing script in the DOM.
602602
// We'll use this later to extract settings from attributes.

0 commit comments

Comments
 (0)