Skip to content

Releases: dao-xyz/borsh-ts

1.0.1

28 Jan 18:38
Compare
Choose a tag to compare
  • Update doc

1.0.0

28 Jan 10:33
Compare
Choose a tag to compare
  • 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

28 Jan 07:58
Compare
Choose a tag to compare
  • Update readme

0.0.23

28 Jan 07:50
Compare
Choose a tag to compare
  • Organisation rename, re-release

0.0.22

28 Jan 07:33
Compare
Choose a tag to compare
  • Update readme for organisation name change

0.0.20

29 Nov 19:02
Compare
Choose a tag to compare
  • Fix variant deserialisation when variant is top most representation in serialised data

0.0.19

29 Nov 11:26
Compare
Choose a tag to compare
0.0.19 Pre-release
Pre-release
  • Leaner build

0.0.18

29 Nov 11:23
Compare
Choose a tag to compare
  • Build target ES6

0.0.17

22 Nov 16:52
Compare
Choose a tag to compare
0.0.17 Pre-release
Pre-release
  • Reduce package size

0.0.16

22 Nov 16:35
Compare
Choose a tag to compare
0.0.16 Pre-release
Pre-release
  • Update typing