Skip to content

Commit 94a5c97

Browse files
authored
Merge pull request #1203 from vmware/prepare-3.6.1
Prepare for 3.6.1 release
2 parents 324077f + 82f09b7 commit 94a5c97

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

Diff for: CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 3.6.1 (May 2, 2024)
2+
3+
BUG FIXES:
4+
* `resource/nsxt_policy_security_policy`: Fix crash when reading policy that does not exist on backend ([#1202](https://github.com/vmware/terraform-provider-nsxt/pull/1202))
5+
* `resource/nsxt_policy_lb_virtual_server`: Fix SNI path assignment ([#1197](https://github.com/vmware/terraform-provider-nsxt/pull/1197))
6+
* `data/nsxt_policy_vm`, `data/nsxt_policy_vms`, `resource/nsxt_policy_vm_tags`: Fix failure to find certain VMs due to inconsistent pagination ([#1194](https://github.com/vmware/terraform-provider-nsxt/pull/1194))
7+
* `data/nsxt_policy_vm`, `data/nsxt_policy_vms`, `resource/nsxt_policy_vm_tags`: Allow non-admin user to pull VMs and modify VM tags, by using a new API available with NSX 4.1.1 onwards ([#1187](https://github.com/vmware/terraform-provider-nsxt/pull/1187))
8+
9+
IMPROVEMENTS:
10+
* `data/nsxt_policy_vm`, `data/nsxt_policy_vms`, `resource/nsxt_policy_vm_tags`: Improve performance by using search API for NSX 4.1.2 and above ([#1196](https://github.com/vmware/terraform-provider-nsxt/pull/1196))
11+
* `resource/nsxt_policy_ip_block`: Add `visibility` attribute for NSX 4.2.0 onwards ([#1195](https://github.com/vmware/terraform-provider-nsxt/pull/1195))
12+
* `resource/nsxt_policy_vm_tags`: Add support for fixed segments in VM interface tagging ([#1187](https://github.com/vmware/terraform-provider-nsxt/pull/1187))
13+
14+
BUG FIXES ON EXPERIMENTAL FEATURES:
15+
* `resource/nsxt_edge_transport_node`: fix crash when syslog port is specified ([#1190](https://github.com/vmware/terraform-provider-nsxt/pull/1190))
16+
117
## 3.6.0 (April 16, 2024)
218

319
IMPROVEMENTS:

Diff for: nsxt/validators.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ func isSinglePort(vi interface{}) bool {
3131
default:
3232
return false
3333
}
34-
if i > 65536 {
35-
return false
36-
}
37-
return true
34+
return i <= 65536
3835
}
3936

4037
func isPortRange(v string) bool {

0 commit comments

Comments
 (0)