Skip to content

Commit 8bbb327

Browse files
Merge branch 'master' into SUMO-231087-muting-schedule-group-support-pr-view
2 parents e033786 + f4add7c commit 8bbb327

File tree

49 files changed

+2345
-820
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2345
-820
lines changed

.DS_Store

6 KB
Binary file not shown.

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# behavior.
33
before:
44
hooks:
5-
- go mod tidy
5+
- go mod tidy -compat=1.17
66
builds:
77
- env:
88
- CGO_ENABLED=0

CHANGELOG.md

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,49 @@
1-
## 2.28.1 (Unreleased)
2-
* resource/sumologic_muting_schedule: Added group supporting for muting schedule (GH-593)
1+
## 2.29.1 (Unreleased)
2+
FEATURES:
3+
* resource/sumologic_muting_schedule: Added support for Muting Schedule for an alert group (GH-601)
4+
5+
## 2.29.0 (April 9, 2024)
6+
7+
FEATURES:
8+
* Added support for signal suppression window size in CSE Rules. (GH-641)
9+
10+
ENHANCEMENTS:
11+
* Added support for custom window sizes for the CSE Rules (Aggregation, Chain, Threshold). (GH-623)
12+
13+
BUG FIXES:
14+
* Fix error while importing monitor having timeZone as `null` in the Email notification object. (GH-637)
15+
* Fix perpetual diff in Extraction Rules by normalizing the parse expression.
16+
* Fix `resource_sumologic_cse_match_list` timing out when updating match list items (GH-640)
17+
18+
## 2.28.3 (March 5, 2024)
19+
20+
BUG FIXES:
21+
* Update module dependencies to pick up security fixes. (GH-602)
22+
23+
## 2.28.2 (February 1, 2024)
24+
25+
BUG FIXES:
26+
* Uses the recently added API support for `rule_ids` for CSE Rule Tuning Expressions to fix the resource import functionality. (GH-612)
27+
28+
## 2.28.1 (January 19, 2024)
29+
30+
ENHANCEMENTS:
31+
* Added support for `dynamic_severity` for the CSE Custom Insight. (GH-607)
32+
33+
BUG FIXES:
34+
* Minor fixes enabling proper resource import for CSE Rules (`severity`, `severity_mapping`, `aggregation_functions`). (GH-606)
335

436
## 2.28.0 (November 23, 2023)
537
FEATURES:
638
* resource/sumologic_monitor: Added support for setting `time_zone` at Monitor level for notifications content (GH-586)
739

8-
BUG FIXES:
40+
BUG FIXES:
941
* Fixes `resource_sumologic_cse_match_list` constant change when defining a match list containing a custom column using the custom columns name instead of ID (GH-591)
1042

1143
## 2.27.0 (September 28, 2023)
1244
FEATURES:
1345
* **New Resource:** sumologic_cse_tag_schema (GH-575)
14-
* **New Resource:** sumologic_cse_context_action (GH-573)
46+
* **New Resource:** sumologic_cse_context_action (GH-573)
1547

1648
ENHANCEMENTS:
1749
* resource/sumologic_cse_inventory_entity_group_configuration: Add new fields to support enhanced functionality. (GH-495)

go.mod

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,19 @@ go 1.17
44

55
require (
66
github.com/go-errors/errors v1.4.0
7-
github.com/google/go-cmp v0.5.6
7+
github.com/google/go-cmp v0.5.9
8+
github.com/google/uuid v1.3.1
89
github.com/hashicorp/go-retryablehttp v0.7.0
910
github.com/hashicorp/terraform-plugin-sdk v1.17.2
10-
github.com/stretchr/testify v1.7.0
11+
github.com/stretchr/testify v1.8.1
1112
)
1213

