Skip to content

Commit fcfdb18

Browse files
committed
bump version 3.8.5
1 parent 4f3ceda commit fcfdb18

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 3.8.5 (Aug 31, 2022)
2+
3+
BUG FIXES:
4+
5+
* Add retries of read operations when fail ([#200](https://github.com/imperva/terraform-provider-incapsula/pull/200))
6+
* incapsula_api_security_site_config: make is_automatic_discovery_api_integration_enabled optional to align with BE API ([#205](https://github.com/imperva/terraform-provider-incapsula/pull/205))
7+
18

29
## 3.8.4 (Aug 17, 2022)
310

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.4
9+
VERSION=3.8.5
1010

1111

1212
OS_ARCH=darwin_amd64

incapsula/client.go

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

33-
return &Client{config: config, httpClient: client, providerVersion: "3.8.4"}
33+
return &Client{config: config, httpClient: client, providerVersion: "3.8.5"}
3434
}
3535

3636
// Verify checks the API credentials

0 commit comments

Comments
 (0)