Skip to content

Commit 08da623

Browse files
committed
release v0.17.0
Updated the CHANGELOG.md, version number and CREDITS.md. Signed-off-by: Diana Popa <[email protected]>
1 parent 85927d2 commit 08da623

File tree

7 files changed

+26
-12
lines changed

7 files changed

+26
-12
lines changed

CHANGELOG.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [0.17.0]
44

55
### Added
66

7+
- New API call: `PATCH /machine-config/`, used to update VM configuration,
8+
before the microVM boots.
79
- Added an experimental swagger definition that includes the specification for
810
the vsock API call.
911
- Added a signal handler for `SIGBUS` and `SIGSEGV` that immediately terminates
1012
the process upon intercepting the signal.
13+
- Added documentation for signal handling utilities.
14+
- Added [alpha] aarch64 support.
15+
- Added metrics for successful read and write operations of MMDS, Net and Block devices.
16+
17+
### Changed
18+
19+
- `vcpu_count`, `mem_size_mib` and `ht_enabled` have been changed to be mandatory
20+
for `PUT` requests on `/machine-config/`.
21+
- Disallow invalid seccomp levels by exiting with error.
22+
23+
### Fixed
24+
25+
- Incorrect handling of bind mounts within the jailed rootfs.
26+
- Corrected the guide for `Alpine` guest setup.
1127

1228
## [0.16.0]
1329

@@ -19,8 +35,6 @@
1935
- New `devtool` command: `tag`. This creates a new git tag for the specified
2036
release number, based on the changelog contents.
2137
- New doc section about building with glibc.
22-
- New API call: `PATCH /machine-config/`, used to update VM configuration,
23-
before the microVM boots.
2438

2539
### Changed
2640

@@ -32,8 +46,6 @@
3246
than `String`, `Array`, `Object` will return status code 400.
3347
- Improved multiple error messages.
3448
- Removed all kernel modules from the recommended kernel config.
35-
- `vcpu_count`, `mem_size_mib` and `ht_enabled` have been changed to be mandatory
36-
for `PUT` requests on `/machine-config/`.
3749

3850
### Fixed
3951

CREDITS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Contributors to the Firecracker repository:
4141
* Dan Lemmond <[email protected]>
4242
* Deepesh Pathak <[email protected]>
4343
* Diana Popa <[email protected]>
44+
* Dmitrii <[email protected]>
4445
* Filippo Sironi <[email protected]>
4546
* Gabe Jackson <[email protected]>
4647
* german gomez <[email protected]>
@@ -55,6 +56,7 @@ Contributors to the Firecracker repository:
5556
5657
* lloydmeta <[email protected]>
5758
* maciejhirsz <[email protected]>
59+
* Manohar Castelino <[email protected]>
5860
* Marc Brooker <[email protected]>
5961
* Masatoshi Higuchi <[email protected]>
6062
* Massimiliano Torromeo <[email protected]>

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firecracker"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]

api_server/swagger/firecracker-experimental.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ info:
66
carrying JSON modeled data.
77
The transport medium is a Unix Domain Socket.
88
This API has definitions for experimental features like vsock.
9-
version: 0.16.0
9+
version: 0.17.0
1010
termsOfService: ""
1111
contact:
1212

api_server/swagger/firecracker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
description: RESTful public-facing API.
55
The API is accessible through HTTP calls on specific URLs carrying JSON modeled data.
66
The transport medium is a Unix Domain Socket.
7-
version: 0.16.0
7+
version: 0.17.0
88
termsOfService: ""
99
contact:
1010

jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jailer"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]

0 commit comments

Comments
 (0)