Skip to content

Commit 77b7df1

Browse files
authored
version 3.34.3 (#583)
1 parent 3dc48c0 commit 77b7df1

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
## 3.34.1 (Jun 18, 2025)
1+
## 3.34.3 (Jun 30, 2025)
2+
3+
BUG FIXES:
4+
- Fixing the waf_security_rule.html.markdown documentation. ([#580](https://github.com/imperva/terraform-provider-incapsula/pull/580))
5+
- Remove validation from domain field . ([#581](https://github.com/imperva/terraform-provider-incapsula/pull/581))
6+
- Omit the HstsConfiguration and TLSConfigurations. ([#582](https://github.com/imperva/terraform-provider-incapsula/pull/582))
7+
8+
9+
10+
## 3.34.2 (Jun 18, 2025)
211

312
BUG FIXES:
413
- Parse error while converting from int to int64. Added a fix to convert it properly. ([#578](https://github.com/imperva/terraform-provider-incapsula/pull/578))

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

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

0 commit comments

Comments
 (0)