Skip to content

Commit 0ca5f92

Browse files
Release Prep v1.8.0 (PagerDuty#507)
1 parent f47b593 commit 0ca5f92

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

CHANGELOG.md

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,41 @@
11
# Changelog
22

3-
## What's Changed
3+
## [v1.8.0](https://github.com/PagerDuty/go-pagerduty/tree/v1.8.0) (2024-01-09)
4+
### What's Changed
5+
* Adds resolved_at and updated_at fields to Incident by @surik in https://github.com/PagerDuty/go-pagerduty/pull/482
6+
* Adds support for auto_pause_notifications_parameters by @darrendao in https://github.com/PagerDuty/go-pagerduty/pull/490
7+
* Fixes ResponderRequest unmarshalling of IncidentResponders by @allyjweir in https://github.com/PagerDuty/go-pagerduty/pull/493
8+
* Adds support for license and licenses allocated based operations #480 by @gerardocorea in https://github.com/PagerDuty/go-pagerduty/pull/494
9+
* Refactors nil *string initialization by @typeid in https://github.com/PagerDuty/go-pagerduty/pull/488
10+
* [CSGI-1827] Add Standards support by @imjaroiswebdev in https://github.com/PagerDuty/go-pagerduty/pull/499
11+
* Updated README.md replacing deprecated calls with corresponding new ones by @oleksiypavlenko in https://github.com/PagerDuty/go-pagerduty/pull/498
12+
* [CSGI-1984] Add `From` field to `ListResponsePlays` method options by @imjaroiswebdev in https://github.com/PagerDuty/go-pagerduty/pull/502
13+
* Handle invalid ChangeEvent APIErrorObject response by @icholy in https://github.com/PagerDuty/go-pagerduty/pull/479
14+
* [CSGI-2365] Add client User Agent overwrite capability by @imjaroiswebdev in https://github.com/PagerDuty/go-pagerduty/pull/503
15+
* Updates go to 1.19 and a few dependencies by @ChuckCrawford in https://github.com/PagerDuty/go-pagerduty/pull/504
16+
* Bump golang.org/x/crypto from 0.16.0 to 0.17.0 by @dependabot in https://github.com/PagerDuty/go-pagerduty/pull/505
17+
18+
### New Contributors
19+
* @surik made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/482
20+
* @darrendao made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/490
21+
* @allyjweir made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/493
22+
* @gerardocorea made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/494
23+
* @typeid made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/488
24+
* @imjaroiswebdev made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/499
25+
* @oleksiypavlenko made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/498
26+
* @icholy made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/479
27+
* @dependabot made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/505
28+
29+
**Full Changelog**: https://github.com/PagerDuty/go-pagerduty/compare/v1.7.0...v1.8.0
30+
31+
## [v1.7.0](https://github.com/PagerDuty/go-pagerduty/tree/v1.7.0) (2023-05-17)
32+
33+
### What's Changed
434
* Upgades Go and dependencies by @ChuckCrawford in https://github.com/PagerDuty/go-pagerduty/pull/466
535
* Add Incident Notification Subscribers by @caveman280 in https://github.com/PagerDuty/go-pagerduty/pull/461
636
* Implement Event Orchestrations API by @EronWright in https://github.com/PagerDuty/go-pagerduty/pull/450
737

8-
## New Contributors
38+
### New Contributors
939
* @caveman280 made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/461
1040
* @EronWright made their first contribution in https://github.com/PagerDuty/go-pagerduty/pull/450
1141

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ go-pagerduty is a CLI and [go](https://golang.org/) client library for the [Page
77

88
To add the latest stable version to your project:
99
```cli
10-
go get github.com/PagerDuty/go-pagerduty@v1.7
10+
go get github.com/PagerDuty/go-pagerduty@v1.8
1111
```
1212

1313
If you instead wish to work with the latest code from main:

client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
)
2626

2727
// Version is current version of this client.
28-
const Version = "1.8.0-alpha"
28+
const Version = "1.8.0"
2929

3030
const (
3131
apiEndpoint = "https://api.pagerduty.com"

0 commit comments

Comments
 (0)