Skip to content

Commit

Permalink
Release v2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrylo committed Dec 6, 2022
1 parent 2ca0928 commit d342699
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@

### master

### [2.1.8] (December 6, 2022)

#### browser

- Fixed relative import issues with Yarn's Plug'n'Play feature
([#1135](https://github.com/airbrake/airbrake-js/pull/1135))
- Stop filtering the `context` field in the notice payload. This payload
contains service information and it should never be modified
([#1325](https://github.com/airbrake/airbrake-js/pull/1325))
- Bumped `cross-fetch` dependency to `^3.1.5` (fixes a Dependabot security
alert) ([#1322](https://github.com/airbrake/airbrake-js/issues/1322))

### [2.1.7] (October 4, 2021)

Expand Down Expand Up @@ -202,3 +206,4 @@
[2.1.5]: https://github.com/airbrake/airbrake-js/releases/tag/v2.1.5
[2.1.6]: https://github.com/airbrake/airbrake-js/releases/tag/v2.1.6
[2.1.7]: https://github.com/airbrake/airbrake-js/releases/tag/v2.1.7
[2.1.8]: https://github.com/airbrake/airbrake-js/releases/tag/v2.1.8
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.7",
"version": "2.1.8",
"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": "2.1.7",
"version": "2.1.8",
"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 = '2.1.7';
export const NOTIFIER_VERSION = '2.1.8';
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": "^2.1.7",
"@airbrake/node": "^2.1.8",
"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": "^2.1.7"
"@airbrake/node": "^2.1.8"
}
}
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": "2.1.7",
"version": "2.1.8",
"description": "Official Airbrake notifier for Node.js",
"author": "Airbrake",
"license": "MIT",
Expand All @@ -20,7 +20,7 @@
"node": ">=10"
},
"dependencies": {
"@airbrake/browser": "^2.1.7",
"@airbrake/browser": "^2.1.8",
"cross-fetch": "^3.1.5",
"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 = '2.1.7';
export const NOTIFIER_VERSION = '2.1.8';
export const NOTIFIER_URL =
'https://github.com/airbrake/airbrake-js/tree/master/packages/node';

0 comments on commit d342699

Please sign in to comment.