platform/angel_serialize_generator/CHANGELOG.md

31 lines
927 B
Markdown
Raw Normal View History

2018-05-15 19:01:13 +00:00
# 2.0.7
* Create unmodifiable Lists and Maps.
2018-05-15 19:33:57 +00:00
* Support `@required` on fields.
* Affix an `@immutable` annotation to classes, if
`package:meta` is imported.
2018-05-15 19:01:13 +00:00
2018-05-13 16:50:59 +00:00
# 2.0.6
* Support for using `abstract` to create immutable model classes.
2018-05-13 17:23:40 +00:00
* Add support for custom constructor parameters.
2018-05-13 18:02:47 +00:00
* Closed [#21](https://github.com/angel-dart/serialize/issues/21) - better naming
of `Map` types.
* Added overridden `==` operators.
2018-05-13 16:50:59 +00:00
# 2.0.5
* Deserialization now supports un-serialized `DateTime`.
* Better support for regular typed Lists and Maps in TypeScript.
2018-03-30 04:16:04 +00:00
# 2.0.4
* Fields in TypeScript definitions are now nullable by default.
2018-03-29 19:58:36 +00:00
# 2.0.3
* Added a `TypeScriptDefinitionBuilder`.
2018-03-09 12:39:21 +00:00
# 2.0.2
* Generates an `XFields` class with the serialized names of
all fields in a model class `X`.
2018-03-09 12:45:03 +00:00
* Removed unnecessary named parameters from `XSerializer.fromMap`.
2018-03-09 12:39:21 +00:00
2018-03-05 06:18:46 +00:00
# 2.0.1
* Ensured that `List` is only transformed if
it generically references a `Model`.