Skip to content

fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.40.0#54

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-hetznercloud-hcloud-go-v2-2.x
Open

fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.40.0#54
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-hetznercloud-hcloud-go-v2-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 27, 2024

This PR contains the following updates:

Package Change Age Confidence
github.com/hetznercloud/hcloud-go/v2 v2.6.0v2.40.0 age confidence

Release Notes

hetznercloud/hcloud-go (github.com/hetznercloud/hcloud-go/v2)

v2.40.0

Compare Source

Load Balancer HTTP Services now support TimeoutIdle

HTTP Services now support the field TimeoutIdle, which controls the time a HTTP connection is allowed to idle before it is being dropped.

See the changelog for more information.

Features
  • load-balancer: support timeout_idle http service field (#​842)

v2.39.0

Compare Source

Primary IPs assignee_type behavior change

As of 1 August 2026, the behavior of the Primary IP assignee_type property will change, and will return unassigned when the Primary IP is not assigned (when assignee_id is null). The goal is to eventually assign Primary IPs to other resource types, not only to server.

See the changelog for more details.

In addition, the Primary IP request body assignee_type property of the operation POST /v1/primary_ips is now optional. Primary IPs created without assignee_type return server until 1 August 2026, after this date, its value will be unassigned.

See the changelog for more details.

Features
  • primary-ip: assignee_type is optional when creating a primary ip (#​840)

v2.38.0

Compare Source

Available and recommended Server Types have been moved

Datacenter.ServerTypes has been deprecated in favor of the new ServerType.Locations[].Available and ServerType.Locations[].Recommended fields.

See the changelog for more details.

Features
  • datacenter, server_type: move available and recommended to server_type (#​835)

v2.37.0

Compare Source

Features
  • exp: transform hcloud.Error to slog.Value using errutil.LogValue (#​826)
  • drop support for go1.24 (#​829)
  • add support for go1.26 (#​829)

v2.36.0

Compare Source

Storage Boxes support is now generally available

The experimental phase for Storage Boxes is over, and Storage Boxes support is now generally available.

Features
  • Storage Box support no longer experimental (#​811)
  • server: allow specifying user-data for rebuild (#​813)

v2.35.0

Compare Source

StorageBoxClient.GetSubaccount no longer gets a subaccount by username

StorageBoxClient.GetSubaccount no longer tries to get a subaccount by username, instead it tries to get it by name.

To get a subaccount by username please use StorageBoxClient.GetSubaccountByUsername.

See the changelog for more details.

Features
  • add name to Storage Box Subaccount (#​806)
Bug Fixes
  • do not ignore action error when the error message is empty (#​801)

v2.34.0

Compare Source

ResourceActionClient now has a generic type parameter

The ResourceActionClient struct now has a generic type parameter. The type parameter is used to describe the API resource of the Actions client.

The IResourceActionClient interface that is generated from the ResourceActionClient struct, is also affected by this change.

This API was never intended to be used directly and we did not find any usage of it in public code. So while potentially breaking, the benefits of this change out weighted the risks of doing it.

Features
  • retry request on API timeout error (#​797)
  • list actions for a given resource (#​791)

v2.33.0

Compare Source

Features
  • add update rrset records action to zone client (#​773)
  • deprecate datacenter in primary ips and servers (#​793)
  • default to max per page value in AllWithOpts (#​794)

v2.32.0

Compare Source

Features
  • error helper to remove correlation ID (#​775)

v2.31.0

Compare Source

Features
  • add running actions ids to done context error (#​765)
Bug Fixes
  • exp: support text/plain content type with mockutil (#​771)

v2.30.0

Compare Source

DNS API is now generally available

The DNS API is now generally available, as well as support for features in this project that are related to the DNS API.

To migrate existing zones to the new DNS API, see the DNS migration guide.

See the changelog for more details.

Features
  • DNS support is now generally available (#​763)

v2.29.0

Compare Source

Features
  • exp: add TXT record helpers (#​757)

v2.28.0

Compare Source

Storage Box API Experimental

This release adds support for the Storage Box API.

The Storage Box integration will be introduced as an experimental feature. This experimental phase is expected to last until 21 November 2025. During this period, upcoming minor releases of the project may include breaking changes to features related to the Storage Box API.

This release includes all changes from the recent Storage Box API changelog entry.

Examples
result, _, err := client.StorageBox.Create(ctx, hcloud.StorageBoxCreateOpts{
	Name:           "my-storage-box",
	StorageBoxType: &hcloud.StorageBoxType{Name: "bx11"},
	Location:       &hcloud.Location{Name: "fsn1"},
	Password:       "my-secure-password",
	SSHKeys: []*hcloud.SSHKey{{ PublicKey: "ssh-rsa AAAAB3NzaC1yc2E..." }},
	Labels:         map[string]string{"key": "value"},
	AccessSettings: &hcloud.StorageBoxCreateOptsAccessSettings{
		ReachableExternally: hcloud.Ptr(true),
		SSHEnabled:          hcloud.Ptr(true),
	},
})

err = client.Action.WaitFor(ctx, result.Action)
Features
  • retrieve a server or load balancer network attachment (#​750)
  • add support for Storage Boxes (#​684)
Bug Fixes
  • deprecate firewall_already_removed error code (#​748)
  • invalid property in network add_subnet request body (#​751)

v2.27.0

Compare Source

DNS API Beta

This release adds support for the new DNS API.

The DNS API is currently in beta, which will likely end on 10 November 2025. After the beta ended, it will no longer be possible to create new zones in the old DNS system. See the DNS Beta FAQ for more details.

Future minor releases of this project may include breaking changes for features that are related to the DNS API.

See the DNS API Beta changelog for more details.

Examples

result, _, err := client.Zone.Create(ctx, hcloud.ZoneCreateOpts{
	Name:   "example.com",
	Mode:   hcloud.ZoneModePrimary,
	Labels: map[string]string{"key": "value"},
	RRSets: []hcloud.ZoneCreateOptsRRSet{
		{
			Name: "@​",
			Type: hcloud.ZoneRRSetTypeA,
			Records: []hcloud.ZoneRRSetRecord{
				{Value: "201.180.75.2", Comment: "server1"},
			},
		},
	},
})

err = client.Action.WaitFor(ctx, result.Action)
zone = result.Zone
Features
  • support the new DNS API (#​740)

v2.26.0

Compare Source

Features
  • support for go1.25 and drop go1.23 (#​738)
Bug Fixes
  • exp: remove dots from deprecation messages (#​736)

v2.25.1

Compare Source

Bug Fixes
  • exp: improve deprecation message helpers (#​734)

v2.25.0

Compare Source

Server Types now depend on Locations.

  • We added a new locations property to the Server Types resource. The new property defines a list of supported Locations and additional per Locations details such as deprecations information.

  • We deprecated the deprecation property from the Server Types resource. The property will gradually be phased out as per Locations deprecations are being announced. Please use the new per Locations deprecation information instead.

See our changelog for more details.

Upgrading
// Before
func ValidateServerType(serverType *hcloud.ServerType) error {
	if serverType.IsDeprecated() {
		return fmt.Errorf("server type %s is deprecated", serverType.Name)
	}
	return nil
}
// After
func ValidateServerType(serverType *hcloud.ServerType, location *hcloud.Location) error {
	serverTypeLocationIndex := slices.IndexFunc(serverType.Locations, func(e hcloud.ServerTypeLocation) bool {
		return e.Location.Name == location.Name
	})
	if serverTypeLocationIndex < 0 {
		return fmt.Errorf("server type %s is not supported in location %q", serverType.Name, location.Name)
	}

	if serverType.Locations[serverTypeLocationIndex].IsDeprecated() {
		return fmt.Errorf("server type %q is deprecated in location %q", serverType.Name, location.Name)
	}

	return nil
}
Features
  • exp: add sliceutil.Transform function (#​731)
  • per locations server types (#​730)

v2.24.0

Compare Source

Features
  • add new ip_range param to ServerAttachToNetwork (#​723)
  • add new ip_range param to LoadBalancerAttachToNetwork (#​724)

v2.23.0

Compare Source

Features
  • expose account currency information (#​695)
  • add category property to server type (#​717)
Bug Fixes
  • primary-ip: labels not clearable (#​699)

v2.22.0

Compare Source

Features
  • firewall: add applied_to_resources property (#​667)
  • add missing error codes (#​671)

v2.21.1

Compare Source

Bug Fixes
  • add arg name in missing or invalid argument errors (#​652)

v2.21.0

Compare Source

Features
  • consistent argument errors (#​637)
Bug Fixes
  • http transport ignored when using instrumentation (#​642)

v2.20.1

Compare Source

Bug Fixes
  • panic when a request did not set the OpPath for instrumentation (#​635)

v2.20.0

Compare Source

In this release, the api_endpoint metric labels changed for all our API requests. Please make sure to update your setup if you were relying on them. The new labels are now easier to understand, see the example below:

  • the path /volumes/64314930 now has the label /volumes/- instead of /volumes/
  • the path /volumes/64314930/actions/resize now has the label /volumes/-/actions/resize instead of /volumes/actions/resize
Features
Bug Fixes
  • request in batches of 25 when waiting for actions (#​611)
  • missing response from requests return values (#​613)
  • move primary ip client request/response structs to schema package (#​633)

v2.19.1

Compare Source

Bug Fixes
  • ignore nil backoff function when configuring poll or retry options (#​587) (8d1b665)

v2.19.0

Compare Source

Features

v2.18.0

Compare Source

Features
Bug Fixes

v2.17.1

Compare Source

Bug Fixes
  • missing load-balancers property in network schema (#​568) (103cf5e)

v2.17.0

Compare Source

Features
  • exp: add mock requests after mock server creation (#​558) (f9879fd)
Bug Fixes

v2.16.0

Compare Source

Features
Bug Fixes

v2.15.0

Compare Source

Features

v2.14.0

Compare Source

Features
Bug Fixes

v2.13.1

Compare Source

Bug Fixes

v2.13.0

Compare Source

Features
Bug Fixes

v2.12.0

Compare Source

API Changes for Traffic Prices and Server Type Included Traffic

There will be a breaking change in the API regarding Traffic Prices and Server Type Included Traffic on 2024-08-05. This release marks the affected fields as Deprecated. Please check if this affects any of your code and switch to the replacement fields where necessary.

You can learn more about this change in our changelog.

Upgrading
Server Type Included Traffic

If you were using the field hcloud.ServerType.IncludedTraffic, you can now get the information through hcloud.ServerType.Pricings:

func main() {
// previous
includedTraffic := serverType.IncludedTraffic

    // now
    locationOfInterest := "fsn1"
    var includedTraffic uint64
    for _, price := range serverType.Pricings {
        if price.Location.Name == locationOfInterest {
            includedTraffic = price.IncludedTraffic
            break
        }
    }
}
Traffic Prices

If you were using the field hcloud.Pricing.Traffic, you can now get the information through hcloud.Pricing.ServerTypes or hcloud.Pricing.LoadBalancerTypes:

func main() {
// previous
trafficPrice := pricing.Traffic

    // now
    serverTypeOfInterest := "cx22"
    locationOfInterest := "fsn1"

    var trafficPrice hcloud.Price
    for _, serverTypePricings := range pricing.ServerTypes {
        if serverTypePricings.ServerType.Name == serverTypeOfInterest {
            for _, price := range serverTypePricings {
               if price.Location.Name == locationOfInterest {
                   trafficPrice = price.PerTBTraffic
                   break
               }
            }
        }
    }
}
Features
  • add jitter in the client default retry exponential backoff (#​492) (6205076)
  • add new WithPollOpts client option (#​493) (2c1a2d6)
  • allow checking multiple errors codes in IsError (#​491) (af59ab8)
  • load-balancer-type: new traffic price fields (94e0f44)
  • pricing: mark traffic field as deprecated (94e0f44)
  • server-type: mark included traffic field as deprecated (94e0f44)
  • server-type: new traffic price fields (94e0f44)

v2.11.0

Compare Source

Features
Bug Fixes

v2.10.2

Compare Source

Bug Fixes
  • exp: allow request path matching in the want function (#​475) (267879b)

v2.10.1

Compare Source

Bug Fixes
  • exp: configure response headers before sending them (#​473) (07d4a35)

v2.10.0

Compare Source

Features
Bug Fixes

v2.9.0

Compare Source

Features
Bug Fixes

v2.8.0

Compare Source

Features
Bug Fixes
  • improve error message format with correlation id (#​430) (013477f)

v2.7.2

Compare Source

Bug Fixes
  • creating firewall with rules not working correctly (#​412) (43b2bab)

v2.7.1

Compare Source

Bug Fixes

v2.7.0

Compare Source

Features
Bug Fixes

Configuration

📅 Schedule: (UTC)

  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from c3cbb0f to 0ae03e3 Compare April 18, 2024 19:22
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.7.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.7.1 Apr 18, 2024
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.7.1 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.7.2 Apr 19, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 0ae03e3 to 6fbd904 Compare April 19, 2024 13:57
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 6fbd904 to 24fb94d Compare May 6, 2024 13:27
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.7.2 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.8.0 May 6, 2024
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.8.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.9.0 May 31, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 24fb94d to f25b332 Compare May 31, 2024 15:59
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from f25b332 to fd91119 Compare June 25, 2024 09:43
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jun 25, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 10 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.22 -> 1.24.0
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/klauspost/compress v1.17.6 -> v1.18.0
github.com/prometheus/client_golang v1.18.0 -> v1.23.2
github.com/prometheus/client_model v0.5.0 -> v0.6.2
github.com/prometheus/common v0.45.0 -> v0.66.1
github.com/prometheus/procfs v0.12.0 -> v0.16.1
golang.org/x/crypto v0.19.0 -> v0.45.0
golang.org/x/net v0.21.0 -> v0.47.0
golang.org/x/sys v0.17.0 -> v0.38.0
google.golang.org/protobuf v1.32.0 -> v1.36.8

@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.9.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.10.0 Jun 25, 2024
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.10.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.10.1 Jun 25, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch 2 times, most recently from 5a7460b to bc00ed2 Compare June 26, 2024 16:46
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.10.1 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.10.2 Jun 26, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from bc00ed2 to c0e9552 Compare July 23, 2024 12:42
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.10.2 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.11.0 Jul 23, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from c0e9552 to 886c56a Compare July 25, 2024 13:46
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.11.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.12.0 Jul 25, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 886c56a to 8a6a9a1 Compare August 6, 2024 10:58
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.12.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.13.0 Aug 6, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 8a6a9a1 to 7c344d9 Compare August 9, 2024 13:29
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.13.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.13.1 Aug 9, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 7c344d9 to 66786c9 Compare October 21, 2024 14:36
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.13.1 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.14.0 Oct 21, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 66786c9 to 51942c0 Compare November 1, 2024 02:23
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.14.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.15.0 Nov 1, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 51942c0 to 5370c42 Compare November 5, 2024 15:34
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.15.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.16.0 Nov 5, 2024
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 5370c42 to 8dc871a Compare November 22, 2024 11:24
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 71ee44e to 5538b57 Compare March 27, 2025 12:40
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.20.1 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.21.0 Mar 27, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 5538b57 to 2c401d1 Compare April 8, 2025 11:46
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 2c401d1 to 99cdeff Compare May 7, 2025 11:43
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 99cdeff to be8f08b Compare June 3, 2025 11:31
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.21.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.21.1 Jun 3, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from be8f08b to c8e52b1 Compare July 11, 2025 10:41
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.21.1 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.22.0 Jul 11, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from c8e52b1 to 782cca9 Compare August 10, 2025 14:10
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 782cca9 to 84e76b3 Compare September 8, 2025 12:28
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.22.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.23.0 Sep 8, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 84e76b3 to 3c3a2fa Compare September 20, 2025 12:45
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.23.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.24.0 Sep 20, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 3c3a2fa to cd78089 Compare September 25, 2025 08:56
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.24.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.25.0 Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from cd78089 to 2a4b0e4 Compare September 26, 2025 18:12
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.25.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.25.1 Sep 26, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 2a4b0e4 to 6eb843b Compare October 6, 2025 10:01
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.25.1 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.26.0 Oct 6, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 6eb843b to af37f82 Compare October 7, 2025 09:41
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.26.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.27.0 Oct 7, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from af37f82 to 6a9e33f Compare October 21, 2025 16:54
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.27.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.28.0 Oct 21, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 6a9e33f to 6859f37 Compare October 30, 2025 12:37
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.28.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.29.0 Oct 30, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 6859f37 to 50407c6 Compare November 10, 2025 12:43
@renovate renovate Bot changed the title fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.29.0 fix(deps): update module github.com/hetznercloud/hcloud-go/v2 to v2.30.0 Nov 10, 2025
@renovate renovate Bot force-pushed the renovate/github.com-hetznercloud-hcloud-go-v2-2.x branch from 50407c6 to 92534b0 Compare November 18, 2025 22:53
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Dec 15, 2025

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 10 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.22 -> 1.25.0
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/klauspost/compress v1.17.6 -> v1.18.0
github.com/prometheus/client_golang v1.18.0 -> v1.23.2
github.com/prometheus/client_model v0.5.0 -> v0.6.2
github.com/prometheus/common v0.45.0 -> v0.66.1
github.com/prometheus/procfs v0.12.0 -> v0.16.1
golang.org/x/crypto v0.19.0 -> v0.50.0
golang.org/x/net v0.21.0 -> v0.53.0
golang.org/x/sys v0.17.0 -> v0.44.0
google.golang.org/protobuf v1.32.0 -> v1.36.8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants