From 2213c6d11a353b24fba3db5c38505a58f635a934 Mon Sep 17 00:00:00 2001 From: Ben Gourley Date: Thu, 22 Feb 2018 14:58:13 +0000 Subject: [PATCH] v2.2.0 --- CHANGELOG.md | 10 ++++++++++ lib/notifier.js | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 299d369..5ea4860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Changelog ========= +## 2.2.0 (2018-02-22) + +### Enhancements + +* Apply `Configuation.filters` to all aspects of the payload that can contain custom data [#131](https://github.com/bugsnag/bugsnag-node/pull/131) + +### Bug fixes + +* Don't call `req.connection.address()` in `requestInfo()` if it's not available (to support express-like [`serverless-http`](https://github.com/dougmoscrop/serverless-http) framework) [Julien Guépin](https://github.com/jguepin) [#132](https://github.com/bugsnag/bugsnag-node/pull/132) + ## 2.1.3 (2018-01-25) ### Bug fixes diff --git a/lib/notifier.js b/lib/notifier.js index ae919de..57b1396 100644 --- a/lib/notifier.js +++ b/lib/notifier.js @@ -1,5 +1,5 @@ module.exports = { name: "Bugsnag Node Notifier", - version: "2.1.3", + version: "2.2.0", url: "https://github.com/bugsnag/bugsnag-node" } diff --git a/package.json b/package.json index f4f99a0..776afb9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bugsnag", "description": "Bugsnag notifier for node.js scripts", - "version": "2.1.3", + "version": "2.2.0", "main": "./lib/bugsnag.js", "typings": "./lib/bugsnag.d.ts", "homepage": "http://bugsnag.com",