diff --git a/CHANGELOG.md b/CHANGELOG.md index cce6e4e8ebe..c6f91d77148 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # CHANGELOG +## 2.4.0 / 2022-10-24 + +### Fixed +* Fix SearchSLO response structure by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1691 +* Add Default Rule ID in SignalRuleResponseQuery by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1705 +* Remove incident's resolved attribute from update requests by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1707 +* Fix event monitor created_at by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1710 +* Fix spectral rules by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1713 +### Added +* Add support for incident attachment APIs by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1685 +* Add notify_by monitor option by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1699 +* Add support for service definitions APIs by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1714 +* Add support for confluent cloud integration by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1720 +### Deprecated +* Add a note for deprecated APIs and models by @therve in https://github.com/DataDog/datadog-api-client-go/pull/1704 +* Deprecate metric field of Security Monitoring Rules by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-go/pull/1723 + + +**Full Changelog**: https://github.com/DataDog/datadog-api-client-go/compare/v2.3.1...v2.4.0 + ## 2.3.1 / 2022-09-28 ### Fixed diff --git a/run-tests.sh b/run-tests.sh index effcc9a2785..1098bea4599 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -37,5 +37,5 @@ cd tests staticcheck -checks inherit,-SA1019 ./... go mod tidy go clean -testcache -gotestsum --format short-verbose ./... +gotestsum --format short-verbose --packages ./... -- -timeout=20m cd .. diff --git a/version.go b/version.go index ec23fd34728..f9b592d8767 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package client // Version used in User-Agent header. -const Version = "2.3.2+dev" +const Version = "2.4.0"