Skip to content

Commit

Permalink
#210: Upgrade Java version to 21
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-talbot42 committed Nov 1, 2024
1 parent 69b633b commit 507eed5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
call-workflow:
uses: 42BV/42-github-workflows/.github/workflows/maven-test.yml@main
with:
java-version: 17
java-version: 21
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Added

- Issue [#207](https://github.com/42BV/beanmapper/issues/207) Fixed issue where Optionals of an Enum could not be
- Issue [#210](https://github.com/42BV/beanmapper/issues/210) Upgraded Java version to 21.
- Issue [#207](https://github.com/42BV/beanmapper/issues/207) Fixed issue where Optionals of an Enum could not be
mapped to an Optional of the same Enum, as it would attempt to create a new instance of the enum-class in question.
Remedied by adding a check to the OptionalToAnyConverter.
- Issue [#188](https://github.com/42BV/beanmapper/issues/188) Made BeanProperty-annotation repeatable. Added targets-property to BeanProperty-annotation, allowing the user to specify which mappings a BeanProperty should apply to.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</developers>

<properties>
<java.version>17</java.version>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<javassist.version>3.30.2-GA</javassist.version>
Expand Down

0 comments on commit 507eed5

Please sign in to comment.