Skip to content

Commit 6fd1545

Browse files
Alexandra Iordachedianpopa
authored andcommitted
Release v0.21.0
Signed-off-by: Alexandra Iordache <[email protected]>
1 parent ec6c906 commit 6fd1545

File tree

7 files changed

+52
-35
lines changed

7 files changed

+52
-35
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ Julian Stecklina <[email protected]> <[email protected]>
1010
Tamio-Vesa Nakajima <[email protected]> <[email protected]>
1111
Iulian Barbu <[email protected]>
1212
13+
karthik nedunchezhiyan <[email protected]> <[email protected]>

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

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

55
### Added
66

@@ -14,7 +14,12 @@
1414
- The jailer allows changing the default api socket path by using the extra
1515
arguments passed to firecracker.
1616
- Fixed #1456 - Occasional KVM_EXIT_SHUTDOWN and bad syscall (14) during
17-
VM shutdown
17+
VM shutdown.
18+
- Updated the production host setup guide with steps for addressing
19+
CVE-2019-18960.
20+
- The HTTP header parsing is now case insensitive.
21+
- The `put_api_requests` and `patch_api_requests` metrics for net devices were
22+
un-swapped.
1823

1924
### Changed
2025

CREDITS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ written in Rust with a focus on safety and security. Thanks go to:
1919
Contributors to the Firecracker repository:
2020

2121
* Aaron Hill <[email protected]>
22+
* Abhijeet Kasurde <[email protected]>
2223
* Adrian Catangiu <[email protected]>
2324
* Alakesh <[email protected]>
2425
* Aleksa Sarai <[email protected]>
@@ -31,10 +32,13 @@ Contributors to the Firecracker repository:
3132
* Andrei Casu-Pop <[email protected]>
3233
* Andrei Cipu <[email protected]>
3334
* Andrei Sandu <[email protected]>
35+
* Andrii Radyk <[email protected]>
36+
* Angus McInnes <[email protected]>
3437
* Arun Gupta <[email protected]>
3538
* Atsushi Ishibashi <[email protected]>
3639
* Aussie Schnore <[email protected]>
3740
* Babis Chalios <[email protected]>
41+
* Bob Potter <[email protected]>
3842
* Bogdan Ionita <[email protected]>
3943
* chaos matrix <[email protected]>
4044
* Chinmay Kousik <[email protected]>
@@ -50,6 +54,7 @@ Contributors to the Firecracker repository:
5054
* Dmitrii <[email protected]>
5155
* Filippo Sironi <[email protected]>
5256
* Gabe Jackson <[email protected]>
57+
* Gabriel Ionescu <[email protected]>
5358
* Garrett Squire <[email protected]>
5459
* George Pisaltu <[email protected]>
5560
* german gomez <[email protected]>
@@ -60,14 +65,17 @@ Contributors to the Firecracker repository:
6065
* Henri Yandell <[email protected]>
6166
6267
* Iggy Jackson <[email protected]>
68+
* Ioana Chirca <[email protected]>
6369
* Ishwor Gurung <[email protected]>
6470
* Iulian Barbu <[email protected]>
6571
* James Turnbull <[email protected]>
6672
* Javier Romero <[email protected]>
6773
* Josh Abraham <[email protected]>
6874
* Julian Stecklina <[email protected]>
75+
* karthik nedunchezhiyan <[email protected]>
6976
* KarthikVelayutham <[email protected]>
7077
* Kazuyoshi Kato <[email protected]>
78+
* keyangxie <[email protected]>
7179
* Laura Loghin <[email protected]>
7280
* lifupan <[email protected]>
7381
* Liu Jiang <[email protected]>
@@ -81,6 +89,7 @@ Contributors to the Firecracker repository:
8189
* Massimiliano Torromeo <[email protected]>
8290
* Matt Wilson <[email protected]>
8391
* Mehrdad Arshad Rad <[email protected]>
92+
* Nathan Hoang <[email protected]>
8493
* Nathan Sizemore <[email protected]>
8594
* Nicolas Mesa <[email protected]>
8695
* Noah Meyerhans <[email protected]>
@@ -102,8 +111,10 @@ Contributors to the Firecracker repository:
102111
* Serban Iorga <[email protected]>
103112
* shakram02 <[email protected]>
104113
* Shen Jiale <[email protected]>
114+
105115
* Sripracha <[email protected]>
106116
* Tamio-Vesa Nakajima <[email protected]>
117+
107118
* Tim Bannister <[email protected]>
108119
* Tim Deegan <[email protected]>
109120
* Tyler Anton <[email protected]>

Cargo.lock

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

src/api_server/swagger/firecracker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ info:
55
The API is accessible through HTTP calls on specific URLs
66
carrying JSON modeled data.
77
The transport medium is a Unix Domain Socket.
8-
version: 0.20.0
8+
version: 0.21.0
99
termsOfService: ""
1010
contact:
1111

src/firecracker/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.20.0"
3+
version = "0.21.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]

src/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.20.0"
3+
version = "0.21.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55

66
[dependencies]

0 commit comments

Comments
 (0)