-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCHANGELOG
More file actions
53 lines (37 loc) · 1.57 KB
/
CHANGELOG
File metadata and controls
53 lines (37 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Version 0.7.0 (2019-08-29)
--------------------------
- release for Scala 2.13
Version 0.6.2 (2019-08-29)
--------------------------
- fixed type mismatch errors caused by unknown Scala compiler internals
Version 0.6.1 (2017-12-22)
--------------------------
- using the fully qualified Mapping trait in the macro to avoid possible clashes
Version 0.6.0 (2017-06-05)
--------------------------
- renamed organization and packages from com.bfil to io.bfil
- published the library to Bintray
Version 0.5.0 (2017-06-01)
--------------------------
- fixed an issue related to incremental compilation
Version 0.4.0 (2017-01-13)
--------------------------
- added Scala 2.12 support
- removed AutoMapping and DynamicMapping, import io.bfil.automapper._ instead
- simplified API to: automap(source).to[Target] and automap(source).dynamicallyTo[Target](dynamicField = value)
- improved type safety at compile time for dynamic mappings
- removed Dynamic lookup runtime overhead by pushing it to the macro at compile time
- switched tests to scalatest to support testing for compilation errors
Version 0.3.0 (2015-09-25)
--------------------------
- fixed issues with default values
- giving dynamic mappings precedence over everything else
- bug fix to only use dynamic mapping at the root level when generating the mapping
- minor API changes
Version 0.2.0 (2015-09-24)
--------------------------
- added support for Iterable Map fields mapping (only Map values, not keys)
- added DynamicMapping to enable dynamic field mapping
Version 0.1.0 (2015-09-16)
--------------------------
first public release