Skip to content

Commit

Permalink
Merge pull request #24 from iLert/fix/metrics-missing-field
Browse files Browse the repository at this point in the history
Fix/metrics missing field
  • Loading branch information
STLVRTX authored Mar 13, 2023
2 parents 1697a02 + 4db0861 commit 60fd032
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 13.03.2023, Version 3.0.1

- add missing field `integrationKey` to metric resource in [#24](https://github.com/iLert/ilert-go/pull/24)

## 08.03.2023, Version 3.0.0 - API user preference migration: see [migration changes](https://docs.ilert.com/rest-api/api-version-history/api-user-preference-migration-2023#migrating-ilert-go-and-or-terraform) for a detailed migration guide

- removed notification settings fields from user resource
Expand Down
1 change: 1 addition & 0 deletions metric.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ type Metric struct {
ShowValuesOnMouseOver bool `json:"showValuesOnMouseOver,omitempty"`
Teams []TeamShort `json:"teams,omitempty"`
UnitLabel string `json:"unitLabel,omitempty"`
IntegrationKey string `json:"integrationKey,omitempty"`
Metadata *MetricProviderMetadata `json:"metadata,omitempty"`
DataSource *MetricDataSource `json:"dataSource,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ilert

// Version package version
const Version = "v3.0.0"
const Version = "v3.0.1"

0 comments on commit 60fd032

Please sign in to comment.