Skip to content

Commit 54c5643

Browse files
committed
update dependencies
1 parent cd00ad4 commit 54c5643

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
55
## 2.1.0 (07/30/2020)
66
- [ISSUE-56](https://github.com/Crim/pardot-java-client/issues/56) Adds support for Dynamic Content.
77

8+
#### Internal Dependency Updates
9+
- Upgraded Jackson from version 2.10.2 to 2.11.1.
10+
- Upgraded HttpComponents Client from version 4.5.11 to 4.5.12.
11+
812
## 2.0.0 (03/05/2020)
913
- [ISSUE-50](https://github.com/Crim/pardot-java-client/issues/50) Improve support for record multiple fields.
1014

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848

4949
<!-- Jackson version -->
50-
<jackson.version>2.10.2</jackson.version>
50+
<jackson.version>2.11.1</jackson.version>
5151

5252
<!-- Define which version of junit you'll be running -->
5353
<junit.version>4.13</junit.version>
@@ -76,7 +76,7 @@
7676
<dependency>
7777
<groupId>org.apache.httpcomponents</groupId>
7878
<artifactId>httpclient</artifactId>
79-
<version>4.5.11</version>
79+
<version>4.5.12</version>
8080
</dependency>
8181

8282
<!-- For parsing XML responses to POJOs -->

src/test/java/com/darksci/pardot/api/parser/dynamiccontent/DynamicContentReadResponseParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* Tests parsing Dynamic Content Query api responses.
3333
*/
3434
public class DynamicContentReadResponseParserTest extends BaseResponseParserTest {
35-
private static final Logger logger = LoggerFactory.getLogger(DynamicContentQueryResponseParserTest.class);
35+
private static final Logger logger = LoggerFactory.getLogger(DynamicContentReadResponseParserTest.class);
3636

3737
/**
3838
* Validates we can parse a dynamic content query response A-OK.

0 commit comments

Comments
 (0)