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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
strategy:
matrix:
rust-toolchain: ["1.86"]
rust-toolchain: ["1.87"]
os: [ubuntu-24.04, macos-14, windows-2022]
arch: [amd64, arm64]
exclude:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update --no-self-update 1.86 && rustup default 1.86
run: rustup update --no-self-update 1.87 && rustup default 1.87
shell: bash
- name: Add wasm32-wasip1 Rust target
run: rustup target add wasm32-wasip1
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update --no-self-update 1.86 && rustup default 1.86
run: rustup update --no-self-update 1.87 && rustup default 1.87
shell: bash
- name: Add wasm32-wasip1 Rust target
run: rustup target add wasm32-wasip1
Expand All @@ -88,7 +88,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update 1.86 && rustup default 1.86
run: rustup update 1.87 && rustup default 1.87
shell: bash
- name: Check crates can be published
run: cargo publish --dry-run --package=viceroy-lib
Expand Down
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
## Unreleased

## 0.16.3 (2026-01-20)

- Implement `fastly_compute_runtime::get_heap_mib` hostcall ([#572](https://github.com/fastly/Viceroy/pull/572))
- Update to latest `moka` release to fix use-after-free bug ([#569](https://github.com/fastly/Viceroy/pull/569))
- Fix manual framing headers logic to avoid falling back to automatic framing headers ([#571](https://github.com/fastly/Viceroy/pull/571))

## 0.16.2 (2025-12-10)

- Update to the latest WITs and adapter. ([#564](https://github.com/fastly/Viceroy/pull/564))
- Update to the latest WITs and adapter. ([#564](https://github.com/fastly/Viceroy/pull/564))

This applies version "0.0.0-prerelease.0" to wasm_abi/wit/deps/fastly/compute.wit.
As a prerelease, this version is not guaranteed to be supported long-term, however
from this point forward, changes will be described by version number bumps.
This applies version "0.0.0-prerelease.0" to wasm_abi/wit/deps/fastly/compute.wit.
As a prerelease, this version is not guaranteed to be supported long-term, however
from this point forward, changes will be described by version number bumps.

- fix: use original static backend host ([#549](https://github.com/fastly/Viceroy/pull/549))
- Return InvalidArgument for bad arguments to register_dynamic_backend ([#563](https://github.com/fastly/Viceroy/pull/563))
- fix: use original static backend host ([#549](https://github.com/fastly/Viceroy/pull/549))
- Return InvalidArgument for bad arguments to register_dynamic_backend ([#563](https://github.com/fastly/Viceroy/pull/563))

## 0.16.1 (2025-11-25)

Expand Down
Loading
Loading