diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c2555430..779a03df17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,51 @@ # Changelog +## v2.0.0-beta.2 (2020-03-25) + +### Features + +* **autocomplete**: handle positional arguments ([#769](https://github.com/scaleway/scaleway-cli/pull/769)) +* **baremetal**: add list server command ([#726](https://github.com/scaleway/scaleway-cli/pull/726)) +* **baremetal**: add generated commands ([#758](https://github.com/scaleway/scaleway-cli/pull/758)) +* **baremetal**: add ip and os commands ([#790](https://github.com/scaleway/scaleway-cli/pull/790)) +* **core**: improve human marshal for nil value ([#737](https://github.com/scaleway/scaleway-cli/pull/737)) +* **core**: remove boolean without value in args ([#767](https://github.com/scaleway/scaleway-cli/pull/767)) +* **core**: implement struct required validation ([#751](https://github.com/scaleway/scaleway-cli/pull/751)) +* **core**: positional argument ([#759](https://github.com/scaleway/scaleway-cli/pull/759)) +* **core**: support colors on windows ([#734](https://github.com/scaleway/scaleway-cli/pull/734)) +* **instance**: add server wait command ([#727](https://github.com/scaleway/scaleway-cli/pull/727)) +* **instance**: add tags and zone fields to IP methods ([#724](https://github.com/scaleway/scaleway-cli/pull/724)) +* **instance**: improve volume deletion on server delete ([#730](https://github.com/scaleway/scaleway-cli/pull/730)) +* **instance**: rename image create extra-volumes arg into additional-volumes ([#723](https://github.com/scaleway/scaleway-cli/pull/723)) +* **instance**: enhance server type listing ([#732](https://github.com/scaleway/scaleway-cli/pull/732)) +* **instance**: for `image create` rename `root-volume` into `snapshot-id` ([#718](https://github.com/scaleway/scaleway-cli/pull/718)) +* **instance**: reorder instance server list collumns ([#738](https://github.com/scaleway/scaleway-cli/pull/738)) +* **k8s**: add k8s namespace ([#745](https://github.com/scaleway/scaleway-cli/pull/745)) +* **k8s**: add k8s in available namespace ([#746](https://github.com/scaleway/scaleway-cli/pull/746)) +* **k8s**: add kubeconfig commands ([#757](https://github.com/scaleway/scaleway-cli/pull/757)) +* **k8s**: add node, version, pool ([#778](https://github.com/scaleway/scaleway-cli/pull/778)) +* **k8s**: add version commands ([#775](https://github.com/scaleway/scaleway-cli/pull/775)) +* **k8s**: add wait and status color to k8s node ([#774](https://github.com/scaleway/scaleway-cli/pull/774)) +* **k8s**: add wait and status color to k8s pool ([#773](https://github.com/scaleway/scaleway-cli/pull/773)) +* **k8s**: add wait flag to cluster actions ([#752](https://github.com/scaleway/scaleway-cli/pull/752)) + +### Fixes + +* **core**: disable check args exist valid for raw ([#788](https://github.com/scaleway/scaleway-cli/pull/788)) +* **core**: better hint on positional argument ([#799](https://github.com/scaleway/scaleway-cli/pull/799)) +* **core**: recursive arg validation ([#712](https://github.com/scaleway/scaleway-cli/pull/712)) +* **init**: autocomplete install eval line ([#728](https://github.com/scaleway/scaleway-cli/pull/728)) +* **instance**: remove placement-group-server ([#761](https://github.com/scaleway/scaleway-cli/pull/761)) +* **instance**: add zone to clear security group ([#729](https://github.com/scaleway/scaleway-cli/pull/729)) +* **instance**: make inbound-default-policy and outbound-default-policy optional in update security-group ([#754](https://github.com/scaleway/scaleway-cli/pull/754)) +* **instance**: remove bootscript resource ([#736](https://github.com/scaleway/scaleway-cli/pull/736)) +* **instance**: use zone field in listing ([#731](https://github.com/scaleway/scaleway-cli/pull/731)) +* **instance**: hide deprecated instance for scw instance server-type list ([#733](https://github.com/scaleway/scaleway-cli/pull/733)) +* **k8s**: return cluster on wait flags ([#776](https://github.com/scaleway/scaleway-cli/pull/776)) +* **marketplace**: hide column 'valid until' in marketplace list ([#719](https://github.com/scaleway/scaleway-cli/pull/719)) +* **sentry**: unknown error disappears ([#716](https://github.com/scaleway/scaleway-cli/pull/716)) + + ## v2.0.0-beta.1 (2020-02-14) * First release 🎉 diff --git a/README.md b/README.md index a72f8f1e30..077bef7822 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin # Download the release from github -curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-darwin-x86_64" +curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.2/scw-v2-0-0-beta-2-darwin-x86_64" # Allow executing file as program chmod +x /usr/local/bin/scw @@ -83,7 +83,7 @@ scw init ```bash # Download the release from github -sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-linux-x86_64" +sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.2/scw-v2-0-0-beta-2-linux-x86_64" # Allow executing file as program sudo chmod +x /usr/local/bin/scw @@ -94,7 +94,7 @@ scw init #### Windows -You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.1/scw-v2.0.0-beta.1-windows-x86_64
+You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.0.0-beta.2/scw-v2-0-0-beta-2-windows-x86_64.exe
[This official guide](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-2010/ee537574(v=office.14)) explains how to add tools to your `PATH`.