-
Notifications
You must be signed in to change notification settings - Fork 281
Prep for 0.24 release #663
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
Conversation
| ## [0.24.0] - 2022-09-22 | ||
|
|
||
| This release has a bunch of smaller changes and fixes. The breaking changes are fairly minor and should be easy to address if encountered. Notable additions are: | ||
| - Allowing the underlying RPC implementation to be swapped out ([#634](https://github.com/paritytech/subxt/pull/634)). This makes `jsonrpsee` an optional dependency, and opens the door for Subxt to be integrated into things like light clients, since we can decide how to handle RPC calls. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a downside of this is that it's not possible parse it back to a jsonrpsee error once it's a String but nothing to do about that now.
Me and other users has to compare Strings :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that isn't the best is it! Without making the error type generic again (which sucked) I don't think there's much of a way around it though (I mean we could serialize the error perhaps, but hrm)
CHANGELOG.md
Outdated
|
|
||
| - feat: add low-level `runtime upgrade API` ([#657](https://github.com/paritytech/subxt/pull/657)) | ||
| - Add accessor for `StaticTxPayload::call_data` ([#660](https://github.com/paritytech/subxt/pull/660)) | ||
| - Export EventFieldMetadata ([#656](https://github.com/paritytech/subxt/pull/656)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be put together with #654
No description provided.