Skip to content

Commit a2ec33a

Browse files
authored
version 3.5.2 (#168)
1 parent bddb00e commit a2ec33a

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
## 3.5.2 (Unreleased)
1+
## 3.6.0 (Unreleased)
2+
3+
FEATURES:
4+
5+
* **New Resource:** `site_monitoring`
6+
7+
## 3.5.2 (May 16, 2022)
8+
9+
IMPROVEMENTS:
10+
11+
* Add deprecation message to already deprecated resources (old data_center resources)
212

313
IMPROVEMENTS:
414

@@ -9,7 +19,7 @@ BUG FIXES:
919
* incapsula_site: formatting parameters with %t fails if the values are strings, not bool ([#158](https://github.com/imperva/terraform-provider-incapsula/issues/158))
1020
* incapsula_site: add retries when configuring site after creating it - to allow the site creation to fully finish ([#165](https://github.com/imperva/terraform-provider-incapsula/issues/165))
1121
* incapsula_notification_center_policy: Fix redundant slash in path issue ([#162](https://github.com/imperva/terraform-provider-incapsula/issues/162))
12-
* incapsula_origin_pop: avoid crashing when upgrading from version 2* to 3* without changing the resource format in the state file
22+
* incapsula_origin_pop: avoid crashing when upgrading from version 2* to 3* without changing the resource format in the state file([#167](https://github.com/imperva/terraform-provider-incapsula/issues/167))
1323

1424
## 3.5.1 (Released)
1525

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.5.1
9+
VERSION=3.5.2
1010

1111

1212
OS_ARCH=darwin_amd64

incapsula/client.go

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

29-
return &Client{config: config, httpClient: client, providerVersion: "3.5.1"}
29+
return &Client{config: config, httpClient: client, providerVersion: "3.5.2"}
3030
}
3131

3232
// Verify checks the API credentials

0 commit comments

Comments
 (0)