Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Release v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stealthybox committed Dec 10, 2019
1 parent 5dde624 commit ed51b93
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 12 deletions.
58 changes: 46 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,58 @@

# Changelog

## v0.6.2
## v0.6.3

**Released:** 08/10/2019
**Released:** 10/12/2019

This is the second patch release in the `v0.6.X` series, containing bugfixes:
It moves the blocking SSH wait for vm's run with `--ssh` to using the actual protocol.
It also fixes a locale bug with `resize2fs` parsing that used to occur when using `zh_CN.utf8`.
This is the third patch release in the `v0.6.x` series, containing 1 security bug fix.

### Bug Fixes
### Security Bug Fixes

- Breakout and test `resize2fs` parsing with localized strings + fix for `zh_CN.utf8` ([#473](https://github.com/weaveworks/ignite/pull/473), [@stealthybox](https://github.com/stealthybox))
- Refactor SSH wait ([#474](https://github.com/weaveworks/ignite/pull/474), [@stealthybox](https://github.com/stealthybox))
- Use SSH Dial to check if SSH service is really running ([#469](https://github.com/weaveworks/ignite/pull/469), [@chanwit](https://github.com/chanwit))
- Patch CVE-2019-18960 -- Use Firecracker v0.18.1 for ignite 0.6.x ([#499](https://github.com/weaveworks/ignite/pull/499), [@stealthybox](https://github.com/stealthybox))
## v0.6.2

**Released:** 08/10/2019

### Documentation
This is the second patch release in the `v0.6.X` series, containing bugfixes:
It moves the blocking SSH wait for vm's run with `--ssh` to using the actual protocol.
It also fixes a locale bug with `resize2fs` parsing that used to occur when using `zh_CN.utf8`.

### Bug Fixes

- Breakout and test `resize2fs` parsing with localized strings + fix for `zh_CN.utf8` ([#473](https://github.com/weaveworks/ignite/pull/473), [@stealthybox](https://github.com/stealthybox))
- Refactor SSH wait ([#474](https://github.com/weaveworks/ignite/pull/474), [@stealthybox](https://github.com/stealthybox))
- Use SSH Dial to check if SSH service is really running ([#469](https://github.com/weaveworks/ignite/pull/469), [@chanwit](https://github.com/chanwit))

### Documentation

- Ensure CNI bin dir exists before installing ([#471](https://github.com/weaveworks/ignite/pull/471), [@stealthybox](https://github.com/stealthybox))
- Bump docs install version to v0.6.2 ([#475](https://github.com/weaveworks/ignite/pull/475), [@stealthybox](https://github.com/stealthybox))

## Trying it out / Next Steps!

In short:

```bash
export VERSION=v0.6.2
export GOARCH=$(go env GOARCH 2>/dev/null || echo "amd64")

for binary in ignite ignited; do
echo "Installing ${binary}..."
curl -sfLo ${binary} https://github.com/weaveworks/ignite/releases/download/${VERSION}/${binary}-${GOARCH}
chmod +x ${binary}
sudo mv ${binary} /usr/local/bin
done
```

A more throughout installation guide is available here: https://ignite.readthedocs.io/en/latest/installation.html

__________
**[OCI images for this release](
https://hub.docker.com/r/weaveworks/ignite/tags?page=1&name=v0.6.2
)**

- Ensure CNI bin dir exists before installing ([#471](https://github.com/weaveworks/ignite/pull/471), [@stealthybox](https://github.com/stealthybox))
- Bump docs install version to v0.6.2 ([#475](https://github.com/weaveworks/ignite/pull/475), [@stealthybox](https://github.com/stealthybox))
---

## v0.5.5

Expand Down
9 changes: 9 additions & 0 deletions docs/releases/v0.6.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## v0.6.3

**Released:** 10/12/2019

This is the third patch release in the `v0.6.x` series, containing 1 security bug fix.

### Security Bug Fixes

- Patch CVE-2019-18960 -- Use Firecracker v0.18.1 for ignite 0.6.x ([#499](https://github.com/weaveworks/ignite/pull/499), [@stealthybox](https://github.com/stealthybox))

0 comments on commit ed51b93

Please sign in to comment.