Skip to content

Commit 4741d5c

Browse files
authored
Merge branch 'main' into ab-do-not-crash-during-printing
2 parents 96ade74 + 1d5ee0e commit 4741d5c

File tree

10 files changed

+83
-52
lines changed

10 files changed

+83
-52
lines changed

CHANGELOG.md

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@ and this project adheres to
1313
- [#5139](https://github.com/firecracker-microvm/firecracker/pull/5139): Added
1414
support for [PVTime](https://docs.kernel.org/virt/kvm/arm/pvtime.html). This
1515
is used to support steal time on ARM machines.
16+
- [#5175](https://github.com/firecracker-microvm/firecracker/pull/5175): Allow
17+
including a custom cpu template directly in the json configuration file passed
18+
to `--config-file` under the `cpu_config` key.
19+
20+
### Changed
21+
22+
- [#5165](https://github.com/firecracker-microvm/firecracker/pull/5165): Changed
23+
Firecracker snapshot feature from developer preview to generally available.
24+
Incremental snapshots remain in developer preview.
25+
26+
### Deprecated
27+
28+
### Removed
29+
30+
### Fixed
31+
32+
## [1.12.0]
33+
34+
### Added
35+
1636
- [#5048](https://github.com/firecracker-microvm/firecracker/pull/5048): Added
1737
support for [PVH boot mode](docs/pvh.md). This is used when an x86 kernel
1838
provides the appropriate ELF Note to indicate that PVH boot mode is supported.
@@ -24,9 +44,10 @@ and this project adheres to
2444
so users need to regenerate snapshots.
2545
- [#4731](https://github.com/firecracker-microvm/firecracker/pull/4731): Added
2646
support for modifying the host TAP device name during snapshot restore.
27-
- [#5175](https://github.com/firecracker-microvm/firecracker/pull/5175): Allow
28-
including a custom cpu template directly in the json configuration file passed
29-
to `--config-file` under the `cpu_config` key.
47+
- [#5146](https://github.com/firecracker-microvm/firecracker/pull/5146): Added
48+
Intel Sapphire Rapids as a supported and tested platform for Firecracker.
49+
- [#5148](https://github.com/firecracker-microvm/firecracker/pull/5148): Added
50+
ARM Graviton4 as a supported and tested platform for Firecracker.
3051

3152
### Changed
3253

@@ -38,9 +59,6 @@ and this project adheres to
3859
Clarified what CPU models are supported by each existing CPU template.
3960
Firecracker exits with an error if a CPU template is used on an unsupported
4061
CPU model.
41-
- [#5165](https://github.com/firecracker-microvm/firecracker/pull/5165): Changed
42-
Firecracker snapshot feature from developer preview to generally available.
43-
Incremental snapshots remain in developer preview.
4462

4563
### Deprecated
4664

@@ -51,12 +69,10 @@ and this project adheres to
5169
misnamed, as the value Firecracker sets it to is actually the page size in
5270
_bytes_, not KiB. It will be removed in Firecracker 2.0.
5371

54-
### Removed
55-
5672
### Fixed
5773

58-
- #\[[5074](https://github.com/firecracker-microvm/firecracker/pull/5074)\] Fix
59-
the `SendCtrlAltDel` command not working for ACPI-enabled guest kernels, by
74+
- [#5074](https://github.com/firecracker-microvm/firecracker/pull/5074) Fix the
75+
`SendCtrlAltDel` command not working for ACPI-enabled guest kernels, by
6076
dropping the i8042.nopnp argument from the default kernel command line
6177
Firecracker constructs.
6278
- [#5122](https://github.com/firecracker-microvm/firecracker/pull/5122): Keep

Cargo.lock

Lines changed: 48 additions & 34 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@ v3.1 will be patched since were the last two Firecracker releases and less than
9090

9191
| Release | Release Date | Latest Patch | Min. end of support | Official end of Support |
9292
| ------: | -----------: | -----------: | ------------------: | :------------------------------ |
93+
| v1.12 | 2025-05-07 | v1.12.0 | 2025-11-07 | Supported |
9394
| v1.11 | 2025-03-18 | v1.11.0 | 2025-09-18 | Supported |
94-
| v1.10 | 2024-11-07 | v1.10.1 | 2025-05-07 | Supported |
95+
| v1.10 | 2024-11-07 | v1.10.1 | 2025-05-07 | 2025-05-07 (v1.12 released) |
9596
| v1.9 | 2024-09-02 | v1.9.1 | 2025-03-02 | 2025-03-18 (v1.11 released) |
9697
| v1.8 | 2024-07-10 | v1.8.0 | 2025-01-10 | 2025-01-10 (end of 6mo support) |
9798
| v1.7 | 2024-03-18 | v1.7.0 | 2024-09-18 | 2024-09-18 (end of 6mo support) |

src/cpu-template-helper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpu-template-helper"
3-
version = "1.12.0-dev"
3+
version = "1.13.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2024"
66
license = "Apache-2.0"

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 = "1.12.0-dev"
3+
version = "1.13.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2024"
66
build = "build.rs"

src/firecracker/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: 1.12.0-dev
8+
version: 1.13.0-dev
99
termsOfService: ""
1010
contact:
1111

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 = "1.12.0-dev"
3+
version = "1.13.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2024"
66
description = "Process for starting Firecracker in production scenarios; applies a cgroup/namespace isolation barrier and then drops privileges."

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rebase-snap"
3-
version = "1.12.0-dev"
3+
version = "1.13.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2024"
66
license = "Apache-2.0"

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "seccompiler"
3-
version = "1.12.0-dev"
3+
version = "1.13.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2024"
66
description = "Program that compiles multi-threaded seccomp-bpf filters expressed as JSON into raw BPF programs, serializing them and outputting them to a file."

src/snapshot-editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snapshot-editor"
3-
version = "1.12.0-dev"
3+
version = "1.13.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2024"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)