Skip to content

Commit

Permalink
Add changelog and fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Fahad Zubair committed Sep 9, 2024
1 parent d51cc78 commit 050d9c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .changelog/2155171.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
applies_to: ["server","client"]
authors: ["drganjoo"]
references: []
breaking: false
new_feature: true
bug_fix: false
---
Support for [rpcv2Cbor](https://smithy.io/2.0/additional-specs/protocols/smithy-rpc-v2.html) has been added, allowing services to serialize RPC payloads as CBOR (Concise Binary Object Representation), improving performance and efficiency in data transmission.
2 changes: 1 addition & 1 deletion rust-runtime/inlineable/src/cbor_errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn parse_error_metadata(
// structures that might use different types for the message field.
match decoder.str() {
Ok(message) => builder.message(message),
Err(_) => builder
Err(_) => builder,
}
}
_ => {
Expand Down

0 comments on commit 050d9c5

Please sign in to comment.