Skip to content

Commit

Permalink
Upgraded Jackson Databind to 2.7.4 and Netty to 4.0.36.final
Browse files Browse the repository at this point in the history
  • Loading branch information
tfredrich committed Apr 29, 2016
1 parent 2f81c72 commit 597bb85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -76,7 +76,9 @@ Change History/Release Notes:
---------------------------------------------------------------------------------------------------
Release 0.11.4-SNAPSHOT (in master)
-----------------------------------
* Issue #126 - Introduced RestExpress.noCompression() to turns off resopnse GZip and deflate encoding support (the Netty HttpContentCompressor is not put in the pipeline) for speed optimization of small payloads.
* Issue #126 - Introduced RestExpress.noCompression() to turns off response GZip and deflate encoding support (the Netty HttpContentCompressor is not put in the pipeline) for speed optimization (e.g. for small payloads).
* Upgraded Jackson Databind to 2.7.4
* Upgraded Netty to 4.0.36.final

Release 0.11.3 - 10 Feb 2016
----------------------------
Expand Down
14 changes: 7 additions & 7 deletions core/pom.xml
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.7.1-1</version>
<version>2.7.4</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
Expand All @@ -38,13 +38,18 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.0.34.Final</version>
<version>4.0.36.Final</version>
</dependency>
<dependency>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jzlib</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
Expand All @@ -60,11 +65,6 @@
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jzlib</artifactId>
<version>1.1.3</version>
</dependency>
</dependencies>

<properties>
Expand Down

0 comments on commit 597bb85

Please sign in to comment.