Skip to content

Releases: mark-gerarts/automapper-plus

2.0.0-alpha1

17 Mar 12:35
Compare
Choose a tag to compare
2.0.0-alpha1 Pre-release
Pre-release

The first release for the new major version. Main changes so far are:

  • Following the interface proposed in the Symfony PR
  • Mapping to array
  • Deprecation removals

1.3.4

25 Feb 08:21
Compare
Choose a tag to compare

Allow automatic registering of mappings by using a new option.

1.3.3

27 Jan 09:40
Compare
Choose a tag to compare

Fixes an issue when setting a private property with the same suffix (#33)

1.3.2

30 Dec 10:14
634ff93
Compare
Choose a tag to compare

Add the destination object to the context when using mapToObject (Thanks @BoShurik)

1.3.1

11 Dec 09:56
51d9e3a
Compare
Choose a tag to compare

Allow passing of context to custom constructor (Thanks @BoShurik)

1.3.0

26 Nov 07:52
Compare
Choose a tag to compare

Bugfixes:

  • PropertyAccess is split up into reading and writing (#27)
  • Add possibility to ignore null source values (#12)
  • Fix mapping with inherited private properties (#26)

Features:

  • Various performance improvements
  • Implement a new SetTo operation
  • Allow mapping from array (#18, thanks @slava-v)
  • Allow passing of context (#30, thanks @BoShurik )

1.2.3

06 Sep 11:08
Compare
Choose a tag to compare

Fix a bug (#25) where private properties with the same suffix were being mapped incorrectly.

1.2.2

26 Aug 13:12
5558e23
Compare
Choose a tag to compare

Major changes:

  • Allow MapTo to be chained from FromProperty (#17)
  • Add MapperAware operation (Thanks @slava-v)
  • Adhere to the substitution principle (Thanks @mschop)
  • Pass mapper to custom constructor (Thanks @BoShurik)

1.2.1

11 Apr 16:22
Compare
Choose a tag to compare

Fix a bug where MapTo would not make use of the assigned nameresolver (#17)

1.2.0

11 Apr 11:29
Compare
Choose a tag to compare
  • Add MapFromWithMapper (Thanks @slava-v)
  • Add MapperAwareInterface