Skip to content

Commit 86018f9

Browse files
committed
version 3.34.4
1 parent 5539592 commit 86018f9

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 3.34.4 (Sep 7, 2025)
2+
3+
BUT FIXES:
4+
Fixed documentation for ssl_instructions and ssl_validation ([#588](https://github.com/imperva/terraform-provider-incapsula/pull/588))
5+
Converting datatype int to int64 to handle 32 bit systems ([#590](https://github.com/imperva/terraform-provider-incapsula/pull/590))
6+
incapsula_custom_certificate resource update flow crash ([#591](https://github.com/imperva/terraform-provider-incapsula/pull/591))
7+
8+
19
## 3.34.3 (Jun 30, 2025)
210

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

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

0 commit comments

Comments
 (0)