|
2 | 2 |
|
3 | 3 | # Changelog |
4 | 4 |
|
5 | | -## v0.6.2 |
| 5 | +## v0.6.3 |
6 | 6 |
|
7 | | -**Released:** 08/10/2019 |
| 7 | +**Released:** 10/12/2019 |
8 | 8 |
|
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. |
12 | 10 |
|
13 | | -### Bug Fixes |
| 11 | +### Security Bug Fixes |
14 | 12 |
|
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 |
18 | 17 |
|
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 | +)** |
20 | 55 |
|
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 | +--- |
23 | 57 |
|
24 | 58 | ## v0.5.5 |
25 | 59 |
|
|
0 commit comments