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

Commit bdeb6ac

Browse files
committed
upgrade to 1.3.4 and update changelog
1 parent 80f8e51 commit bdeb6ac

28 files changed

+57
-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.3.4 - 2017-07-08
13+
### Added
14+
15+
### Changed
16+
- fixes #36 inject /server/info and /health into swagger
17+
- fixes #37 pass externalized logback.xml in Dockerfile for all services
18+
- fixes #39 implement custom grant type client_authenticated_user
19+
- fixes #29 implement PKCE extension for authorization code grant type
20+
- Upgrade to light-4j 1.3.4
21+
1222
## 1.3.1 - 2017-06-03
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-code-1.3.1.jar server.jar
3+
ADD /target/oauth2-code-1.3.4.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.3</version>
6+
<version>1.3.4</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.3</version>
6+
<version>1.3.4</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.3</version>
7+
<version>1.3.4</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.1.jar server.jar
3+
ADD /target/oauth2-client-1.3.4.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.3</version>
6+
<version>1.3.4</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>oauth2-client</artifactId>

client/pom.xml

Lines changed: 5 additions & 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.3</version>
7+
<version>1.3.4</version>
88
<relativePath>..</relativePath>
99
</parent>
1010

@@ -123,6 +123,10 @@
123123
<groupId>com.networknt</groupId>
124124
<artifactId>swagger-validator</artifactId>
125125
</dependency>
126+
<dependency>
127+
<groupId>com.networknt</groupId>
128+
<artifactId>json-schema-validator</artifactId>
129+
</dependency>
126130

127131
<dependency>
128132
<groupId>com.fasterxml.jackson.core</groupId>

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.1.jar server.jar
3+
ADD /target/oauth2-code-1.3.4.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.3</version>
6+
<version>1.3.4</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>oauth2-code</artifactId>

0 commit comments

Comments
 (0)