File tree Expand file tree Collapse file tree 3 files changed +35
-5
lines changed Expand file tree Collapse file tree 3 files changed +35
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.3.0]
4+
5+ ### Added
6+
7+ * Users can interrogate the Machine Configuration (i.e. vcpu count and memory size) using a GET request on /machine-config.
8+ * The logging system can be configured through the API using a PUT on /logger.
9+ * Block devices support live resize by calling PUT with the same parameters as when the block was created.
10+ * Release builds have Link Time Optimization (LTO) enabled.
11+ * Firecracker is built with musl, resulting in a statically linked binary.
12+ * More in-tree integration tests were added as part of the continuous integration system.
13+
14+ ### Changed
15+
16+ * The vcpu count is enforced to 1 or an even number.
17+ * The Swagger definition of rate limiters was updated.
18+ * Syslog-enabled logs were replaced with a hostfile backed mechanism.
19+
20+ ### Fixed
21+
22+ * The host topology of the CPU and the caches is not leaked into the microvm anymore.
23+ * Boot time was improved by advertising the availability of the TSC deadline timer.
24+ * Fixed an issue which prevented Firecracker from working on 4.14 (or newer) host kernels.
25+ * Specifying the MAC address for an interface through the API is optional.
26+
27+ ### Removed
28+
29+ * Removed support for attaching vsock devices.
30+ * Removed support for building Firecracker with glibc.
31+
32+
333## [ 0.2.0]
434
535### Added
Original file line number Diff line number Diff line change 11[package ]
22name = " firecracker"
3- version = " 0.2 .0"
3+ version = " 0.3 .0"
44authors = [
" Amazon firecracker team <[email protected] >" ]
55
66[dependencies ]
Original file line number Diff line number Diff line change 11swagger : " 2.0"
22info :
3- title : Firecracker v0.2 API
4- description : Firecraker v0.2 - RESTful public-facing API.
3+ title : Firecracker v0.3 API
4+ description : Firecraker v0.3 - 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.2 .0
7+ version : 0.3 .0
88 termsOfService : " "
99 contact :
1010@@ -170,7 +170,7 @@ paths:
170170 get :
171171 summary : Get the machine configuration of the VM.
172172 description : Get the machine configuration of the VM. When called before the PUT operation, it will return
173- the default values for the vCPU count (=1) and the memory size (=256 MiB).
173+ the default values for the vCPU count (=1) and the memory size (=128 MiB).
174174 responses :
175175 200 :
176176 description : OK
You can’t perform that action at this time.
0 commit comments