Skip to content

Latest commit

 

History

History
102 lines (42 loc) · 2.78 KB

CHANGELOG.md

File metadata and controls

102 lines (42 loc) · 2.78 KB

2.0.2 (2020-03-28)

Bug Fixes

  • surrializable: support surrializable in array or objects (#10) (f1c9bda)

2.0.1 (2020-02-14)

2.0.0 (2020-02-14)

Features

  • template: add surrial tag for template literals (bf27e77)

  • feat(custom): allow custom serialization logic (#7) (bd78dc4), closes #7 #5

BREAKING CHANGES

  • If you have surrialize() methods on your objects (for some reason?) that function will now be used when serializing the object.

1.0.0 (2019-02-12)

0.2.0 (2019-01-23)

Bug Fixes

  • remove unused typescript options (f689593)

Features

  • Serialize: Only serialize known class instances (#3) (245008d)

BREAKING CHANGES

  • Serialize: Class instances will now only be serialized in its constructor form if it is a "knownClass".
serialize(new Foo('bar'));
// Should now be:
serialize(new Foo('bar'), [Foo]);

0.1.3 (2018-02-23)

Bug Fixes

  • arrays: add support for arrays inside objects. (5b5ca10)

0.1.2 (2018-02-19)

0.1.1 (2018-02-16)

Bug Fixes

  • buffer: support binary data as buffer (7dc94bb)

0.1.0 (2018-02-16)

Bug Fixes

  • node-4: support classes in node 4 (0991835)

Features

  • collections: support Sets and Maps (60c06ea)
  • html-tags: support html tags as-is (0da8fdb)