diff --git a/CHANGELOG.md b/CHANGELOG.md index b3cbca0c..14ea4ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v2.44.0](https://github.com/hetznercloud/hcloud-go/releases/tag/v2.44.0) + +### Datacenters resource is now deprecated + +The endpoints `GET /v1/datacenters` and `GET /v1/datacenters/{id}` are now deprecated and will be removed after 1 Oct. 2026. After this date, requests to these endpoints will return `HTTP 410 Gone`. + +The [DatacenterClient](https://pkg.go.dev/github.com/hetznercloud/hcloud-go/v2/hcloud#DatacenterClient), [Datacenter](https://pkg.go.dev/github.com/hetznercloud/hcloud-go/v2/hcloud#Datacenter) and related structs are now deprecated. + +See the [changelog](https://docs.hetzner.cloud/changelog#2026-06-02-datacenters-deprecated) for more details. + +### Features + +- deprecate datacenters resource (#867) + ## [v2.43.0](https://github.com/hetznercloud/hcloud-go/releases/tag/v2.43.0) ### Features diff --git a/hcloud/hcloud.go b/hcloud/hcloud.go index aa09bfa4..b1f4ce4b 100644 --- a/hcloud/hcloud.go +++ b/hcloud/hcloud.go @@ -81,4 +81,4 @@ breaking changes. package hcloud // Version is the library's version following Semantic Versioning. -const Version = "2.43.0" // x-releaser-pleaser-version +const Version = "2.44.0" // x-releaser-pleaser-version