Skip to content

Commit 1d9f270

Browse files
committed
version 3.36.0
1 parent 22d0e18 commit 1d9f270

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 3.36.0 (Jan 04, 2026)
2+
3+
IMPROVEMENTS:
4+
- Support client_apps & countries & continents in bot_access_control rule exception([#606](https://github.com/imperva/terraform-provider-incapsula/pull/606))
5+
6+
BUT FIXES:
7+
Site_v3: Don't save account id change to state ([#605](https://github.com/imperva/terraform-provider-incapsula/pull/605))
8+
Account_role: Support caid for account role editing ([#610](https://github.com/imperva/terraform-provider-incapsula/pull/610))
9+
10+
111
## 3.35.1 (Oct 27, 2025)
212

313
IMPROVEMENTS:

GNUmakefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ 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.35.1
9+
VERSION=3.36.0
1010

1111
# Mac Intel Chip
12-
OS_ARCH=darwin_amd64
13-
# For Mac M1 Chip
14-
# OS_ARCH=darwin_arm64
12+
#OS_ARCH=darwin_amd64
13+
# For Mac M series Chip
14+
OS_ARCH=darwin_arm64
1515
# OS_ARCH=linux_amd64
1616

1717
default: install

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.35.1"}
37+
return &Client{config: config, httpClient: client, providerVersion: "3.36.0"}
3838
}
3939

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

0 commit comments

Comments
 (0)