Skip to content
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

📦 Prepare 0.10.2 release #409

Merged
merged 3 commits into from
Jul 23, 2024
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
## Unreleased

## 0.10.2 (2024-07-22)

- Add support for supplying client certificates in fastly.toml, through the use of the
`client_cert_info` table, which must have one of a "certificate" or "certificate_file"
key, as well as one of a "key" and "key_file" key. The "_file" variants can be used to
point to certificate/key files on disk, whereas the non-"_file" variants should be
multi-line string constants in the toml. In all cases, they should be in PEM format.
- Restore compatibility with older glibc versions in release artifacts

## 0.10.1 (2024-07-11)

Expand Down
75 changes: 37 additions & 38 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "viceroy"
description = "Viceroy is a local testing daemon for Fastly Compute."
version = "0.10.2"
version = "0.10.3"
authors = ["Fastly"]
readme = "../README.md"
edition = "2021"
Expand Down Expand Up @@ -45,7 +45,7 @@ tokio-rustls = { workspace = true }
tracing = { workspace = true }
tracing-futures = { workspace = true }
tracing-subscriber = { version = "^0.3.16", features = ["env-filter", "fmt"] }
viceroy-lib = { path = "../lib", version = "^0.10.2" }
viceroy-lib = { path = "../lib", version = "=0.10.3" }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note the change from ^ to = here. With an intra-repo dependency like this we want to use only this exact version of the other crate.

wat = "^1.0.38"
wasmtime = { workspace = true }
wasmtime-wasi = { workspace = true }
Expand Down
Loading
Loading