diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index faa2482..b4e5bb5 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -13,10 +13,29 @@ Changes are grouped by: `Fixed` for any bug fixes `Security` in case of vulnerabilities -## [Unreleased](https://github.com/ovhemert/pino-stackdriver/compare/v2.1.1...HEAD) +## [Unreleased](https://github.com/ovhemert/pino-stackdriver/compare/v3.0.0...HEAD) - ... +## [3.0.0](https://github.com/ovhemert/pino-stackdriver/compare/v2.1.1...v3.0.0) + +### Added + +- Support passing credentials object parameter by [@jhonny111s](https://github.com/jhonny111s) +- Testing on Node v16.x by [@ovhemert](https://github.com/ovhemert) + +### Changed + +- Better support for batching log entries passed in at higher volume by [@ovhemert](https://github.com/ovhemert) + +### Fixed + +- Fix implementation of prefixing log messages by [@avaly](https://github.com/avaly) + +### Removed + +- Node v10.x support by [@ovhemert](https://github.com/ovhemert) + ## [2.1.1](https://github.com/ovhemert/pino-stackdriver/compare/v2.1.0...v2.1.1) ### Added diff --git a/package-lock.json b/package-lock.json index af66fe4..9d5d698 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "pino-stackdriver", - "version": "2.1.1", + "version": "3.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b2019ed..f751d48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pino-stackdriver", - "version": "2.1.1", + "version": "3.0.0", "description": "A transport for pino that sends messages to Google Stackdriver Logging", "homepage": "https://github.com/ovhemert/pino-stackdriver", "main": "src/index.js",