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 1
1
# Changelog
2
2
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
+
3
33
## [ 0.2.0]
4
34
5
35
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " firecracker"
3
- version = " 0.2 .0"
3
+ version = " 0.3 .0"
4
4
authors = [
" Amazon firecracker team <[email protected] >" ]
5
5
6
6
[dependencies ]
Original file line number Diff line number Diff line change 1
1
swagger : " 2.0"
2
2
info :
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.
5
5
The API is accessible through HTTP calls on specific URLs carrying JSON modeled data.
6
6
The transport medium is a Unix Domain Socket.
7
- version : 0.2 .0
7
+ version : 0.3 .0
8
8
termsOfService : " "
9
9
contact :
10
10
@@ -170,7 +170,7 @@ paths:
170
170
get :
171
171
summary : Get the machine configuration of the VM.
172
172
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).
174
174
responses :
175
175
200 :
176
176
description : OK
You can’t perform that action at this time.
0 commit comments