Skip to content

Commit

Permalink
Bump version: 3.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BrachaY committed Dec 9, 2024
1 parent 3b7dee9 commit ae11b57
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 3.28.0 (Dec 9, 2024)

FEATURES:
* **New Resource:** `incapsula_siem_connnection_sftp`
added cwaf, attack analytics and dnsms log configurations
added new fields to log configuration resource (compression,encryption)
added datasets to log-configuration

IMPROVEMENTS:
Add accountId parameter to managed certificate resource ([#481](https://github.com/imperva/terraform-provider-incapsula/pull/481))
Remove 'restore defaults' logic when deleting application delivery resource ([#482](https://github.com/imperva/terraform-provider-incapsula/pull/482))



## 3.27.1 (Nov 10, 2024)

FEATURES:
Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.27.1
VERSION=3.28.0

# Mac Intel Chip
OS_ARCH=darwin_amd64
Expand Down
2 changes: 1 addition & 1 deletion incapsula/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type Client struct {
func NewClient(config *Config) *Client {
client := &http.Client{}

return &Client{config: config, httpClient: client, providerVersion: "3.27.1"}
return &Client{config: config, httpClient: client, providerVersion: "3.28.0"}
}

func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {
Expand Down

0 comments on commit ae11b57

Please sign in to comment.