Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mapstruct monorepo to v1.6.3 #1087

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.mapstruct:mapstruct (source) 1.5.5.Final -> 1.6.3 age adoption passing confidence
org.mapstruct:mapstruct-jdk8 (source) 1.3.0.Final -> 1.6.3 age adoption passing confidence
org.mapstruct:mapstruct-processor (source) 1.3.0.Final -> 1.6.3 age adoption passing confidence

Release Notes

mapstruct/mapstruct (org.mapstruct:mapstruct)

v1.6.3

Compare Source

Bugs
  • Redundant if condition in Java record mapping with RETURN_DEFAULT strategy (#​3747)
  • Stackoverflow with Immutables custom builder (#​3370)
  • Unused import of java.time.LocalDate when mapping source LocalDateTime to target LocalDate (#​3732)
Documentation
  • Add section to README.md comparing mapstruct with Java Records (#​3751)

v1.6.2

Compare Source

Bugs
  • Regression from 1.6.1: ClassCastException when using records (#​3717)

v1.6.1

Compare Source

Enhancements
  • Use Java LinkedHashSet and LinkedHashMap new factory method with known capacity when on Java 19 or later (#​3113)
Bugs
  • Inverse Inheritance Strategy not working for ignored mappings only with target (#​3652)
  • Inconsistent ambiguous mapping method error when using SubclassMapping: generic vs raw types (#​3668)
  • Fix regression when using InheritInverseConfiguration with nested target properties and reversing target = "." (#​3670)
  • Deep mapping with multiple mappings broken in 1.6.0 (#​3667)
  • Two different constants are ignored in 1.6.0 (#​3673)
  • Inconsistent ambiguous mapping method error: generic vs raw types in 1.6.0 (#​3668)
  • Fix cross module records with interfaces not recognizing accessors (#​3661)
  • @AfterMapping methods are called twice when using target with builder (#​3678)
  • Compile error when using @AfterMapping method with Builder and TargetObject (#​3703)
Behaviour change
Inverse Inheritance Strategy not working for ignored mappings only with target

Prior to this fix @Mapping(target = "myProperty", ignore = true) was being ignored when using @InheritInverseConfiguration.

e.g.

@​Mapper
public interface ModelMapper {

    @​Mapping(target = "creationDate", ignore = true)
    Entity toEntity(Model model);    

    @​InheritInverseConfiguration
    Model toModel(Entity entity);
}

In the example above prior 1.6.1 the Model toModel(Entity entity) was going to map the id property. In order to keep that behavior you'll need to explicitly do the mapping for it.

@​Mapper
public interface ModelMappe {
    @​Mapping(target = "creationDate", ignore = true) // NOTE: Handled by JPA.
    Entity toEntity(Model model);    

    @​InheritInverseConfiguration
    @​Mapping(target = "creationDate", source = "creationDate") // Allow reading from Entity
    Model toModel(Entity entity);
}

v1.6.0

Compare Source

Previous Release Notes

Configuration

📅 Schedule: Branch creation - "after 7am and before 11am every weekday" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Nov 11, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 11, 2024
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 11, 2024
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 2 times, most recently from 237fdb8 to 2f2db92 Compare November 12, 2024 12:01
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 5 times, most recently from daf78dd to 334aed8 Compare November 18, 2024 11:51
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch from 334aed8 to 4b9b338 Compare November 19, 2024 15:05
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 10 times, most recently from cf45cf3 to 3f488ab Compare November 25, 2024 15:01
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 5 times, most recently from 6602e02 to bea110e Compare November 28, 2024 10:45
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 7 times, most recently from d5222f9 to e23cae6 Compare December 5, 2024 09:32
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 3 times, most recently from ef5e594 to 6a95bc3 Compare December 13, 2024 10:18
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 10 times, most recently from 02d0ae3 to 22b3b5d Compare December 19, 2024 15:31
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch 3 times, most recently from d667908 to f8f93dc Compare January 6, 2025 10:35
@renovate renovate bot force-pushed the renovate/mapstruct-monorepo branch from f8f93dc to 92820ae Compare January 6, 2025 10:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants