This release doesn't introduce any substantial breaking changes and focuses primarily on incremental improvements, testing and bug fixes. A few of the highlights include:
#1785: Support decoding V5 extrinsics in blocks (currently Subxt will still submit V4 extrinsics). This also unifies our extrinsic decoding logic into one place.
#1802: Stabilizing the subxt::backend::unstable::UnstableBackend (it's now called subxt::backend::chain_head::ChainHeadBackend). This backend can be used to interact with the modern chainHead RPC methods exposed by Smoldot and compliant RPC nodes. See this example.
#1720: A nice little QoL improvement if you have the raw runtime WASM and would like to generate an interface directly from that (ie with #[subx(runtime_path = "path/to/runtime.wasm")]).
#1661: Support loading keys directly from the PolkadotJS JSON to be used in Subxt.
#1638: Improve support for Eth style chains by defining a 20-byte account ID type directly in subxt-core. See this example.
The notable changes in this release are as follows:
Added
add reconnecting tests for unstable_backend (#1765)
add support for generating metadata from runtime wasm files (#1720)
support loading keys from Polkadot-JS accounts (#1661)
[0.38.0] - 2024-10-24
This release doesn't introduce any substantial breaking changes and focuses primarily on incremental improvements, testing and bug fixes. A few of the highlights include:
subxt::backend::unstable::UnstableBackend
(it's now calledsubxt::backend::chain_head::ChainHeadBackend
). This backend can be used to interact with the modernchainHead
RPC methods exposed by Smoldot and compliant RPC nodes. See this example.reconnecting-rpc-client
. See this example.#[subx(runtime_path = "path/to/runtime.wasm")]
).subxt-core
. See this example.The notable changes in this release are as follows:
Added
secret_key
method forecdsa::Keypair
andeth::Keypair
(#1628)Changed
scale family crates
,primitive-types
andimpl-serde
(#1832)instant
withweb-time
(#1830)?Sized
bound and replace never type with()
(#1758)Backend
impl (#1751)unstable-reconnecting-rpc-client
(#1711)reconnecting-jsonrpsee-ws-client
withsubxt-reconnecting-rpc-client
(#1705)Fixed
defalt-feature
->default-features
Cargo.toml (#1828)#[codec(dumb_trait_bound)]
(#1630)