Skip to content

Commit 1e55d75

Browse files
Bumping version of wasi crate dependency (#3476)
## Motivation and Context The `0.12.0` version of `wasi` suffered from a bug the could impact users using lower versions of `wit-bindgen` dependencies. Mixed versions of `wit-bindgen` generated bindings in a single project would cause a symbol collision. This is fixed by newer versions of `wit-bindgen` and `wasi = 0.12.1` contains bindings generated by one of these newer versions. See this issue for details: bytecodealliance/wit-bindgen#849 and a longer discussion of the issue on Zulip [here](https://bytecodealliance.zulipchat.com/#narrow/stream/327223-wit-bindgen/topic/Component.20failing.20to.20compile.20with.20mixed.20wit-bindgen.20versions/near/422068264). ## Description <!--- Describe your changes in detail --> Bumped version of `wasi` dependency in `aws-amithy-wasm` from `0.12.0` -> `0.12.1` ## Testing <!--- Please describe in detail how you tested your changes --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [X] I have updated `CHANGELOG.next.toml` if I made changes to the smithy-rs codegen or runtime crates ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._ --------- Co-authored-by: John DiSanti <[email protected]>
1 parent 3180295 commit 1e55d75

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.next.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@
99
# message = "Fix typos in module documentation for generated crates"
1010
# references = ["smithy-rs#920"]
1111
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
12-
# author = "rcoh"
12+
# author = "rcoh"
13+
14+
[[smithy-rs]]
15+
message = "Increased minimum version of wasi crate dependency in aws-smithy-wasm to 0.12.1."
16+
references = ["smithy-rs#3476"]
17+
meta = { "breaking" = false, "tada" = false, "bug" = false }
18+
authors = ["landonxjames"]

rust-runtime/aws-smithy-wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-smithy-wasm"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"AWS Rust SDK Team <[email protected]>",
66
"Eduardo Rodrigues <[email protected]>",
@@ -19,7 +19,7 @@ http = "1.0.0"
1919
tracing = "0.1.40"
2020
# Note the wasi crate will only build for target wasm32-wasi, but having a target
2121
# statement here breaks some of the CI tests, so we leave it with the rest of the deps
22-
wasi = "0.12.0" # This is build on wasi-0.2.0
22+
wasi = "0.12.1" # This is build on wasi-0.2.0
2323

2424
[package.metadata.docs.rs]
2525
all-features = true

0 commit comments

Comments
 (0)