Skip to content

Commit 273a1a4

Browse files
author
Emily Nakashima
committed
v3.0.5
1 parent 7c5d086 commit 273a1a4

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

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

4+
3.0.5 (2016-10-05)
5+
-----
6+
7+
- Limit maximum number of breadcrumbs to 20 (#194)
8+
- Show value of submit inputs & buttons in breadcrumbs (#184, #187)
9+
[Anton Pawlik](https://github.com/antpaw)
10+
[#184](https://github.com/bugsnag/bugsnag-js/pull/184)
11+
[#187](https://github.com/bugsnag/bugsnag-js/pull/187)
12+
- Linter improvements (#180)
13+
414
3.0.4 (2016-09-09)
515
-----
616

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.4",
3+
"version": "3.0.5",
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.4",
3+
"version": "3.0.5",
44
"main": "./src/bugsnag.js"
55
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bugsnag-js",
3-
"version": "3.0.4",
3+
"version": "3.0.5",
44
"main": "src/bugsnag.js",
55
"scripts": {
66
"test": "karma start --single-run",
@@ -28,4 +28,4 @@
2828
"mocha": "~1.15.1",
2929
"uglifyjs": "latest"
3030
}
31-
}
31+
}

src/bugsnag.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@
501501
// Set up default notifier settings.
502502
var DEFAULT_BASE_ENDPOINT = "https://notify.bugsnag.com/";
503503
var DEFAULT_NOTIFIER_ENDPOINT = DEFAULT_BASE_ENDPOINT + "js";
504-
var NOTIFIER_VERSION = "3.0.4";
504+
var NOTIFIER_VERSION = "3.0.5";
505505

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

0 commit comments

Comments
 (0)