Releases: dao-xyz/borsh-ts
Releases · dao-xyz/borsh-ts
1.0.1
- Update doc
1.0.0
- Support for vec and fixed sized array
- Support of wrapped types, e.g. 'option(vec('u8'))'
Breaking changes
Option
'option' is now part of the type declaration.
Before
@field({type: 'u8', option: false})
Now
@field({type: option('u8')})
Dropped support for manual serialisation without decorators
i.e. you can no longer define serialization and deserialization schemas without using class and field decorators. This change was necessary to provide the support for wrapped types
0.0.24
- Update readme
0.0.23
- Organisation rename, re-release
0.0.22
- Update readme for organisation name change
0.0.20
- Fix variant deserialisation when variant is top most representation in serialised data
0.0.19
- Leaner build
0.0.18
- Build target ES6
0.0.17
- Reduce package size
0.0.16
- Update typing