Skip to content

Commit

Permalink
chore: release 2.2.4 (#1676)
Browse files Browse the repository at this point in the history
Co-authored-by: Rémy Léone <[email protected]>
  • Loading branch information
scaleway-bot and remyleone authored Jan 19, 2021
1 parent 22e5c3d commit 267e8d2
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

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

### Features

* **core**: handle map in request arguments ([#1569](https://github.com/scaleway/scaleway-cli/pull/1569))
* **instance**: add support for enable_default_security on CreateSecurityGroup ([#1595](https://github.com/scaleway/scaleway-cli/pull/1595))
* **instance**: add ubuntu as default for image arg in server create ([#1638](https://github.com/scaleway/scaleway-cli/pull/1638))
* **k8s**: add max_graceful_termination_sec to autoscaler flag ([#1572](https://github.com/scaleway/scaleway-cli/pull/1572))
* **k8s**: add new autoscaler flag and add kubelet_args ([#1566](https://github.com/scaleway/scaleway-cli/pull/1566))
* **k8s**: add pl-waw as an available region ([#1675](https://github.com/scaleway/scaleway-cli/pull/1675))
* **k8s**: add price expander in autoscaling options ([#1598](https://github.com/scaleway/scaleway-cli/pull/1598))
* **lb**: add CreatedAt and UpdatedAt for certificate list ([#1630](https://github.com/scaleway/scaleway-cli/pull/1630))
* **registry**: add support for pl-waw ([#1587](https://github.com/scaleway/scaleway-cli/pull/1587))
* remove deprecation warning on organization ([#1640](https://github.com/scaleway/scaleway-cli/pull/1640))

### Fixes

* **instance**: use a slice for addition snapshots in create volume ([#1575](https://github.com/scaleway/scaleway-cli/pull/1575))

### Others

* **rdb**: minor API doc spelling changes. ([#1627](https://github.com/scaleway/scaleway-cli/pull/1627))
* **chore**: fix typo ([#1623](https://github.com/scaleway/scaleway-cli/pull/1623))
* **doc**: create the security policy ([#1616](https://github.com/scaleway/scaleway-cli/pull/1616))
* **doc**: fix contributing link in mantainers file ([#1615](https://github.com/scaleway/scaleway-cli/pull/1615))



## v2.2.3 (2020-11-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.3/scw-2.2.3-darwin-x86_64"
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"

# 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.3/scw-2.2.3-linux-x86_64"
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"

# 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.3/scw-2.2.3-windows-x86_64.exe<br/>
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/>
[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.3/scw-v2.2.3-${ARCH}.deb" -O /tmp/scw.deb
wget "https://github.com/scaleway/scaleway-cli/releases/download/v2.2.4/scw-v2.2.4-${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.3
docker run -i --rm scaleway/cli:v2.2.4
```

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.3+dev" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"
Version = "v2.2.4" // ${BUILD_VERSION:-`git describe --tags --dirty --always`}"

// These are initialized by the build script

Expand Down

0 comments on commit 267e8d2

Please sign in to comment.