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
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Prerelease] - Unreleased


## [v0.11.0] - 2025-11-04

### Fixed
* Fixes a race condition in killing Sandboxes by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/959

### Changed
* Unify register representation across hypervisors by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/907
* Guest tracing improvements to use `tracing` crate by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/844
* Serialize guest trace data using flatbuffers by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/999

### Added
* Add support for mmapped memory in crashdumps and guest debugging by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/943
* Add poison state to sandbox by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/931
* Crashdump on demand by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/972

### Removed
* Remove seccomp by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/971
* Remove mshv2 feature by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/973


## [v0.10.0] - 2025-10-02

### Fixed
Expand Down Expand Up @@ -201,7 +222,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
The Initial Hyperlight Release 🎉


[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0..HEAD>
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.11.0..HEAD>
[v0.11.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.10.0...v0.11.0>
[v0.10.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.9.0...v0.10.0>
[v0.9.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.8.0...v0.9.0>
[v0.8.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.7.0...v0.8.0>
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ exclude = [
]

[workspace.package]
version = "0.10.0"
version = "0.11.0"
edition = "2024"
rust-version = "1.88"
license = "Apache-2.0"
Expand All @@ -35,14 +35,14 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
readme = "README.md"

[workspace.dependencies]
hyperlight-common = { path = "src/hyperlight_common", version = "0.10.0", default-features = false }
hyperlight-host = { path = "src/hyperlight_host", version = "0.10.0", default-features = false }
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.10.0", default-features = false }
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.10.0", default-features = false }
hyperlight-common = { path = "src/hyperlight_common", version = "0.11.0", default-features = false }
hyperlight-host = { path = "src/hyperlight_host", version = "0.11.0", default-features = false }
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.11.0", default-features = false }
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.11.0", default-features = false }
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.10.0", default-features = false }
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.10.0", default-features = false }
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.10.0", default-features = false }
hyperlight-guest-tracing = { path = "src/hyperlight_guest_tracing", version = "0.11.0", default-features = false }
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.11.0", default-features = false }
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.11.0", default-features = false }

[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "deny"
Expand Down
8 changes: 4 additions & 4 deletions src/tests/rust_guests/dummyguest/Cargo.lock

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

8 changes: 4 additions & 4 deletions src/tests/rust_guests/simpleguest/Cargo.lock

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

12 changes: 6 additions & 6 deletions src/tests/rust_guests/witguest/Cargo.lock

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

Loading