diff --git a/CHANGELOG.md b/CHANGELOG.md index 6afba2db..3c60e42f 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,29 +1,35 @@ +## 3.29.3 (Feb 24, 2025) + +IMPROVEMENTS: +- Bug fix for the data source incapsula_ssl_instructions – The site certificate process could not be completed when an auto-discovered domain existed due to missing SANs. These SANs were not added to the certificate if the corresponding domains originated through the auto-discovered domain mechanism. ([#511](https://github.com/imperva/terraform-provider-incapsula/pull/511)) + + ## 3.29.0 (Feb 02, 2025) IMPROVEMENTS: -* Deprecation: waf_log_setup resource ([#504](https://github.com/imperva/terraform-provider-incapsula/pull/504)) -* removed dnsms dataset ([#504](https://github.com/imperva/terraform-provider-incapsula/pull/504)) +- Deprecation: waf_log_setup resource ([#504](https://github.com/imperva/terraform-provider-incapsula/pull/504)) +- removed dnsms dataset ([#504](https://github.com/imperva/terraform-provider-incapsula/pull/504)) ## 3.28.3 (Jan 05, 2025) IMPROVEMENTS: -* Organize resources tree by products ([#494](https://github.com/imperva/terraform-provider-incapsula/pull/494)) +- Organize resources tree by products ([#494](https://github.com/imperva/terraform-provider-incapsula/pull/494)) BUG FIXES: -* Updates the log to avoid printing the user details ([#492](https://github.com/imperva/terraform-provider-incapsula/pull/492)) -Fix link in site_v3 docs ([#495](https://github.com/imperva/terraform-provider-incapsula/pull/495)) -incapsula_security_rule_exception resource - Remove usages of ignored parameter 'url_patterns' and add deprecation message ([#496](https://github.com/imperva/terraform-provider-incapsula/pull/496)) -Improve docs in security_rule_exception resource ([#497](https://github.com/imperva/terraform-provider-incapsula/pull/497)) +- Updates the log to avoid printing the user details ([#492](https://github.com/imperva/terraform-provider-incapsula/pull/492)) +- Fix link in site_v3 docs ([#495](https://github.com/imperva/terraform-provider-incapsula/pull/495)) +- incapsula_security_rule_exception resource - Remove usages of ignored parameter 'url_patterns' and add deprecation message ([#496](https://github.com/imperva/terraform-provider-incapsula/pull/496)) +- Improve docs in security_rule_exception resource ([#497](https://github.com/imperva/terraform-provider-incapsula/pull/497)) ## 3.28.2 (Dec 16, 2024) IMPROVEMENTS: -Fix managed certificate existence check ([#485](https://github.com/imperva/terraform-provider-incapsula/pull/485)) -Adding an example for a policy exception that's assign to a site ([#488](https://github.com/imperva/terraform-provider-incapsula/pull/488)) +- Fix managed certificate existence check ([#485](https://github.com/imperva/terraform-provider-incapsula/pull/485)) +- Adding an example for a policy exception that's assign to a site ([#488](https://github.com/imperva/terraform-provider-incapsula/pull/488)) ## 3.28.0 (Dec 9, 2024) diff --git a/GNUmakefile b/GNUmakefile index 85b92b59..b59433eb 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.29.0 +VERSION=3.29.3 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 31219772..6bdb930d 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.29.0"} + return &Client{config: config, httpClient: client, providerVersion: "3.29.3"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {