From c37349793231abfcbf0e1f57d75941a28bd87a1e Mon Sep 17 00:00:00 2001 From: Bracha Yalon <38453612+BrachaY@users.noreply.github.com> Date: Thu, 9 Jan 2025 08:32:42 +0200 Subject: [PATCH] Bump version: 3.28.3 (#498) --- CHANGELOG.md | 15 ++++++++++++++- GNUmakefile | 2 +- incapsula/client.go | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0836667..a72767e8 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,20 @@ +## 3.28.3 (Jan 05, 2025) + +IMPROVEMENTS: +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)) + + ## 3.28.2 (Dec 16, 2024) IMPROVEMENTS: -Fix managed certificate existence check #485 ([#485](https://github.com/imperva/terraform-provider-incapsula/pull/485)) +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)) diff --git a/GNUmakefile b/GNUmakefile index d0c49d2d..524fc8d4 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.28.2 +VERSION=3.28.3 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 72a2701b..84071142 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.28.2"} + return &Client{config: config, httpClient: client, providerVersion: "3.28.3"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {