diff --git a/CHANGELOG.md b/CHANGELOG.md index 5311d0bc..bbc12001 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 3.27.0 (Nov 10, 2024) + +FEATURES: +New Incapsula site, SSL and domain management model: +* **New Resource:** `incapsula_ssl_instructions` for SSL configuration guidance +* **New Resource:** `incapsula_domain` for managing domains +* **New Resource:** `incapsula_managed_certificate_settings` for certificate settings configuration +* **New Resource:** `incapsula_site_v3` for site management (v3 API) +* **New Resource:** `incapsula_ssl_validation` for SSL validation setup + + +IMPROVEMENTS: +- Add info about adaptive ddos mode ([#467](https://github.com/imperva/terraform-provider-incapsula/pull/467)) + + + ## 3.26.1 (Oct 14, 2024) IMPROVEMENTS: diff --git a/GNUmakefile b/GNUmakefile index 01dfa606..543a6c20 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.1 +VERSION=3.27.0 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 2af8e018..300be915 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.1"} + return &Client{config: config, httpClient: client, providerVersion: "3.27.0"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {