Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## v2.3.0 (2021-03-10)

### Features

* **apple-silicon**: add support for M1 control ([#1739](https://github.com/scaleway/scaleway-cli/pull/1739))
* **as**: add default value for create server ([#1747](https://github.com/scaleway/scaleway-cli/pull/1747))
* **as**: add server type list format ([#1748](https://github.com/scaleway/scaleway-cli/pull/1748))
* **as**: add ssh verb on the server resource to connect to a server ([#1741](https://github.com/scaleway/scaleway-cli/pull/1741))
* **as**: add support for wait command and wait flag ([#1745](https://github.com/scaleway/scaleway-cli/pull/1745))
* **autocomplete**: better map and slice handling ([#1574](https://github.com/scaleway/scaleway-cli/pull/1574))
* **iot**: migrate to IoT API v1 ([#1688](https://github.com/scaleway/scaleway-cli/pull/1688))
* **k8s**: add a default for choosing latest version in cluster create ([#1781](https://github.com/scaleway/scaleway-cli/pull/1781))
* **k8s**: add a default generated name for create cluster and create pool ([#1779](https://github.com/scaleway/scaleway-cli/pull/1779))
* **k8s**: add apiserver_cert_sans ([#1758](https://github.com/scaleway/scaleway-cli/pull/1758))
* **k8s**: add default cni
* **k8s**: add default node type and size in create pool ([#1782](https://github.com/scaleway/scaleway-cli/pull/1782))
* **k8s**: add marshallers for get versions ([#1560](https://github.com/scaleway/scaleway-cli/pull/1560))
* **k8s**: add upgrade policy field ([#1696](https://github.com/scaleway/scaleway-cli/pull/1696))
* **k8s**: add zone to pool ([#1697](https://github.com/scaleway/scaleway-cli/pull/1697))
* **k8s**: fix required name on pool creation in cluster ([#1753](https://github.com/scaleway/scaleway-cli/pull/1753))
* **k8s**: fix version list and add a golden test ([#1769](https://github.com/scaleway/scaleway-cli/pull/1769))
* **lb**: allow all types ([#1792](https://github.com/scaleway/scaleway-cli/pull/1792))
* **rdb**: expose float engine settings ([#1771](https://github.com/scaleway/scaleway-cli/pull/1771))
* **registry**: add default for name in create namespace request ([#1780](https://github.com/scaleway/scaleway-cli/pull/1780))
* enable darwin/arm64

### Fixes

* **instance**: use snake case in json output format for image list ([#1750](https://github.com/scaleway/scaleway-cli/pull/1750))

### Others

* **typo**: ssh init already present ([#1756](https://github.com/scaleway/scaleway-cli/pull/1756))



## v2.2.4 (2021-01-19)

### Features
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,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.2.4/scw-2.2.4-darwin-x86_64"
curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-2.3.0-darwin-x86_64"

# Allow executing file as program
chmod +x /usr/local/bin/scw
Expand All @@ -78,7 +78,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.2.4/scw-2.2.4-linux-x86_64"
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-2.3.0-linux-x86_64"

# Allow executing file as program
sudo chmod +x /usr/local/bin/scw
Expand All @@ -89,7 +89,7 @@ scw init

#### Windows

You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.2.4/scw-2.2.4-windows-x86_64.exe<br/>
You can download the last release here: https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-2.3.0-windows-x86_64.exe<br/>
[This official guide](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-2010/ee537574%28v%3Doffice.14%29) explains how to add tools to your `PATH`.

<!-- TODO:
Expand All @@ -100,7 +100,7 @@ First, download [the `.deb` file](https://github.com/scaleway/scaleway-cli/relea

```bash
export ARCH=amd64 # Can be 'amd64', 'arm', 'arm64' or 'i386'
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.2.4/scw-v2.2.4-${ARCH}.deb" -O /tmp/scw.deb
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-v2.3.0-${ARCH}.deb" -O /tmp/scw.deb
```

Then, run the installation and remove the `.deb` file:
Expand All @@ -126,7 +126,7 @@ docker run scaleway/cli version
You can use the CLI as you would run any Docker image:

```sh
docker run -i --rm scaleway/cli:v2.2.4
docker run -i --rm scaleway/cli:v2.3.0
```

See more in-depth information about running the CLI in Docker [here](./docs/docker.md)
Expand Down
2 changes: 1 addition & 1 deletion cmd/scw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

var (
// Version is updated manually
Version = "v2.2.4" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
Version = "v2.3.0" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"

// These are initialized by the build script

Expand Down