Skip to content

Commit 2e68794

Browse files
authored
Bump version: 3.8.6 (#216)
1 parent b0ae632 commit 2e68794

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 3.8.6 (Oct 2, 2022)
2+
3+
IMPROVEMENTS:
4+
5+
* incapsula_subaccount: Support for setting default data region for subaccounts ([#207](https://github.com/imperva/terraform-provider-incapsula/pull/207))
6+
7+
BUG FIXES:
8+
9+
* incapsula_policy: fixing bug that clears policy account's defaults when updating policy resource. ([#211](https://github.com/imperva/terraform-provider-incapsula/pull/211))
10+
* The parameters `incapsula_site.restricted_cname_reuse` and `invalid_param_name_violation_action` in all `incapsula_api_security` resources should not be used as they are currently not supported (will be in the future) ([#215](https://github.com/imperva/terraform-provider-incapsula/pull/215))
11+
12+
13+
114
## 3.8.5 (Aug 31, 2022)
215

316
BUG FIXES:

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.8.5
9+
VERSION=3.8.6
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
@@ -33,7 +33,7 @@ type Client struct {
3333
func NewClient(config *Config) *Client {
3434
client := &http.Client{}
3535

36-
return &Client{config: config, httpClient: client, providerVersion: "3.8.5"}
36+
return &Client{config: config, httpClient: client, providerVersion: "3.8.6"}
3737
}
3838

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

0 commit comments

Comments
 (0)