From 1b50dde913eb97fc14d2acab5f3e076649d65def Mon Sep 17 00:00:00 2001 From: Tim Heckman Date: Sat, 13 Nov 2021 16:18:16 -0800 Subject: [PATCH] Prep v1.4.3 release notes and bump Version const --- CHANGELOG.md | 14 ++++++++++++++ constants.go | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a60332..2a1e2c4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v1.4.3](https://github.com/PagerDuty/go-pagerduty/tree/v1.4.3) (2021-11-13) + +[Milestone](https://github.com/PagerDuty/go-pagerduty/milestone/6) +[Full Changelog](https://github.com/PagerDuty/go-pagerduty/compare/v1.4.1...v1.4.3) + +**Highlights** +- Mitigate PagerDuty REST API bug that would result in a JSON parsing failure when reading an error response from the API. Prior to `v1.4.0` our error parsing logic was not impacted by the bug. + +**Merged pull requests** +- Handle unexpected type changes in PagerDuty REST API error responses [\#382](https://github.com/PagerDuty/go-pagerduty/pull/382) [backported via [\#386](https://github.com/PagerDuty/go-pagerduty/pull/386)] ([theckman](https://github.com/theckman)) + +**Closed issues** +- APIError unmarshaling broken in 1.4 [\#339](https://github.com/PagerDuty/go-pagerduty/pull/339) ([dsymonds](https://github.com/dsymonds)) + ## [v1.4.2](https://github.com/PagerDuty/go-pagerduty/tree/v1.4.2) (2021-08-30) [Milestone](https://github.com/PagerDuty/go-pagerduty/milestone/5) diff --git a/constants.go b/constants.go index a38d3160..bc248a71 100644 --- a/constants.go +++ b/constants.go @@ -2,5 +2,5 @@ package pagerduty const ( // Version is current version of this client. - Version = "1.4.2" + Version = "1.4.3" )