Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

* removed usage of deprecated Jackson constant, replaced with the recommended alternative

## 1.11.1

* small updated to http client connection settings
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<postmark.version>1.11.1</postmark.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<jackson.minimum.version>2.9.7</jackson.minimum.version>
<jackson.minimum.version>2.12</jackson.minimum.version>
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the replacement property that i added was added in 2.12, hence the change to the minimum version

<jackson.version>2.14.1</jackson.version>
<junit.jupiter.version>5.8.2</junit.jupiter.version>
<junit.platform.version>1.3.2</junit.platform.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class DataHandler {
public DataHandler() {
this.mapper = new ObjectMapper();
this.mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
this.mapper.setPropertyNamingStrategy(PropertyNamingStrategy.UPPER_CAMEL_CASE);
this.mapper.setPropertyNamingStrategy(PropertyNamingStrategies.UPPER_CAMEL_CASE);
setLiberalMapper();
}

Expand Down