Skip to content

Prep for v0.7.0 release #668

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

## [Prerelease] - Unreleased

## [v0.7.0] - 2025-06-26

### Fixed
- gdb: fix sandbox function cancellation when gdb enabled by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/621
- Let windows decide at which address to map shared memory in surrogate process by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/637
- Don't log expected error on each guest function call by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/662
- Adds a missing clippy allow by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/663

### Changed
- improve the performance of building page tables by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/635
- Make interrupt retry delay methods Linux-only by @copilot-swe-agent in https://github.com/hyperlight-dev/hyperlight/pull/647

### Added
- Support ELF core dump creation on guest crash by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/417
- Added capability to load extra blob data in sandbox by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/605
- Add license scan report and status by @fossabot in https://github.com/hyperlight-dev/hyperlight/pull/598
- Create GOVERNANCE.md by @benazirk in https://github.com/hyperlight-dev/hyperlight/pull/556
- [host] adds init-paging feature by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/639
- Enable guest debugging for HyperV on windows by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/478

### Removed
- Remove support for building PE files from hyperlight-guest-bin build.rs by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/572

## [v0.6.1] - 2025-06-12

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

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

[workspace.package]
version = "0.6.1"
version = "0.7.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
Expand All @@ -34,13 +34,13 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
readme = "README.md"

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

[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "deny"
Expand Down
6 changes: 3 additions & 3 deletions src/tests/rust_guests/callbackguest/Cargo.lock

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

6 changes: 3 additions & 3 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.

Loading