Skip to content

Commit f56ffe7

Browse files
authored
version 3.34.1 (#576)
1 parent 05b032a commit f56ffe7

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 3.34.1 (Jun 09, 2025)
2+
3+
BUG FIXES:
4+
- Bug fix on incapsula_ssl_instuctions where account certificate was not ignored ([#573](https://github.com/imperva/terraform-provider-incapsula/pull/573))
5+
- Documentation update to remove the unwanted html tag ([#574](https://github.com/imperva/terraform-provider-incapsula/pull/574))
6+
- Omit refId in incapsula_site_v3 when marshaling to JSON if the field has no value ([#575](https://github.com/imperva/terraform-provider-incapsula/pull/575))
7+
8+
9+
110
## 3.34.0 (May 19, 2025)
211

312
IMPROVEMENTS:

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

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

0 commit comments

Comments
 (0)