Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgray committed Jun 19, 2020
1 parent cba0ad6 commit 7a33270
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]

## [1.3.0] - 2020-06-19
### Changed
- [browser/node] Deprecate `keysBlacklist` in favor of `keysBlocklist`

Expand Down Expand Up @@ -57,7 +59,8 @@

## [1.0.0] - 2019-10-21

[Unreleased]: https://github.com/airbrake/airbrake-js/compare/v1.2.0...master
[Unreleased]: https://github.com/airbrake/airbrake-js/compare/v1.3.0...master
[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
[1.1.3]: https://github.com/airbrake/airbrake-js/releases/tag/v1.1.3
[1.1.2]: https://github.com/airbrake/airbrake-js/releases/tag/v1.1.2
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.2.0",
"version": "1.3.0",
"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.2.0",
"version": "1.3.0",
"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.2.0';
export const NOTIFIER_VERSION = '1.3.0';
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.2.0",
"@airbrake/node": "^1.3.0",
"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.2.0"
"@airbrake/node": "^1.3.0"
}
}
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.2.0",
"version": "1.3.0",
"description": "Official Airbrake notifier for Node.js",
"author": "Airbrake",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
"notifier"
],
"dependencies": {
"@airbrake/browser": "^1.2.0",
"@airbrake/browser": "^1.3.0",
"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.2.0';
export const NOTIFIER_VERSION = '1.3.0';
export const NOTIFIER_URL =
'https://github.com/airbrake/airbrake-js/tree/master/packages/node';

0 comments on commit 7a33270

Please sign in to comment.