File tree 9 files changed +21
-15
lines changed
cas-security-spring-boot-autoconfigure
cas-security-spring-boot-sample
cas-security-spring-boot-starter
spring-security-cas-extension
9 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 1.0.3] ( https://github.com/kakawait/cas-security-spring-boot-starter/milestone/26 ) - 30 jul 2020
6
+
7
+ - Add new interface ` ProxyCallbackUrlAwareTicketValidator ` if you'd like to create your own ` TicketValidator ` but do not
8
+ want to extends ` Cas20ServiceTicketValidator ` (or others) because they added ` final ` everywhere and so is impossible
9
+ to extends...
10
+
5
11
## [ 1.0.2] ( https://github.com/kakawait/cas-security-spring-boot-starter/milestone/25 ) - 12 mar 2020
6
12
7
13
- Update dependencies for security fixes
Original file line number Diff line number Diff line change 1
1
# Spring Security CAS starter
2
2
3
3
[ ![ Travis] ( https://img.shields.io/travis/kakawait/cas-security-spring-boot-starter.svg )] ( https://travis-ci.org/kakawait/cas-security-spring-boot-starter )
4
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.kakawait/cas-security-spring-boot-starter.svg )] ( https://search.maven.org/#artifactdetails%7Ccom.kakawait%7Ccas-security-spring-boot-starter%7C1.0.2 %7Cjar )
4
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.kakawait/cas-security-spring-boot-starter.svg )] ( https://search.maven.org/#artifactdetails%7Ccom.kakawait%7Ccas-security-spring-boot-starter%7C1.0.3 %7Cjar )
5
5
[ ![ License] ( https://img.shields.io/github/license/kakawait/cas-security-spring-boot-starter.svg )] ( https://github.com/kakawait/cas-security-spring-boot-starter/blob/master/LICENSE.md )
6
6
[ ![ Codecov] ( https://img.shields.io/codecov/c/github/kakawait/cas-security-spring-boot-starter.svg )] ( https://codecov.io/gh/kakawait/cas-security-spring-boot-starter )
7
7
[ ![ SonarQube Tech Debt] ( https://img.shields.io/sonar/https/sonarcloud.io/com.kakawait%3Acas-security-spring-boot-parent/tech_debt.svg )] ( https://sonarcloud.io/dashboard?id=com.kakawait%3Acas-security-spring-boot-parent )
@@ -26,7 +26,7 @@ Add the Spring boot starter to your project
26
26
<dependency >
27
27
<groupId >com.kakawait</groupId >
28
28
<artifactId >cas-security-spring-boot-starter</artifactId >
29
- <version >1.0.2 </version >
29
+ <version >1.0.3 </version >
30
30
</dependency >
31
31
```
32
32
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache .org/POM/4.0.0 " xmlns : xsi =" http://www.w3 .org/2001/XMLSchema-instance "
2
+ <project xmlns : xsi =" http://www.w3 .org/2001/XMLSchema-instance " xmlns =" http://maven.apache .org/POM/4.0.0 "
3
3
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0
4
4
http://maven.apache.org/maven-v4_0_0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
10
10
<parent >
11
11
<groupId >com.kakawait</groupId >
12
12
<artifactId >cas-security-spring-boot-parent</artifactId >
13
- <version >1.0.2 </version >
13
+ <version >1.0.3 </version >
14
14
</parent >
15
15
16
16
<name >Cas security spring boot autoconfigure</name >
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ RUN mvn clean install && mvn -f cas-security-spring-boot-sample/pom.xml clean in
5
5
6
6
FROM openjdk:8-jre-alpine
7
7
WORKDIR /app
8
- COPY --from=build /src/cas-security-spring-boot-sample/target/cas-security-spring-boot-sample-1.0.2 .jar /app
8
+ COPY --from=build /src/cas-security-spring-boot-sample/target/cas-security-spring-boot-sample-1.0.3 .jar /app
9
9
ENV JAVA_OPTS=""
10
- CMD [ "sh" , "-c" , "java $JAVA_OPTS -jar /app/cas-security-spring-boot-sample-1.0.2 .jar" ]
10
+ CMD [ "sh" , "-c" , "java $JAVA_OPTS -jar /app/cas-security-spring-boot-sample-1.0.3 .jar" ]
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ services:
19
19
build :
20
20
context : ../
21
21
dockerfile : cas-security-spring-boot-sample/Dockerfile
22
- image : cas-security-spring-boot-sample:1.0.2
22
+ image : cas-security-spring-boot-sample:1.0.3
23
23
ports :
24
24
- " 8081:8081"
25
25
- " 5005"
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache .org/POM/4.0.0 "
3
- xmlns : xsi =" http://www.w3 .org/2001/XMLSchema-instance "
2
+ <project xmlns : xsi =" http://www.w3 .org/2001/XMLSchema-instance "
3
+ xmlns =" http://maven.apache .org/POM/4.0.0 "
4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
6
7
7
<groupId >com.kakawait</groupId >
8
8
<artifactId >cas-security-spring-boot-sample</artifactId >
9
- <version >1.0.2 </version >
9
+ <version >1.0.3 </version >
10
10
11
11
<name >Cas security spring boot sample</name >
12
12
13
13
<parent >
14
14
<groupId >org.springframework.boot</groupId >
15
15
<artifactId >spring-boot-starter-parent</artifactId >
16
- <version >2.2.5 .RELEASE</version >
16
+ <version >2.3.2 .RELEASE</version >
17
17
</parent >
18
18
19
19
<properties >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache .org/POM/4.0.0 " xmlns : xsi =" http://www.w3 .org/2001/XMLSchema-instance "
2
+ <project xmlns : xsi =" http://www.w3 .org/2001/XMLSchema-instance " xmlns =" http://maven.apache .org/POM/4.0.0 "
3
3
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0
4
4
http://maven.apache.org/maven-v4_0_0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
10
10
<parent >
11
11
<groupId >com.kakawait</groupId >
12
12
<artifactId >cas-security-spring-boot-parent</artifactId >
13
- <version >1.0.2 </version >
13
+ <version >1.0.3 </version >
14
14
</parent >
15
15
16
16
<name >Cas security spring boot starter</name >
Original file line number Diff line number Diff line change 7
7
<groupId >com.kakawait</groupId >
8
8
<artifactId >cas-security-spring-boot-parent</artifactId >
9
9
<packaging >pom</packaging >
10
- <version >1.0.2 </version >
10
+ <version >1.0.3 </version >
11
11
12
12
<name >Cas security spring boot parent</name >
13
13
<description >Spring boot starter for Apereo CAS client fully integrated with Spring security</description >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<groupId >com.kakawait</groupId >
12
12
<artifactId >cas-security-spring-boot-parent</artifactId >
13
- <version >1.0.2 </version >
13
+ <version >1.0.3 </version >
14
14
</parent >
15
15
16
16
<name >Spring security cas extension</name >
You can’t perform that action at this time.
0 commit comments