diff --git a/CHANGELOG.md b/CHANGELOG.md index 86a777164..bc528746a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ ## Unreleased +## 1.98.0 + ### Features -- storage: add `copy` command for copying objects within and across buckets (#887) +- storage: add server-side `copy`/`cp` for objects and recursive prefixes within and across buckets, plus an `mv` alias (#887) ### Bug fixes @@ -12,12 +14,16 @@ - compute: honor the selected template's minimum disk size when creating instances and instance pools (#882) - instance create: apply delete protection in the instance's zone, fixing a wrong-zone "Not Found" error when creating protected instances outside the default zone (#879) - sks cluster update: fix oidc config drop (#881) +- kms: avoid a panic when showing keys without an automatic material value (#877) +- compute eip: display health-check interval and timeout in seconds (#858) -### ImprovementsāŽ +### Improvements +- kms: display scheduled deletion timestamps and render unset timestamps as `n/a` (#869) - AUR package: reset pkgrel in PKGBUILD (#878) - utils: remove unused ICMP formatters (#884) - deps: update golang.org/x dependencies (#885) +- deps: update Go to 1.26.6 (#895) ## 1.97.0 @@ -52,9 +58,6 @@ - storage: add bucket lifecycle support #847 -### Bug fixes -- fix(eip): EIP healthchecks time are in seconds at the API level #858 - ## 1.95.4 ### Improvements diff --git a/go.mod b/go.mod index 9c8abe361..3d0f9d44f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/exoscale/cli -go 1.26.5 +go 1.26.6 require ( github.com/aws/aws-sdk-go-v2 v1.42.1 diff --git a/tests/integ/go.mod b/tests/integ/go.mod index 90348028f..33b56d1c5 100644 --- a/tests/integ/go.mod +++ b/tests/integ/go.mod @@ -1,6 +1,6 @@ module github.com/exoscale/cli/internal/integ -go 1.26.5 +go 1.26.6 require ( github.com/aws/aws-sdk-go-v2 v1.42.1