fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.47.0
This MR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| github.com/hetznercloud/hcloud-go/v2 | v2.44.0 → v2.47.0 |
Release Notes
hetznercloud/hcloud-go (github.com/hetznercloud/hcloud-go/v2)
v2.47.0
Features
- exp: add LoadBalancerTypeMessage to deprecationutil (#899) (f5928f8)
- metadata: add user agent header (#866) (b8a6787)
v2.46.0
Features
v2.45.0
Removed deprecated Datacenter property from Server and PrimaryIP
Removed the deprecated Datacenter property from the Server and PrimaryIP resources. Since the property was already removed from the Hetzner Cloud API, we do not consider this a breaking change (see changelog entry).
[!IMPORTANT] Action required: Please update all code that accesses
Server.DatacenterorPrimaryIP.Datacenterto use theLocationproperty instead, as shown below.
Before:
server, _, _ := client.Server.GetByID(ctx, 42)
fmt.Println(server.Datacenter.Location.Name)
primaryIP, _, _ := client.PrimaryIP.GetByID(ctx, 7)
fmt.Println(primaryIP.Datacenter.Location.Name)After:
server, _, _ := client.Server.GetByID(ctx, 42)
fmt.Println(server.Location.Name)
primaryIP, _, _ := client.PrimaryIP.GetByID(ctx, 7)
fmt.Println(primaryIP.Location.Name)Features
Configuration
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
- If you want to rebase/retry this MR, check this box
This MR has been generated by Mend Renovate CLI.
Edited by Hetzner Cloud Bot
Merge request reports
Loading