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

Commit 3e38317

Browse files
committed
upgrade to 1.4.1 and update changelog
1 parent 51af158 commit 3e38317

File tree

20 files changed

+30
-21
lines changed

20 files changed

+30
-21
lines changed

CHANGELOG.md

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

1010
### Changed
1111

12+
## 1.4.1 - 2017-08-30
13+
### Added
14+
15+
### Changed
16+
- fixes #46 Make all services HTTP2 and HTTPS enabled and disable HTTP
17+
- fixes #45 Upgrade to newer version of Undertow and Jackson
18+
- Upgrade to light-rest-4j 1.4.1
19+
- Upgrade to light-4j 1.4.1
20+
1221
## 1.4.0 - 2017-08-22
1322
### Added
1423
- update build.sh for Docker build and push

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.4.0.jar server.jar
3+
ADD /target/oauth2-authorize-1.4.1.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

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.4.0</version>
6+
<version>1.4.1</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.4.0</version>
7+
<version>1.4.1</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.4.0.jar server.jar
3+
ADD /target/oauth2-client-1.4.1.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

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.4.0</version>
7+
<version>1.4.1</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.4.0.jar server.jar
3+
ADD /target/oauth2-code-1.4.1.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

code/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.4.0</version>
6+
<version>1.4.1</version>
77
<relativePath>..</relativePath>
88
</parent>
99

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ googleAnalytics = ""
1717
provider = "GitHub"
1818
repo_url = "https://github.com/networknt/light-oauth2"
1919

20-
version = "1.4.0"
20+
version = "1.4.1"
2121
logo = "images/logo.png"
2222
favicon = ""
2323

key/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 6886
3-
ADD /target/oauth2-key-1.4.0.jar server.jar
3+
ADD /target/oauth2-key-1.4.1.jar server.jar
44
CMD ["/bin/sh","-c","java -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"]

0 commit comments

Comments
 (0)