Skip to content

Commit 6ab6b2c

Browse files
authored
Prep for v0.7.0 (#668)
Signed-off-by: James Sturtevant <[email protected]>
1 parent 78718c4 commit 6ab6b2c

File tree

5 files changed

+43
-20
lines changed

5 files changed

+43
-20
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
44

55
## [Prerelease] - Unreleased
66

7+
## [v0.7.0] - 2025-06-26
8+
9+
### Fixed
10+
- gdb: fix sandbox function cancellation when gdb enabled by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/621
11+
- Let windows decide at which address to map shared memory in surrogate process by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/637
12+
- Don't log expected error on each guest function call by @ludfjig in https://github.com/hyperlight-dev/hyperlight/pull/662
13+
- Adds a missing clippy allow by @jsturtevant in https://github.com/hyperlight-dev/hyperlight/pull/663
14+
15+
### Changed
16+
- improve the performance of building page tables by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/635
17+
- Make interrupt retry delay methods Linux-only by @copilot-swe-agent in https://github.com/hyperlight-dev/hyperlight/pull/647
18+
19+
### Added
20+
- Support ELF core dump creation on guest crash by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/417
21+
- Added capability to load extra blob data in sandbox by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/605
22+
- Add license scan report and status by @fossabot in https://github.com/hyperlight-dev/hyperlight/pull/598
23+
- Create GOVERNANCE.md by @benazirk in https://github.com/hyperlight-dev/hyperlight/pull/556
24+
- [host] adds init-paging feature by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/639
25+
- Enable guest debugging for HyperV on windows by @dblnz in https://github.com/hyperlight-dev/hyperlight/pull/478
26+
27+
### Removed
28+
- Remove support for building PE files from hyperlight-guest-bin build.rs by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/572
29+
730
## [v0.6.1] - 2025-06-12
831

932
### Fixed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ exclude = [
2525
]
2626

2727
[workspace.package]
28-
version = "0.6.1"
28+
version = "0.7.0"
2929
edition = "2024"
3030
rust-version = "1.85"
3131
license = "Apache-2.0"
@@ -34,13 +34,13 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
3434
readme = "README.md"
3535

3636
[workspace.dependencies]
37-
hyperlight-common = { path = "src/hyperlight_common", version = "0.6.1", default-features = false }
38-
hyperlight-host = { path = "src/hyperlight_host", version = "0.6.1", default-features = false }
39-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.6.1", default-features = false }
40-
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.6.1", default-features = false }
37+
hyperlight-common = { path = "src/hyperlight_common", version = "0.7.0", default-features = false }
38+
hyperlight-host = { path = "src/hyperlight_host", version = "0.7.0", default-features = false }
39+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.7.0", default-features = false }
40+
hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.7.0", default-features = false }
4141
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
42-
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.6.1", default-features = false }
43-
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.6.1", default-features = false }
42+
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.7.0", default-features = false }
43+
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.7.0", default-features = false }
4444

4545
[workspace.lints.rust]
4646
unsafe_op_in_unsafe_fn = "deny"

src/tests/rust_guests/callbackguest/Cargo.lock

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

src/tests/rust_guests/simpleguest/Cargo.lock

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

0 commit comments

Comments
 (0)