Skip to content
Merged
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
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).


## [Prerelease] - Unreleased

The Initial hyperlight-wasm Release 🎉

## [v0.8.0] - 2025-08-13

### Added
- Added support for taking snapshots of memory using `LoadedWasmSandbox::snapshot`. A snapshot can be used to restore the memory state of the LoadedWasmSandbox to a specific point in time, using `LoadedWasmSandbox::restore`.

### Changed
- **BREAKING CHANGE:** `LoadedWasmSandbox::call_guest_function` no longer resets sandbox memory after the guest function call. If this old behavior is desired, manually call `LoadedWasmSandbox::snapshot` to take a snapshot of memory before calling guest function, and use `LoadedWasmSandbox::restore` after invoking the function.
- Updated to wasmtime v35.0.0

## [v0.7.0] - 2054-07-03

The Initial Hyperlight-wasm Release 🎉


[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.4.0..HEAD>
[v0.8.0]: <https://github.com/hyperlight-dev/hyperlight-wasm/compare/v0.7.0...v0.8.0>
[v0.7.0]: <https://github.com/hyperlight-dev/hyperlight-wasm/releases/tag/v0.7.0>
Loading