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

Commit ed51b93

Browse files
committed
Release v0.6.3
1 parent 5dde624 commit ed51b93

2 files changed

Lines changed: 55 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 46 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,58 @@
22

33
# Changelog
44

5-
## v0.6.2
5+
## v0.6.3
66

7-
**Released:** 08/10/2019
7+
**Released:** 10/12/2019
88

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

13-
### Bug Fixes
11+
### Security Bug Fixes
1412

15-
- 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))
16-
- Refactor SSH wait ([#474](https://github.com/weaveworks/ignite/pull/474), [@stealthybox](https://github.com/stealthybox))
17-
- Use SSH Dial to check if SSH service is really running ([#469](https://github.com/weaveworks/ignite/pull/469), [@chanwit](https://github.com/chanwit))
13+
- 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))
14+
## v0.6.2
15+
16+
**Released:** 08/10/2019
1817

19-
### Documentation
18+
This is the second patch release in the `v0.6.X` series, containing bugfixes:
19+
It moves the blocking SSH wait for vm's run with `--ssh` to using the actual protocol.
20+
It also fixes a locale bug with `resize2fs` parsing that used to occur when using `zh_CN.utf8`.
21+
22+
### Bug Fixes
23+
24+
- 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))
25+
- Refactor SSH wait ([#474](https://github.com/weaveworks/ignite/pull/474), [@stealthybox](https://github.com/stealthybox))
26+
- Use SSH Dial to check if SSH service is really running ([#469](https://github.com/weaveworks/ignite/pull/469), [@chanwit](https://github.com/chanwit))
27+
28+
### Documentation
29+
30+
- Ensure CNI bin dir exists before installing ([#471](https://github.com/weaveworks/ignite/pull/471), [@stealthybox](https://github.com/stealthybox))
31+
- Bump docs install version to v0.6.2 ([#475](https://github.com/weaveworks/ignite/pull/475), [@stealthybox](https://github.com/stealthybox))
32+
33+
## Trying it out / Next Steps!
34+
35+
In short:
36+
37+
```bash
38+
export VERSION=v0.6.2
39+
export GOARCH=$(go env GOARCH 2>/dev/null || echo "amd64")
40+
41+
for binary in ignite ignited; do
42+
echo "Installing ${binary}..."
43+
curl -sfLo ${binary} https://github.com/weaveworks/ignite/releases/download/${VERSION}/${binary}-${GOARCH}
44+
chmod +x ${binary}
45+
sudo mv ${binary} /usr/local/bin
46+
done
47+
```
48+
49+
A more throughout installation guide is available here: https://ignite.readthedocs.io/en/latest/installation.html
50+
51+
__________
52+
**[OCI images for this release](
53+
https://hub.docker.com/r/weaveworks/ignite/tags?page=1&name=v0.6.2
54+
)**
2055

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

2458
## v0.5.5
2559

docs/releases/v0.6.3.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## v0.6.3
2+
3+
**Released:** 10/12/2019
4+
5+
This is the third patch release in the `v0.6.x` series, containing 1 security bug fix.
6+
7+
### Security Bug Fixes
8+
9+
- 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 commit comments

Comments
 (0)