File tree Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change
1
+ # v1.4.0
2
+ * Extending default types to be ignored by static mapping
3
+ (https://github.com/smotastic/smartstruct/issues/74 )
4
+ * Nullable lists are not being mapped properly. (https://github.com/smotastic/smartstruct/issues/41 )
5
+ * Update to analyzer 5.0.0 (https://github.com/smotastic/smartstruct/issues/78 )
6
+
7
+
1
8
# v1.3.0
2
9
* Bump Analyzer to 4.0.0 (Thanks to @luissalgadofreire )
3
10
Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ packages:
322
322
name: smartstruct
323
323
url: "https://pub.dartlang.org"
324
324
source: hosted
325
- version: "1.3 .0"
325
+ version: "1.4 .0"
326
326
source_gen:
327
327
dependency: "direct main"
328
328
description:
Original file line number Diff line number Diff line change 1
1
name : smartstruct_generator
2
2
description : smartstruct - A dart bean mapper annotation processor - the easy nullsafe way!
3
- version : 1.3 .0
3
+ version : 1.4 .0
4
4
homepage : https://github.com/smotastic/smartstruct
5
5
environment :
6
6
sdk : " >=2.12.0 <3.0.0"
@@ -16,7 +16,7 @@ dependencies:
16
16
path : ^1.8.1
17
17
# smartstruct:
18
18
# path: ../smartstruct
19
- smartstruct : ^1.3 .0
19
+ smartstruct : ^1.4 .0
20
20
source_gen : ^1.2.1
21
21
# dependency_overrides:
22
22
# smartstruct:
Original file line number Diff line number Diff line change
1
+ # v1.4.0
2
+ * Extending default types to be ignored by static mapping
3
+ (https://github.com/smotastic/smartstruct/issues/74 )
4
+ * Nullable lists are not being mapped properly. (https://github.com/smotastic/smartstruct/issues/41 )
5
+ * Update to analyzer 5.0.0 (https://github.com/smotastic/smartstruct/issues/78 )
6
+
7
+
1
8
# v1.3.0
2
9
* Bump Analyzer to 4.0.0 (Thanks to @luissalgadofreire )
3
10
@@ -46,12 +53,12 @@ Fixes:
46
53
47
54
# v.1.2.1
48
55
- Constructors in the abstract mapper will now also be implemented by the generated mapper class (https://github.com/smotastic/smartstruct/issues/22 ).
49
- This should fix an issue where you cannot inject dependencies via the constructor in your mapper class.
56
+ This should fix an issue where you cannot inject dependencies via the constructor in your mapper class.
50
57
51
58
# v1.2.0
52
59
- Fixed the useInjection attribute to properly work now (https://github.com/smotastic/smartstruct/issues/19 )
53
- Note that all generated files are suffixed with * .mapper.g.dart* now instead of * .g.dart*
54
- So for migration purposes you'll have to just change the * part 'foomapper.g.dart'* in your mapper files to * part 'foomapper.mapper.g.dart*
60
+ Note that all generated files are suffixed with * .mapper.g.dart* now instead of * .g.dart*
61
+ So for migration purposes you'll have to just change the * part 'foomapper.g.dart'* in your mapper files to * part 'foomapper.mapper.g.dart*
55
62
``` dart
56
63
// before
57
64
part 'foomapper.g.dart'
Original file line number Diff line number Diff line change 1
1
name : smartstruct
2
2
description : smartstruct - A dart bean mapper annotation processor - the easy nullsafe way!
3
- version : 1.3 .0
3
+ version : 1.4 .0
4
4
homepage : https://github.com/smotastic/smartstruct
5
5
environment :
6
6
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments