27.0.0-beta.1 (2024-11-28)
Bug Fixes
- ๐ Correctly handle currency as ticker when configuring DD (2dc9486)
- ๐ Correctly return status for failed instructions (bcf40c8)
- ๐ Fetch details from chain on instruction execution/affirm (c40df72)
- ๐ Fetch legs from chain while instruction affirm/execution (cf366d3)
- ๐ Fix logic to check if instruction exists (79da01e)
- ๐ getHistoricalAuthorization for v7 joinIdentity auth (77f172b)
- ๐ Use unique portfolios while creating BtreeSet (cd4fc68)
Features
- ๐ธ allow modification of assetType (309a929)
- ๐ธ Retrieve instruction info from middleware(if available) (7a13bab)
- ๐ธ skip RPC version check (6acdfed)
BREAKING CHANGES
- ๐งจ Methods in the
Instruction
entity that retrieve information from the
chain were updated to use middleware for fetching data, when available. If middleware is
unavailable, the methods will continue to fetch data directly from the chain.
The following methods were modified with this logic:details
,getAffirmations
,getLegs
,
getMediators
,getOffChainAffirmations
,getOffChainAffirmationForLeg
.
When querying via middleware, these methods will now throw an error in the following cases:
a. If the instruction does not exist.
b.If the instruction data has not yet been processed by the middleware.
Also, the pagination options forgetAffirmations
andgetLegs
now supports
MiddlewarePaginationOptions
as well (when querying via middleware)