From a80939c0952f59a8ebd7e6734539e7a138ef68ab Mon Sep 17 00:00:00 2001 From: Dennis Marttinen Date: Fri, 16 Aug 2019 18:11:13 +0300 Subject: [PATCH] Release v0.5.1 --- CHANGELOG.md | 197 ++++++++++++++++++++++++---------------- docs/releases/v0.5.1.md | 17 ++++ 2 files changed, 134 insertions(+), 80 deletions(-) create mode 100644 docs/releases/v0.5.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index fd7109df1..9c32b092a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,30 @@ - - -# Changelog - -## v0.5.0 - -**Released:** 13/08/2019 - + + +# Changelog + +## v0.5.1 + +**Released:** 16/08/2019 + +The first patch release in the `v0.5.X` series. Contains some much needed UX improvements, go ahead and try it out! + +### Enhancements + +- Make `ignite daemon` handle file moves without re-creating and support multiple active moves at once ([#341](https://github.com/weaveworks/ignite/pull/341), [@twelho](https://github.com/twelho)) +- Fix `GOHOSTARCH` propagation in the Makefile, tag development image for the host architecture only ([#340](https://github.com/weaveworks/ignite/pull/340), [@twelho](https://github.com/twelho)) +- Fix `ignite-spawn`'s VM metadata formatting when performing a cleanup ([#336](https://github.com/weaveworks/ignite/pull/336), [@twelho](https://github.com/twelho)) +- Automatically optimize the size of imported images, support importing large images ([#335](https://github.com/weaveworks/ignite/pull/335), [@twelho](https://github.com/twelho)) + +### Documentation + +- Change Read the Docs links to point to the stable branch in main README ([#338](https://github.com/weaveworks/ignite/pull/338), [@twelho](https://github.com/twelho)) + +## v0.5.0 + +**Released:** 13/08/2019 + This release consists of **54** noteworthy PRs from 12 contributors. -We had **14** contributions from 8 external contributors, thanks! +We had **14** contributions from 8 external contributors, thanks :tada:! The main themes of this release has been: @@ -20,7 +37,7 @@ The main themes of this release has been: Also, our documentation is now available at **[https://ignite.readthedocs.org](https://ignite.readthedocs.org)**. Check that site out whenever you need some information, or open an issue :) -### New Features +## New Features - Support external volumes (block devices) in Ignite VMs ([#275](https://github.com/weaveworks/ignite/pull/275), [@twelho](https://github.com/twelho)) - Add ARM64 support ([#173](https://github.com/weaveworks/ignite/pull/173), [@luxas](https://github.com/luxas)) @@ -30,7 +47,7 @@ Check that site out whenever you need some information, or open an issue :) - Support directories as well with the `--copy-files` flag ([#271](https://github.com/weaveworks/ignite/pull/271), [@twelho](https://github.com/twelho)) - Implement read-write GitOps ([#241](https://github.com/weaveworks/ignite/pull/241), [@twelho](https://github.com/twelho)) -### API Changes +## API Changes - Remove `.spec.network.mode`; use a global `--network-plugin` flag instead ([#319](https://github.com/weaveworks/ignite/pull/319), [@luxas](https://github.com/luxas)) - Rename `.spec.image.ociClaim.ref` to `.spec.image.oci` for simplicity ([#311](https://github.com/weaveworks/ignite/pull/311), [@twelho](https://github.com/twelho)) @@ -41,7 +58,7 @@ Check that site out whenever you need some information, or open an issue :) - Replace `vm.status.state` with `vm.status.running` ([#292](https://github.com/weaveworks/ignite/pull/292), [@twelho](https://github.com/twelho)) - Add the initial v1alpha2 API types ([#250](https://github.com/weaveworks/ignite/pull/250), [@twelho](https://github.com/twelho)) -### Enhancements +## Enhancements - Refactor: Use the `netlink` library instead of exec'ing out to `ip` ([#279](https://github.com/weaveworks/ignite/pull/279), [@alexeldeib](https://github.com/alexeldeib)) - Improve the CNI implementation, and documentation ([#308](https://github.com/weaveworks/ignite/pull/308), [@luxas](https://github.com/luxas)) @@ -61,7 +78,7 @@ Check that site out whenever you need some information, or open an issue :) - Client and Storage rework: Recognize multiple API groups ([#221](https://github.com/weaveworks/ignite/pull/221), [@luxas](https://github.com/luxas)) - Create internal API types, and use them ([#215](https://github.com/weaveworks/ignite/pull/215), [@luxas](https://github.com/luxas)) -### Bug Fixes +## Bug Fixes - Fix `ignite rm -f` for a running VM without `--debug` ([#320](https://github.com/weaveworks/ignite/pull/320), [@twelho](https://github.com/twelho)) - Ensure the directory for `godoc2md` ([#231](https://github.com/weaveworks/ignite/pull/231), [@BenTheElder](https://github.com/BenTheElder)) @@ -69,7 +86,7 @@ Check that site out whenever you need some information, or open an issue :) - Fix image root permissions ([#249](https://github.com/weaveworks/ignite/pull/249), [@praseodym](https://github.com/praseodym)) - Separate graph generation from `make tidy`, add make target docs ([#233](https://github.com/weaveworks/ignite/pull/233), [@twelho](https://github.com/twelho)) -### Documentation +## Documentation - Documentation updates for v0.5.0 ([#324](https://github.com/weaveworks/ignite/pull/324), [@twelho](https://github.com/twelho)) - docs: packet and azure ([#330](https://github.com/weaveworks/ignite/pull/330), [@alexeldeib](https://github.com/alexeldeib)) @@ -89,10 +106,30 @@ Check that site out whenever you need some information, or open an issue :) - Add an awesome-ignite list for ignite ([#270](https://github.com/weaveworks/ignite/pull/270), [@luxas](https://github.com/luxas)) - Changed --kernel to --kernel-image for accuracy ([#217](https://github.com/weaveworks/ignite/pull/217), [@paavan98pm](https://github.com/paavan98pm)) -## v0.5.0-rc.1 +## Trying it out / Next Steps! + +In short: + +```bash +export VERSION=v0.5.0 +export GOARCH=$(go env GOARCH 2>/dev/null || echo "amd64") -**Released:** 12/08/2019 +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 + +--- + +## v0.5.0-rc.1 + +**Released:** 12/08/2019 + This is the first release candidate for `v0.5.0`. We hope to release `v0.5.0` very shortly. ### New Features @@ -141,14 +178,14 @@ done ``` A more throughout installation guide is available here: https://ignite.readthedocs.io/en/latest/installation.html - - ---- - -## v0.5.0-alpha.1 - -**Released:** 06/08/2019 - + + +--- + +## v0.5.0-alpha.1 + +**Released:** 06/08/2019 + This is the first prerelease in the `v0.5.x` series. Please try it out, and also note we now have arm64 builds! ### New Features @@ -220,14 +257,14 @@ done ``` A more throughout installation guide is available here: https://ignite.readthedocs.io/en/latest/installation.html - - ---- - -## v0.4.2 - -**Released:** 16/07/2019 - + + +--- + +## v0.4.2 + +**Released:** 16/07/2019 + The second patch release for the `v0.4.x` release stream. If you want to have a look, here are changes for versions [v0.4.0](https://github.com/weaveworks/ignite/blob/master/CHANGELOG.md#v040) and [v0.4.1](https://github.com/weaveworks/ignite/blob/master/CHANGELOG.md#v041). @@ -271,14 +308,14 @@ chmod +x ignite sudo mv ignite /usr/local/bin ``` -A more throughout installation guide is available here: https://github.com/weaveworks/ignite/blob/master/docs/installation.md - ---- - -## v0.4.1 - -**Released:** 12/07/2019 - +A more throughout installation guide is available here: https://github.com/weaveworks/ignite/blob/master/docs/installation.md + +--- + +## v0.4.1 + +**Released:** 12/07/2019 + The first patch release for the `v0.4.x` release stream. If you want to go and look at the new and changed stuff in v0.4.0, see [here](https://github.com/weaveworks/ignite/blob/master/CHANGELOG.md#v040). @@ -323,14 +360,14 @@ sudo mv ignite /usr/local/bin ``` A more throughout installation guide is available here: https://github.com/weaveworks/ignite/blob/master/docs/installation.md - - ---- - -## v0.4.0 - -**Released:** 10/07/2019 - + + +--- + +## v0.4.0 + +**Released:** 10/07/2019 + ## v0.4.0 Ignite's biggest release yet! @@ -412,14 +449,14 @@ sudo mv ignite /usr/local/bin ``` A longer installation guide is available here: https://github.com/weaveworks/ignite/blob/master/docs/installation.md - - ---- - -## v0.4.0-rc.1 - -**Released:** 09/07/2019 - + + +--- + +## v0.4.0-rc.1 + +**Released:** 09/07/2019 + ## v0.4.0-rc.1 The first release candidate for Ignite's biggest release yet! @@ -459,14 +496,14 @@ There are many significant changes compared to before: - Factor out `ignite-spawn` into its own binary running in the container https://github.com/weaveworks/ignite/commit/0a1965e7203877c591dc79504ce257a57fd00480 - Upgraded the Firecracker version to v0.17.0 https://github.com/weaveworks/ignite/commit/41e3595b9e8d35c24e8cd97037cc1c7045779ee9 - Set Go version to 1.12.6 https://github.com/weaveworks/ignite/commit/d00cce7d2b09e97f8d515c4a6161b11fc6c61a2c - - ---- - -## v0.3.0 - -**Released:** 18/06/2019 - + + +--- + +## v0.3.0 + +**Released:** 18/06/2019 + ## Major release with significant UX and internal improvements: - There is no longer a difference between an Ignite image and an OCI image, this is now the same thing. @@ -481,14 +518,14 @@ There are many significant changes compared to before: - Ignite now requires the user to be `root`. This will be revisited later, when the architecture has changed. - The command outputs and structure is now more user-friendly. - Fixed several bugs both under the hood, and user-affecting ones - - ---- - -## v0.2.0 - -**Released:** 06/06/2019 - + + +--- + +## v0.2.0 + +**Released:** 06/06/2019 + ## Major release with significant improvements - Ignite is now using `devicemapper` under the hood, for overlay snapshots for filesystem writes, allowing for image reuse, efficient use of space and way faster builds! @@ -526,13 +563,13 @@ $ ignite rmi ubuntu-image $ ignite rmk ubuntu-kernel ``` -Also make note of the [known limitations](https://github.com/weaveworks/ignite#known-limitations) - ---- - -## v0.1.0 - -**Released:** 31/05/2019 - +Also make note of the [known limitations](https://github.com/weaveworks/ignite#known-limitations) + +--- + +## v0.1.0 + +**Released:** 31/05/2019 + This is the first, proof-of-concept version of Ignite. It has all the essential features, and a pretty complete implementation of the docker UX. diff --git a/docs/releases/v0.5.1.md b/docs/releases/v0.5.1.md new file mode 100644 index 000000000..1016e8df0 --- /dev/null +++ b/docs/releases/v0.5.1.md @@ -0,0 +1,17 @@ +## v0.5.1 + +**Released:** 16/08/2019 + +The first patch release in the `v0.5.X` series. Contains some much needed UX improvements, go ahead and try it out! + +### Enhancements + +- Make `ignite daemon` handle file moves without re-creating and support multiple active moves at once ([#341](https://github.com/weaveworks/ignite/pull/341), [@twelho](https://github.com/twelho)) +- Fix `GOHOSTARCH` propagation in the Makefile, tag development image for the host architecture only ([#340](https://github.com/weaveworks/ignite/pull/340), [@twelho](https://github.com/twelho)) +- Fix `ignite-spawn`'s VM metadata formatting when performing a cleanup ([#336](https://github.com/weaveworks/ignite/pull/336), [@twelho](https://github.com/twelho)) +- Automatically optimize the size of imported images, support importing large images ([#335](https://github.com/weaveworks/ignite/pull/335), [@twelho](https://github.com/twelho)) + +### Documentation + +- Change Read the Docs links to point to the stable branch in main README ([#338](https://github.com/weaveworks/ignite/pull/338), [@twelho](https://github.com/twelho)) +