diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a4a9506d..7ec3fbb0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### master +### [2.1.8] (December 6, 2022) + #### browser - Fixed relative import issues with Yarn's Plug'n'Play feature @@ -9,6 +11,8 @@ - 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) @@ -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 diff --git a/lerna.json b/lerna.json index d717df801..f3b97d70a 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.1.7", + "version": "2.1.8", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/browser/package.json b/packages/browser/package.json index 936024c3e..0abebf02c 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -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", diff --git a/packages/browser/src/version.ts b/packages/browser/src/version.ts index e00f71a01..f2dc64993 100644 --- a/packages/browser/src/version.ts +++ b/packages/browser/src/version.ts @@ -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'; diff --git a/packages/node/examples/express/package.json b/packages/node/examples/express/package.json index 1b6a63b16..28ea79f24 100644 --- a/packages/node/examples/express/package.json +++ b/packages/node/examples/express/package.json @@ -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" } diff --git a/packages/node/examples/nodejs/package.json b/packages/node/examples/nodejs/package.json index d88701dd0..9a6a2d49b 100644 --- a/packages/node/examples/nodejs/package.json +++ b/packages/node/examples/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "airbrake-example", "dependencies": { - "@airbrake/node": "^2.1.7" + "@airbrake/node": "^2.1.8" } } diff --git a/packages/node/package.json b/packages/node/package.json index 49b24b66b..7519ab997 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -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", @@ -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" diff --git a/packages/node/src/version.ts b/packages/node/src/version.ts index 0918db164..564107f86 100644 --- a/packages/node/src/version.ts +++ b/packages/node/src/version.ts @@ -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';