Skip to content

Commit

Permalink
Release v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sgray committed Aug 10, 2020
1 parent c5b88cb commit fd27d04
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.4.1] - 2020-08-10
### Changed
- [browser] Unhandled rejection errors now include `unhandledRejection: true`
as part of their `context`
([#795](https://github.com/airbrake/airbrake-js/pull/795))

## [1.4.0] - 2020-07-22
### Changed
- [browser/node] `notify` now includes the `url` property on the returned
Expand Down Expand Up @@ -65,7 +71,8 @@

## [1.0.0] - 2019-10-21

[Unreleased]: https://github.com/airbrake/airbrake-js/compare/v1.4.0...master
[Unreleased]: https://github.com/airbrake/airbrake-js/compare/v1.4.1...master
[1.4.1]: https://github.com/airbrake/airbrake-js/releases/tag/v1.4.1
[1.4.0]: https://github.com/airbrake/airbrake-js/releases/tag/v1.4.0
[1.3.0]: https://github.com/airbrake/airbrake-js/releases/tag/v1.3.0
[1.2.0]: https://github.com/airbrake/airbrake-js/releases/tag/v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.4.0",
"version": "1.4.1",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airbrake/browser",
"version": "1.4.0",
"version": "1.4.1",
"description": "Official Airbrake notifier for browsers",
"author": "Airbrake",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const NOTIFIER_NAME = 'airbrake-js/browser';
export const NOTIFIER_VERSION = '1.4.0';
export const NOTIFIER_VERSION = '1.4.1';
export const NOTIFIER_URL =
'https://github.com/airbrake/airbrake-js/tree/master/packages/browser';
2 changes: 1 addition & 1 deletion packages/node/examples/express/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "airbrake-example",
"dependencies": {
"@airbrake/node": "^1.4.0",
"@airbrake/node": "^1.4.1",
"express": "^4.17.1",
"pg": "^8.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/node/examples/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airbrake-example",
"dependencies": {
"@airbrake/node": "^1.4.0"
"@airbrake/node": "^1.4.1"
}
}
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airbrake/node",
"version": "1.4.0",
"version": "1.4.1",
"description": "Official Airbrake notifier for Node.js",
"author": "Airbrake",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
"notifier"
],
"dependencies": {
"@airbrake/browser": "^1.4.0",
"@airbrake/browser": "^1.4.1",
"cross-fetch": "^3.0.4",
"error-stack-parser": "^2.0.4",
"tdigest": "^0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const NOTIFIER_NAME = 'airbrake-js/node';
export const NOTIFIER_VERSION = '1.4.0';
export const NOTIFIER_VERSION = '1.4.1';
export const NOTIFIER_URL =
'https://github.com/airbrake/airbrake-js/tree/master/packages/node';

0 comments on commit fd27d04

Please sign in to comment.