Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Commit 65a5548

Browse files
committed
upgrade to 1.4.0 and update changelog
1 parent 042559e commit 65a5548

28 files changed

+39
-29
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Changed
1111

12+
## 1.4.0 - 2017-08-22
13+
### Added
14+
- update build.sh for Docker build and push
15+
16+
### Changed
17+
- fixes #44 Replace Client with Http2Client
18+
- fixes #43 update TokenHelper to OauthHelper
19+
- fixes #42 Upgrade to Undertow 1.4.18.Final for Http2 and remove JsonPath
20+
- Upgrade to light-4j 1.4.0
21+
1222
## 1.3.5 - 2017-08-02
1323
### Added
1424

authorize/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM openjdk:8-jre-alpine
22
EXPOSE 6881
3-
ADD /target/oauth2-authorize-1.3.5.jar server.jar
3+
ADD /target/oauth2-authorize-1.4.0.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

authorize/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>light-oauth2</artifactId>
55
<groupId>com.networknt</groupId>
6-
<version>1.3.5</version>
6+
<version>1.4.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>oauth2-authorize</artifactId>

authorize/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.networknt</groupId>
55
<artifactId>light-oauth2</artifactId>
6-
<version>1.3.5</version>
6+
<version>1.4.0</version>
77
<relativePath>..</relativePath>
88
</parent>
99

cache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.networknt</groupId>
66
<artifactId>light-oauth2</artifactId>
7-
<version>1.3.5</version>
7+
<version>1.4.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010

client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM openjdk:8-jre-alpine
22
EXPOSE 6884
3-
ADD /target/oauth2-client-1.3.5.jar server.jar
3+
ADD /target/oauth2-client-1.4.0.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

client/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>light-oauth2</artifactId>
55
<groupId>com.networknt</groupId>
6-
<version>1.3.5</version>
6+
<version>1.4.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>oauth2-client</artifactId>

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.networknt</groupId>
66
<artifactId>light-oauth2</artifactId>
7-
<version>1.3.5</version>
7+
<version>1.4.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010

code/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM openjdk:8-jre-alpine
22
EXPOSE 6881
3-
ADD /target/oauth2-code-1.3.5.jar server.jar
3+
ADD /target/oauth2-code-1.4.0.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

code/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>light-oauth2</artifactId>
55
<groupId>com.networknt</groupId>
6-
<version>1.3.5</version>
6+
<version>1.4.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>oauth2-code</artifactId>

0 commit comments

Comments
 (0)