Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.13.1]

### Fixed

- [#5418](https://github.com/firecracker-microvm/firecracker/pull/5418): Fixed
typo in Swagger definition of `MmdsConfig`, where the property `imds_compat`
was spelled as `imds_comat`. This caused auto-generated client to create bad
requests.

## [1.13.0]

### Added
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/RELEASE_POLICY.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ v3.1 will be patched since were the last two Firecracker releases and less than

| Release | Release Date | Latest Patch | Min. end of support | Official end of Support |
| ------: | -----------: | -----------: | ------------------: | :------------------------------ |
| v1.13 | 2025-08-28 | v1.13.0 | 2026-02-28 | Supported |
| v1.13 | 2025-08-28 | v1.13.1 | 2026-02-28 | Supported |
| v1.12 | 2025-05-07 | v1.12.1 | 2025-11-07 | Supported |
| v1.11 | 2025-03-18 | v1.11.0 | 2025-09-18 | Supported |
| v1.10 | 2024-11-07 | v1.10.1 | 2025-05-07 | 2025-05-07 (v1.12 released) |
Expand Down
2 changes: 1 addition & 1 deletion src/cpu-template-helper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cpu-template-helper"
version = "1.13.0"
version = "1.13.1"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2024"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "firecracker"
version = "1.13.0"
version = "1.13.1"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2024"
build = "build.rs"
Expand Down
10 changes: 5 additions & 5 deletions src/firecracker/swagger/firecracker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ info:
The API is accessible through HTTP calls on specific URLs
carrying JSON modeled data.
The transport medium is a Unix Domain Socket.
version: 1.13.0
version: 1.13.1
termsOfService: ""
contact:
email: "[email protected]"
Expand Down Expand Up @@ -575,7 +575,7 @@ paths:
parameters:
- name: body
in: body
description: The configuration used for creating a snaphot.
description: The configuration used for creating a snapshot.
required: true
schema:
$ref: "#/definitions/SnapshotCreateParams"
Expand All @@ -602,7 +602,7 @@ paths:
parameters:
- name: body
in: body
description: The configuration used for loading a snaphot.
description: The configuration used for loading a snapshot.
required: true
schema:
$ref: "#/definitions/SnapshotLoadParams"
Expand Down Expand Up @@ -1125,10 +1125,10 @@ definitions:
format: "169.254.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])"
default: "169.254.169.254"
description: A valid IPv4 link-local address.
imds_comat:
imds_compat:
type: boolean
description:
MMDS operates compatibly with EC2 IMDS (i.e. reponds "text/plain"
MMDS operates compatibly with EC2 IMDS (i.e. responds "text/plain"
content regardless of Accept header in requests).
default: false

Expand Down
2 changes: 1 addition & 1 deletion src/jailer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jailer"
version = "1.13.0"
version = "1.13.1"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2024"
description = "Process for starting Firecracker in production scenarios; applies a cgroup/namespace isolation barrier and then drops privileges."
Expand Down
2 changes: 1 addition & 1 deletion src/rebase-snap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rebase-snap"
version = "1.13.0"
version = "1.13.1"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2024"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/seccompiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seccompiler"
version = "1.13.0"
version = "1.13.1"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2024"
description = "Program that compiles multi-threaded seccomp-bpf filters expressed as JSON into raw BPF programs, serializing them and outputting them to a file."
Expand Down
2 changes: 1 addition & 1 deletion src/snapshot-editor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snapshot-editor"
version = "1.13.0"
version = "1.13.1"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2024"
license = "Apache-2.0"
Expand Down
Loading