Skip to content

Commit a5b47d0

Browse files
ci/cd : v4.1.0
1 parent efdb29b commit a5b47d0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
* Complete separation of the library and the client
3535
* Library : API
3636
* Client : DOC, Integration tester
37+
* Use JPA for various databases to gain full control over all tokens and permissions, unlike simple in-memory examples.
3738
* Extensible: Supports multiple authorization servers and resource servers with this library.
3839
* Hybrid Resource Servers Token Verification Methods: Support for multiple verification approaches, including API calls to the authorization server, direct database validation, and local JWT decoding.
3940
* Immediate Permission (Authority) Check: Not limited to verifying the token itself, but also ensuring real-time validation of any updates to permissions in the database.
40-
4141
* Authentication management based on a combination of username, client ID, and App-Token
4242
* What is an App-Token? An App-Token is a new access token generated each time the same account logs in. If the token values are the same, the same access token is shared.
4343

Diff for: client/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<modelVersion>4.0.0</modelVersion>
88
<groupId>com.patternhelloworld.securityhelper.oauth2.client</groupId>
99
<artifactId>spring-oauth2-easyplus-client</artifactId>
10-
<version>4.0.1</version>
10+
<version>4.1.0</version>
1111
<packaging>jar</packaging>
1212

1313
<properties>
@@ -48,7 +48,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
4848
<dependency>
4949
<groupId>io.github.patternhelloworld.securityhelper.oauth2.api</groupId>
5050
<artifactId>spring-oauth2-easyplus</artifactId>
51-
<version>4.0.1</version>
51+
<version>4.1.0</version>
5252
</dependency>
5353

5454
<!-- DB -->

Diff for: lib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
88

99
<groupId>io.github.patternhelloworld.securityhelper.oauth2.api</groupId>
1010
<artifactId>spring-oauth2-easyplus</artifactId>
11-
<version>4.0.1</version>
11+
<version>4.1.0</version>
1212
<name>spring-oauth2-easyplus</name>
1313
<description>App-Token based easy OAuth2 implementation built to grow with Spring Boot</description>
1414
<packaging>jar</packaging>

0 commit comments

Comments
 (0)