Skip to content

Commit d272bae

Browse files
authored
Merge branch 'main' into create-al2023-rootfs
2 parents 3290135 + 80ab750 commit d272bae

File tree

15 files changed

+496
-185
lines changed

15 files changed

+496
-185
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ and this project adheres to
2323

2424
### Fixed
2525

26+
- [#5762](https://github.com/firecracker-microvm/firecracker/pull/5762): Cap
27+
virtio-rng per-request entropy to 64 KiB. Previously, a guest could construct
28+
a descriptor chain that caused Firecracker to allocate more host memory than
29+
the guest actually provided, potentially leading to excessive host memory
30+
consumption.
31+
- [#5760](https://github.com/firecracker-microvm/firecracker/pull/5760): Fixed
32+
HID (Hardware ID) of VMGenID device so that it aligns with the upstream Linux
33+
kernel. This caused the driver not to be bound correctly to the device prior
34+
to Linux kernel 6.10.
35+
2636
## [1.15.0]
2737

2838
### Added

Cargo.lock

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

docs/RELEASE_POLICY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ v3.1 will be patched since were the last two Firecracker releases and less than
9191
| Release | Release Date | Latest Patch | Min. end of support | Official end of Support |
9292
| ------: | -----------: | -----------: | ------------------: | :------------------------------ |
9393
| v1.15 | 2026-03-09 | v1.15.0 | 2026-09-09 | Supported |
94-
| v1.14 | 2025-12-17 | v1.14.2 | 2026-06-17 | Supported |
94+
| v1.14 | 2025-12-17 | v1.14.3 | 2026-06-17 | Supported |
9595
| v1.13 | 2025-08-28 | v1.13.2 | 2026-02-28 | 2026-03-09 (v1.15 released) |
9696
| v1.12 | 2025-05-07 | v1.12.1 | 2025-11-07 | 2025-12-17 (v1.14 released) |
9797
| v1.11 | 2025-03-18 | v1.11.0 | 2025-09-18 | 2025-09-18 (end of 6mo support) |

src/clippy-tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "clippy-tracing"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.60", features = ["derive"] }
13+
clap = { version = "4.6.0", features = ["derive"] }
1414
itertools = "0.14.0"
1515
proc-macro2 = { version = "1.0.106", features = ["span-locations"] }
1616
quote = "1.0.45"

src/cpu-template-helper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bench = false
1313
tracing = ["log-instrument", "vmm/tracing"]
1414

1515
[dependencies]
16-
clap = { version = "4.5.60", features = ["derive", "string"] }
16+
clap = { version = "4.6.0", features = ["derive", "string"] }
1717
displaydoc = "0.2.5"
1818
libc = "0.2.183"
1919
log-instrument = { path = "../log-instrument", optional = true }

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bench = false
1717

1818
[dependencies]
1919
bitcode = { version = "0.6.9", features = ["serde"] }
20-
clap = { version = "4.5.60", features = ["derive", "string"] }
20+
clap = { version = "4.6.0", features = ["derive", "string"] }
2121
displaydoc = "0.2.5"
2222
libc = "0.2.183"
2323
serde = { version = "1.0.228", features = ["derive"] }

src/snapshot-editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bench = false
1313
tracing = ["log-instrument", "fc_utils/tracing", "vmm/tracing"]
1414

1515
[dependencies]
16-
clap = { version = "4.5.60", features = ["derive", "string"] }
16+
clap = { version = "4.6.0", features = ["derive", "string"] }
1717
displaydoc = "0.2.5"
1818

1919
fc_utils = { package = "utils", path = "../utils" }

src/vmm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ derive_more = { version = "2.1.1", default-features = false, features = [
3030
] }
3131
displaydoc = "0.2.5"
3232
event-manager = "0.4.2"
33-
gdbstub = { version = "0.7.9", optional = true }
34-
gdbstub_arch = { version = "0.3.2", optional = true }
33+
gdbstub = { version = "0.7.10", optional = true }
34+
gdbstub_arch = { version = "0.3.3", optional = true }
3535
kvm-bindings = { version = "0.14.0", features = ["fam-wrappers", "serde"] }
3636
kvm-ioctls = "0.24.0"
3737
libc = "0.2.183"

0 commit comments

Comments
 (0)