Skip to content

Commit

Permalink
bump version: 3.24.0 (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrachaY authored May 12, 2024
1 parent db7821b commit 5793852
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.24.0 (May 12, 2024)

FEATURES:
* **New Resource:** `incapsula_certificate_signing_request`

IMPROVEMENTS:
- Change error pages to full-update endpoint ([#414](https://github.com/imperva/terraform-provider-incapsula/pull/414))
- add docs for mtls imperva to origin resource ([#418](https://github.com/imperva/terraform-provider-incapsula/pull/418))


## 3.23.1 (Apr 1, 2024)

- removing deprecated account id from policy dto upon update ([#411](https://github.com/imperva/terraform-provider-incapsula/pull/411))
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.23.1
VERSION=3.24.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.23.1"}
return &Client{config: config, httpClient: client, providerVersion: "3.24.0"}
}

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

0 comments on commit 5793852

Please sign in to comment.