From bda70c2af57a11a093f58b7932d5f4c6857b6fa7 Mon Sep 17 00:00:00 2001 From: Samir Musali Date: Fri, 17 Jul 2020 12:20:52 -0400 Subject: [PATCH] bump: bump version to v3.5.1 (#97) Semver: patch docs: update CHANGELOG --- CHANGELOG.md | 47 ++++++++++++++++++++++++++++++++--------------- package.json | 2 +- 2 files changed, 33 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb1061f..efbbde8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,22 +2,39 @@ This file documents all notable changes in `LogDNA Node.js Code Library`. The release numbering uses [semantic versioning](http://semver.org). -## v3.4.0 - November 15, 2019 -- Add `shimProperties` option to support custom fields in messages -- Add callback parameter to the methods -- Apply `no-var` linting rule -- Update the docs -- Fix the tests regarding the recent updates +## v3.5.1 - July 17, 2020 +- Missing key logdna_url in ConstructorOptions [#96](https://github.com/logdna/nodejs/pull/96) +- Convert to `tap` for testing [#99](https://github.com/logdna/nodejs/pull/99) +- Missing tags from ConstructorOptions [#98](https://github.com/logdna/nodejs/pull/98) -## v3.3.3 - September 20, 2019 -- Add User Agent to the Request Header +## v3.5.0 - February 21, 2020 +- Set user-agent header only in node [#87](https://github.com/logdna/nodejs/pull/87) +- Add type definition for typescript [#71](https://github.com/logdna/nodejs/pull/71) +- Try to flush after failing without waiting for the next log [#93](https://github.com/logdna/nodejs/pull/93) -## v3.3.2 - September 8, 2019 -- Support for the following fields: `appOverride`, `logSourceCRN`, and `saveServiceCopy` +## 3.4.0 - November 15, 2019 +- Add `shimProperties` option to support custom fields in messages [#83](https://github.com/logdna/nodejs/pull/83) +- Add callback parameter to the methods [#73](https://github.com/logdna/nodejs/pull/73) +- Apply `no-var` linting rule [#80](https://github.com/logdna/nodejs/pull/80) +- Fix the tests regarding the recent updates [#82](https://github.com/logdna/nodejs/pull/82) -## v3.3.1 - September 3, 2019 -- Metadata Support Bug Fix +## 3.3.3 - September 20, 2019 +- Add User Agent to the Request Header [#74](https://github.com/logdna/nodejs/pull/74) -## v3.3.0 - August 20, 2019 -- HTTP Exception Handling -- Default Metadata Support +## 3.3.2 - September 8, 2019 +- Support for the following fields: `appOverride`, `logSourceCRN`, and `saveServiceCopy` [#72](https://github.com/logdna/nodejs/pull/72) + +## 3.3.1 - September 3, 2019 +- Metadata Support Bug Fix [#70](https://github.com/logdna/nodejs/pull/70) + +## 3.3.0 - August 20, 2019 +- HTTP Exception Handling [#62](https://github.com/logdna/nodejs/pull/62) +- Default Metadata Support [#60](https://github.com/logdna/nodejs/pull/60) + +[3.5.1]: https://github.com/logdna/nodejs/compare/v3.5.0...v3.5.1 +[3.5.0]: https://github.com/logdna/nodejs/compare/3.4.0...v3.5.0 +[3.4.0]: https://github.com/logdna/nodejs/compare/3.3.3...3.4.0 +[3.3.3]: https://github.com/logdna/nodejs/compare/3.3.2...3.3.3 +[3.3.2]: https://github.com/logdna/nodejs/compare/3.3.1...3.3.2 +[3.3.1]: https://github.com/logdna/nodejs/compare/3.3.0...3.3.1 +[3.3.0]: https://github.com/logdna/nodejs/releases/tag/3.3.0 \ No newline at end of file diff --git a/package.json b/package.json index a2fadc8..c3e6ec0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "logdna", - "version": "3.5.0", + "version": "3.5.1", "description": "LogDNA's Node.js Logging Module.", "main": "index.js", "types": "types.d.ts",