diff --git a/CHANGELOG.md b/CHANGELOG.md index 76ead270..5311d0bc 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 3.26.1 (Oct 14, 2024) + +IMPROVEMENTS: +- Update documentation sub account and additive ddos ([#465](https://github.com/imperva/terraform-provider-incapsula/pull/465)) +- Change how empty data values in policies are suppressed ([#440](https://github.com/imperva/terraform-provider-incapsula/pull/440)) + + + ## 3.26.0 (Oct 1, 2024) IMPROVEMENTS: diff --git a/GNUmakefile b/GNUmakefile index d87174ba..01dfa606 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ NAMESPACE=terraform-providers PKG_NAME=incapsula BINARY=terraform-provider-${PKG_NAME} # Whenever bumping provider version, please update the version in incapsula/client.go (line 27) as well. -VERSION=3.26.0 +VERSION=3.26.1 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 3bfcdb58..2af8e018 100644 --- a/incapsula/client.go +++ b/incapsula/client.go @@ -34,7 +34,7 @@ type Client struct { func NewClient(config *Config) *Client { client := &http.Client{} - return &Client{config: config, httpClient: client, providerVersion: "3.26.0"} + return &Client{config: config, httpClient: client, providerVersion: "3.26.1"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {