Skip to content

Commit 03ff8fa

Browse files
authored
Fix tests and bump version: 3.21.3 (#387)
1 parent 64f99d8 commit 03ff8fa

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.21.3 (Jan 25, 2024)
2+
3+
- incapsula_site_ssl_settings: Revert last changes ([#386](https://github.com/imperva/terraform-provider-incapsula/pull/386))
4+
5+
16
## 3.21.2 (Jan 10, 2024)
27

38
- Documentation 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.21.2
9+
VERSION=3.21.3
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.21.2"}
37+
return &Client{config: config, httpClient: client, providerVersion: "3.21.3"}
3838
}
3939

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

incapsula/config_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ func TestMissingBaseURLRev2(t *testing.T) {
5757
if err == nil {
5858
t.Errorf("Should have received an error, got a client: %q", client)
5959
}
60-
if err.Error() != missingBaseURLRev2Message {
61-
t.Errorf("Should have received missing Base URL Revision 2 message, got: %s", err)
60+
if err.Error() != missingBaseURLRev3Message {
61+
t.Errorf("Should have received missing Base URL Revision 3 message, got: %s", err)
6262
}
6363
}
6464

0 commit comments

Comments
 (0)