Skip to content

Commit b9f3efb

Browse files
authored
Merge pull request #535 from imperva/v3_30_0
Bump version: 3.30.0
2 parents ccd5629 + e584125 commit b9f3efb

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 3.30.0 (Mar 02, 2025)
2+
3+
FEATURES:
4+
* **New Resource:** `incapsula_site_cache_configuration`
5+
6+
IMPROVEMENTS:
7+
- Adding Block duration parameters to incap_rule resource ([#517](https://github.com/imperva/terraform-provider-incapsula/pull/517))
8+
- Documentation improvements
9+
10+
BUG FIXES:
11+
- Fix Terraform crash caused by incorrect site_id usage in ManagedCertificate resource ([#508](https://github.com/imperva/terraform-provider-incapsula/pull/508))
12+
- Removing the account id from the request body for update site ([#514](https://github.com/imperva/terraform-provider-incapsula/pull/514))
13+
- Adding send_notifications to the incap_rule resource ([#515](https://github.com/imperva/terraform-provider-incapsula/pull/515))
14+
15+
116
## 3.29.3 (Feb 24, 2025)
217

318
IMPROVEMENTS:

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NAMESPACE=terraform-providers
66
PKG_NAME=incapsula
77
BINARY=terraform-provider-${PKG_NAME}
88
# Whenever bumping provider version, please update the version in incapsula/client.go (line 27) as well.
9-
VERSION=3.29.3
9+
VERSION=3.30.0
1010

1111
# Mac Intel Chip
1212
OS_ARCH=darwin_amd64

incapsula/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type Client struct {
3434
func NewClient(config *Config) *Client {
3535
client := &http.Client{}
3636

37-
return &Client{config: config, httpClient: client, providerVersion: "3.29.3"}
37+
return &Client{config: config, httpClient: client, providerVersion: "3.30.0"}
3838
}
3939

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

0 commit comments

Comments
 (0)