Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for VCD 9.5 (bump API version to 32.0) #330

Merged
merged 11 commits into from
Aug 25, 2020
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[#326](https://github.com/vmware/go-vcloud-director/pull/326)
* Update VDC dynamic func to handle API version 35.0 [#327](https://github.com/vmware/go-vcloud-director/pull/327)
* Added methods `vm.UpdateVmCpuAndMemoryHotAdd` and `vm.UpdateVmCpuAndMemoryHotAddAsyc` [#324](https://github.com/vmware/go-vcloud-director/pull/324)
* Drop support for VMware Cloud Director 9.5 [#330](https://github.com/vmware/go-vcloud-director/pull/330)

## 2.8.0 (June 30, 2020)

Expand Down
2 changes: 1 addition & 1 deletion govcd/api_vcd.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func NewVCDClient(vcdEndpoint url.URL, insecure bool, options ...VCDClientOption
// Setting defaults
vcdClient := &VCDClient{
Client: Client{
APIVersion: "31.0", // supported by 9.5, 9.7, 10.0, 10.1
APIVersion: "32.0", // supported by 9.7+
VCDHREF: vcdEndpoint,
Http: http.Client{
Transport: &http.Transport{
Expand Down