Skip to content

Commit 40a1648

Browse files
authored
bump version: 3.23.0 (#409)
1 parent 6e392df commit 40a1648

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 3.23.0 (Mar 25, 2024)
2+
3+
IMPROVEMENTS:
4+
- Add auth type to custom certificate resource ([#402](https://github.com/imperva/terraform-provider-incapsula/pull/402))
5+
- Extending the site ssl settings resource and adding inbound TLS settings that will allow clients to configure which tls versions and which ciphers to use at the site level.
6+
And extending the already existing ssl settings resource tests to cover inbound TLS settings. ([#406](https://github.com/imperva/terraform-provider-incapsula/pull/406))
7+
- Use different operation name for the new delivery rules resource ([#407](https://github.com/imperva/terraform-provider-incapsula/pull/407))
8+
9+
110
## 3.22.1 (Mar 25, 2024)
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.22.1
9+
VERSION=3.23.0
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.22.1"}
37+
return &Client{config: config, httpClient: client, providerVersion: "3.23.0"}
3838
}
3939

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

0 commit comments

Comments
 (0)