Skip to content

Commit 8ddef4d

Browse files
renovate[bot]phm07
andauthored
deps: update module github.com/hetznercloud/hcloud-go/v2 to v2.33.0 (#1285)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/hetznercloud/hcloud-go/v2](https://redirect.github.com/hetznercloud/hcloud-go) | `v2.32.0` -> `v2.33.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fhetznercloud%2fhcloud-go%2fv2/v2.33.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fhetznercloud%2fhcloud-go%2fv2/v2.32.0/v2.33.0?slim=true) | --- ### Release Notes <details> <summary>hetznercloud/hcloud-go (github.com/hetznercloud/hcloud-go/v2)</summary> ### [`v2.33.0`](https://redirect.github.com/hetznercloud/hcloud-go/blob/HEAD/CHANGELOG.md#v2330) [Compare Source](https://redirect.github.com/hetznercloud/hcloud-go/compare/v2.32.0...v2.33.0) ##### Features - add update rrset records action to zone client ([#&#8203;773](https://redirect.github.com/hetznercloud/hcloud-go/issues/773)) - deprecate datacenter in `primary ips` and `servers` ([#&#8203;793](https://redirect.github.com/hetznercloud/hcloud-go/issues/793)) - default to max per page value in `AllWithOpts` ([#&#8203;794](https://redirect.github.com/hetznercloud/hcloud-go/issues/794)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/hetznercloud/cli). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: phm07 <22707808+phm07@users.noreply.github.com>
1 parent c8099fe commit 8ddef4d

File tree

6 files changed

+42
-3
lines changed

6 files changed

+42
-3
lines changed

.golangci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ linters:
6363
- revive
6464
path: internal/cmd/(util|context)/.+\.go
6565
text: var-naming
66+
- linters:
67+
- staticcheck
68+
text: Datacenter is deprecated
6669

6770
formatters:
6871
enable:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/fatih/structs v1.1.0
1313
github.com/goccy/go-yaml v1.19.1
1414
github.com/guptarohit/asciigraph v0.7.3
15-
github.com/hetznercloud/hcloud-go/v2 v2.32.0
15+
github.com/hetznercloud/hcloud-go/v2 v2.33.0
1616
github.com/jedib0t/go-pretty/v6 v6.7.8
1717
github.com/spf13/cast v1.10.0
1818
github.com/spf13/cobra v1.10.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
3636
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
3737
github.com/guptarohit/asciigraph v0.7.3 h1:p05XDDn7cBTWiBqWb30mrwxd6oU0claAjqeytllnsPY=
3838
github.com/guptarohit/asciigraph v0.7.3/go.mod h1:dYl5wwK4gNsnFf9Zp+l06rFiDZ5YtXM6x7SRWZ3KGag=
39-
github.com/hetznercloud/hcloud-go/v2 v2.32.0 h1:BRe+k7ESdYv3xQLBGdKUfk+XBFRJNGKzq70nJI24ciM=
40-
github.com/hetznercloud/hcloud-go/v2 v2.32.0/go.mod h1:hAanyyfn9M0cMmZ68CXzPCF54KRb9EXd8eiE2FHKGIE=
39+
github.com/hetznercloud/hcloud-go/v2 v2.33.0 h1:g9hwuo60IXbupXJCYMlO4xDXgxxMPuFk31iOpLXDCV4=
40+
github.com/hetznercloud/hcloud-go/v2 v2.33.0/go.mod h1:GzYEl7slIGKc6Ttt08hjiJvGj8/PbWzcQf6IUi02dIs=
4141
github.com/iancoleman/orderedmap v0.3.0 h1:5cbR2grmZR/DiVt+VJopEhtVs9YGInGIxAoMJn+Ichc=
4242
github.com/iancoleman/orderedmap v0.3.0/go.mod h1:XuLcCUkdL5owUCQeF2Ue9uuw1EptkJDkXXS7VoV7XGE=
4343
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=

internal/cmd/primaryip/testdata/create_response.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55
"auto_delete": true,
66
"blocked": false,
77
"created": "2016-01-30T23:50:00Z",
8+
"location": {
9+
"city": "",
10+
"country": "",
11+
"description": "",
12+
"id": 0,
13+
"latitude": 0,
14+
"longitude": 0,
15+
"name": "",
16+
"network_zone": ""
17+
},
818
"datacenter": {
919
"description": "",
1020
"id": 1,

internal/cmd/server/testdata/create_response.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
"server": {
44
"backup_window": null,
55
"created": "2016-01-30T23:50:00Z",
6+
"location": {
7+
"city": "",
8+
"country": "",
9+
"description": "",
10+
"id": 0,
11+
"latitude": 0,
12+
"longitude": 0,
13+
"name": "",
14+
"network_zone": ""
15+
},
616
"datacenter": {
717
"description": "",
818
"id": 1,

internal/hcapi2/mock/zz_zone_client_mock.go

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)