1314
require (
14-
cloud.google.com/go v0.88.0 // indirect
15-
cloud.google.com/go/storage v1.10.0 // indirect
15+
cloud.google.com/go v0.110.8 // indirect
16+
cloud.google.com/go/compute v1.23.0 // indirect
17+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
18+
cloud.google.com/go/iam v1.1.2 // indirect
19+
cloud.google.com/go/storage v1.30.1 // indirect
1620
github.com/Masterminds/goutils v1.1.1 // indirect
1721
github.com/Masterminds/semver v1.5.0 // indirect
1822
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
@@ -21,26 +25,27 @@ require (
2125
github.com/apparentlymart/go-textseg/v12 v12.0.0 // indirect
2226
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
2327
github.com/armon/go-radix v1.0.0 // indirect
24-
github.com/aws/aws-sdk-go v1.40.10 // indirect
28+
github.com/aws/aws-sdk-go v1.44.122 // indirect
2529
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
2630
github.com/bgentry/speakeasy v0.1.0 // indirect
2731
github.com/davecgh/go-spew v1.1.1 // indirect
2832
github.com/fatih/color v1.12.0 // indirect
2933
github.com/go-test/deep v1.0.7 // indirect
30-
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
31-
github.com/golang/protobuf v1.5.2 // indirect
32-
github.com/google/uuid v1.1.2 // indirect
33-
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
34+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
35+
github.com/golang/protobuf v1.5.3 // indirect
36+
github.com/google/s2a-go v0.1.4 // indirect
37+
github.com/googleapis/enterprise-certificate-proxy v0.2.4 // indirect
38+
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
3439
github.com/hashicorp/errwrap v1.0.0 // indirect
3540
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
3641
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
37-
github.com/hashicorp/go-getter v1.6.2 // indirect
42+
github.com/hashicorp/go-getter v1.7.0 // indirect
3843
github.com/hashicorp/go-hclog v0.16.2 // indirect
3944
github.com/hashicorp/go-multierror v1.0.0 // indirect
4045
github.com/hashicorp/go-plugin v1.4.0 // indirect
4146
github.com/hashicorp/go-safetemp v1.0.0 // indirect
4247
github.com/hashicorp/go-uuid v1.0.2 // indirect
43-
github.com/hashicorp/go-version v1.3.0 // indirect
48+
github.com/hashicorp/go-version v1.6.0 // indirect
4449
github.com/hashicorp/hcl v1.0.0 // indirect
4550
github.com/hashicorp/hcl/v2 v2.8.2 // indirect
4651
github.com/hashicorp/logutils v1.0.0 // indirect
@@ -53,15 +58,14 @@ require (
5358
github.com/huandu/xstrings v1.3.2 // indirect
5459
github.com/imdario/mergo v0.3.12 // indirect
5560
github.com/jmespath/go-jmespath v0.4.0 // indirect
56-
github.com/jstemmer/go-junit-report v0.9.1 // indirect
57-
github.com/klauspost/compress v1.11.2 // indirect
61+
github.com/klauspost/compress v1.15.11 // indirect
5862
github.com/mattn/go-colorable v0.1.8 // indirect
5963
github.com/mattn/go-isatty v0.0.13 // indirect
6064
github.com/mitchellh/cli v1.1.2 // indirect
6165
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
6266
github.com/mitchellh/copystructure v1.0.0 // indirect
6367
github.com/mitchellh/go-homedir v1.1.0 // indirect
64-
github.com/mitchellh/go-testing-interface v1.0.4 // indirect
68+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
6569
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
6670
github.com/mitchellh/mapstructure v1.1.2 // indirect
6771
github.com/mitchellh/reflectwalk v1.0.1 // indirect
@@ -74,20 +78,20 @@ require (
7478
github.com/vmihailenco/tagparser v0.1.1 // indirect
7579
github.com/zclconf/go-cty v1.8.2 // indirect
7680
github.com/zclconf/go-cty-yaml v1.0.2 // indirect
77-
go.opencensus.io v0.23.0 // indirect
78-
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
79-
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
80-
golang.org/x/mod v0.4.2 // indirect
81-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
82-
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914 // indirect
83-
golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e // indirect
84-
golang.org/x/text v0.3.6 // indirect
85-
golang.org/x/tools v0.1.5 // indirect
86-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
87-
google.golang.org/api v0.50.0 // indirect
88-
google.golang.org/appengine v1.6.7 // indirect
89-
google.golang.org/genproto v0.0.0-20210721163202-f1cecdd8b78a // indirect
90-
google.golang.org/grpc v1.39.0 // indirect
91-
google.golang.org/protobuf v1.27.1 // indirect
92-
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
81+
go.opencensus.io v0.24.0 // indirect
82+
golang.org/x/crypto v0.17.0 // indirect
83+
golang.org/x/net v0.17.0 // indirect
84+
golang.org/x/oauth2 v0.13.0 // indirect
85+
golang.org/x/sync v0.4.0 // indirect
86+
golang.org/x/sys v0.15.0 // indirect
87+
golang.org/x/text v0.14.0 // indirect
88+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
89+
google.golang.org/api v0.128.0 // indirect
90+
google.golang.org/appengine v1.6.8 // indirect
91+
google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 // indirect
92+
google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97 // indirect
93+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
94+
google.golang.org/grpc v1.57.1 // indirect
95+
google.golang.org/protobuf v1.31.0 // indirect
96+
gopkg.in/yaml.v3 v3.0.1 // indirect
9397
)

0 commit comments

Comments
 (0)