Skip to content

Commit

Permalink
version: 3.25.4 (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrachaY authored Jul 3, 2024
1 parent ed4ddf4 commit fa1dc2b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.25.4 (Jul 03, 2024)

IMPROVEMENTS:
- Change outputs for SSL verification records so they always exist and have values when using CNAME verification. ([#439](https://github.com/imperva/terraform-provider-incapsula/pull/439))
- Ato - support site id in import command ([#449](https://github.com/imperva/terraform-provider-incapsula/pull/449))

## 3.25.3 (June 13, 2024)

IMPROVEMENTS:
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.25.3
VERSION=3.25.4

# 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.25.3"}
return &Client{config: config, httpClient: client, providerVersion: "3.25.4"}
}

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

0 comments on commit fa1dc2b

Please sign in to comment.