File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 2.7.2 (October 21, 2025)
2+ BUGFIX
3+ * Headers were not added to webhook notifiers
4+ * Add total_usage to query billing_usage
5+ * Add examples for dynamic times in billing_usage resource
6+ * Fix datasource update that was mistakenly sending id in the body
7+
18## 2.7.1 (September 26, 2025)
29BUGFIX
310* Fix issue with alert data that had made it mandatory by mistake
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ require (
77 github.com/hashicorp/go-retryablehttp v0.7.7
88 github.com/hashicorp/terraform-plugin-sdk/v2 v2.24.1
99 github.com/stretchr/testify v1.8.1
10- gopkg.in/ns1/ns1-go.v2 v2.14.4
10+ gopkg.in/ns1/ns1-go.v2 v2.15.1
1111)
1212
1313require (
Original file line number Diff line number Diff line change @@ -257,8 +257,8 @@ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8
257257gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
258258gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk =
259259gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c /go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q =
260- gopkg.in/ns1/ns1-go.v2 v2.14.4 h1:77eP71rZ24I+9k1gITgjJXRyJzzmflA9oPUkYPB/wyc =
261- gopkg.in/ns1/ns1-go.v2 v2.14.4 /go.mod h1:pfaU0vECVP7DIOr453z03HXS6dFJpXdNRwOyRzwmPSc =
260+ gopkg.in/ns1/ns1-go.v2 v2.15.1 h1:8rri2TzAPYcVbBGXn48+dz1Xg30PzHfZ4k8A9JOS0Z0 =
261+ gopkg.in/ns1/ns1-go.v2 v2.15.1 /go.mod h1:pfaU0vECVP7DIOr453z03HXS6dFJpXdNRwOyRzwmPSc =
262262gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME =
263263gopkg.in/warnings.v0 v0.1.2 /go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI =
264264gopkg.in/yaml.v2 v2.2.2 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
1919)
2020
2121var (
22- clientVersion = "2.7.1 "
22+ clientVersion = "2.7.2 "
2323 providerUserAgent = "tf-ns1" + "/" + clientVersion
2424 defaultRetryMax = 3
2525)
You can’t perform that action at this time.
0 commit comments