Releases: paritytech/substrate-api-sidecar
Releases · paritytech/substrate-api-sidecar
v0.15.0
v0.14.0
v0.13.0
This release is approved for Polkadot version 22 (the version of the upcoming runtime upgrade).
Api noteworthy
- Enhanced transaction error messages. These are non-breaking changes as they only add fields to the response. (#202)
noMeta
query param fortx/artifacts
that allows the user to specify that they do not need the metadata. This is useful if endpoint response time is a concern and the user already has the metadata. With no query param input the endpoint signature remains unchanged. (#222)
Other
v0.12.0
- Breaking change to
/block
response by removingnewArgs
field and updating theargs
field in extrinsics (#186). We recommend phasing out the use ofnewArgs
and upgrading to this version as soon as possible in order to be ready for subsequent version bumps that may be mandatory. - Internal refactor of services and additional unit tests (#171, #181, #184)
v0.11.3
- API bump for Polkadot runtime 15
- More unit testing
v0.11.2
v0.11.1
- New 400 error to warn when a specified block number is too high (#131)
- Upgrade all dependencies (#90)
- Changes in
ApiHandler
andsanitizeNumbers
to compensate for @polkadot-js api updates (#90) - Refactor error handling by moving it all out to middleware (#143)
- Add configuration validation to warn when a env var is not valid (#149)
v0.11.0
- Improved configuration management using
confmgr
. ENV var specs are now inspecs.yml
and there is improved compatibility with.env
files. N.B. all configurable ENV var names have changed; they now include longer prefixes. You can find more details in the updated README.md - Validations for ensuring
address
URI params are in a substrate compatible SS58 format. Multiple new400
errors are added in the validation process including, but not limited to, 'Invalid decoded address length' and 'Invalid decoded address checksum'. - Bump @polkadot-js deps to v1.23.0-beta.2.
v0.10.0
- New
/staking-info
endpoint to get information on the progress of the staking system components. - Bump @polkadot-js deps.