Skip to content

Commit 709a800

Browse files
chore: release 2.3.0 (#1811)
Co-authored-by: Rémy Léone <[email protected]>
1 parent 53a14d6 commit 709a800

File tree

3 files changed

+42
-6
lines changed

3 files changed

+42
-6
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## v2.3.0 (2021-03-10)
4+
5+
### Features
6+
7+
* **apple-silicon**: add support for M1 control ([#1739](https://github.com/scaleway/scaleway-cli/pull/1739))
8+
* **as**: add default value for create server ([#1747](https://github.com/scaleway/scaleway-cli/pull/1747))
9+
* **as**: add server type list format ([#1748](https://github.com/scaleway/scaleway-cli/pull/1748))
10+
* **as**: add ssh verb on the server resource to connect to a server ([#1741](https://github.com/scaleway/scaleway-cli/pull/1741))
11+
* **as**: add support for wait command and wait flag ([#1745](https://github.com/scaleway/scaleway-cli/pull/1745))
12+
* **autocomplete**: better map and slice handling ([#1574](https://github.com/scaleway/scaleway-cli/pull/1574))
13+
* **iot**: migrate to IoT API v1 ([#1688](https://github.com/scaleway/scaleway-cli/pull/1688))
14+
* **k8s**: add a default for choosing latest version in cluster create ([#1781](https://github.com/scaleway/scaleway-cli/pull/1781))
15+
* **k8s**: add a default generated name for create cluster and create pool ([#1779](https://github.com/scaleway/scaleway-cli/pull/1779))
16+
* **k8s**: add apiserver_cert_sans ([#1758](https://github.com/scaleway/scaleway-cli/pull/1758))
17+
* **k8s**: add default cni
18+
* **k8s**: add default node type and size in create pool ([#1782](https://github.com/scaleway/scaleway-cli/pull/1782))
19+
* **k8s**: add marshallers for get versions ([#1560](https://github.com/scaleway/scaleway-cli/pull/1560))
20+
* **k8s**: add upgrade policy field ([#1696](https://github.com/scaleway/scaleway-cli/pull/1696))
21+
* **k8s**: add zone to pool ([#1697](https://github.com/scaleway/scaleway-cli/pull/1697))
22+
* **k8s**: fix required name on pool creation in cluster ([#1753](https://github.com/scaleway/scaleway-cli/pull/1753))
23+
* **k8s**: fix version list and add a golden test ([#1769](https://github.com/scaleway/scaleway-cli/pull/1769))
24+
* **lb**: allow all types ([#1792](https://github.com/scaleway/scaleway-cli/pull/1792))
25+
* **rdb**: expose float engine settings ([#1771](https://github.com/scaleway/scaleway-cli/pull/1771))
26+
* **registry**: add default for name in create namespace request ([#1780](https://github.com/scaleway/scaleway-cli/pull/1780))
27+
* enable darwin/arm64
28+
29+
### Fixes
30+
31+
* **instance**: use snake case in json output format for image list ([#1750](https://github.com/scaleway/scaleway-cli/pull/1750))
32+
33+
### Others
34+
35+
* **typo**: ssh init already present ([#1756](https://github.com/scaleway/scaleway-cli/pull/1756))
36+
37+
38+
339
## v2.2.4 (2021-01-19)
440

541
### Features

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ echo $PATH
6565
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
6666

6767
# Download the release from github
68-
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"
68+
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"
6969

7070
# Allow executing file as program
7171
chmod +x /usr/local/bin/scw
@@ -78,7 +78,7 @@ scw init
7878

7979
```bash
8080
# Download the release from github
81-
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"
81+
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"
8282

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

9090
#### Windows
9191

92-
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/>
92+
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/>
9393
[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`.
9494

9595
<!-- TODO:
@@ -100,7 +100,7 @@ First, download [the `.deb` file](https://github.com/scaleway/scaleway-cli/relea
100100
101101
```bash
102102
export ARCH=amd64 # Can be 'amd64', 'arm', 'arm64' or 'i386'
103-
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.2.4/scw-v2.2.4-${ARCH}.deb" -O /tmp/scw.deb
103+
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.3.0/scw-v2.3.0-${ARCH}.deb" -O /tmp/scw.deb
104104
```
105105
106106
Then, run the installation and remove the `.deb` file:
@@ -126,7 +126,7 @@ docker run scaleway/cli version
126126
You can use the CLI as you would run any Docker image:
127127

128128
```sh
129-
docker run -i --rm scaleway/cli:v2.2.4
129+
docker run -i --rm scaleway/cli:v2.3.0
130130
```
131131

132132
See more in-depth information about running the CLI in Docker [here](./docs/docker.md)

cmd/scw/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

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

1818
// These are initialized by the build script
1919

0 commit comments

Comments
 (0)