Ryan Levick
Ryan Levick
Given the following manifest configuration: ``` files = [{ source = "static/foo.txt", destination = "bar.txt" }] ``` I would expect at least a warning as I believe destination must always...
We're usually directly forwarding errors that have been created by wit-bindgen from SDK APIs. This can lead to errors that are less than ideal and only offer the minimal amount...
Often times when debugging, I find myself looking at the pieces of a component that are related directly to the component model and wishing to skip over `core module`s. This...
Right now the validator uses `wasmparser::validator::ComponentState::validate_and_register_named_types` to ensure that a given extern only refers to named types, but it only returns a `bool` instead of a `Result`. This makes debugging...
I've received some feedback that the component docs are not discoverable enough. Perhaps we could do a concerted effort of going to other component related BA repos and making sure...
In https://github.com/bytecodealliance/wit-bindgen/pull/972 the default for whether bindings would be generated for foreign (i.e., not in the same package as the target world) types was flipped from being generated by default...
We've had two failed attempts at updating our dependency on Clap from version 3 to version 4: * https://github.com/fermyon/spin/pull/2851 * https://github.com/fermyon/spin/pull/1198 The issue is a breaking change from clap 3...
Below is a list of the breaking semantic changes to the Spin runtime that will be coming in Spin 3.0. Before we release, we should ensure that we are all...
We're currently relying on [a fork of async-tar](https://github.com/vdice/async-tar) - it seems because of previous Windows build failures. It would be best to replace this dependency with a more maintained version....
`spin_app::App.id` is used in the Spin codebase almost exclusively for logging. The only place where it somewhat matters what the `id` is is in the Redis trigger [where it used...