Skip to content

Commit

Permalink
🔖 version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kakawait committed Sep 4, 2020
1 parent dc35966 commit 433239c
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

All notable changes to this project will be documented in this file.

## [1.0.5](https://github.com/kakawait/cas-security-spring-boot-starter/milestone/28) - 04 sept 2020

- Fix java 11 build error due to incompatibility between lombok and javadoc ([#146](https://github.com/kakawait/cas-security-spring-boot-starter/issues/146))

## [1.0.4](https://github.com/kakawait/cas-security-spring-boot-starter/milestone/27) - 04 sept 2020

- Replace `@PostConstruct` to avoid mess with JDK8 / JDK11
- Replace `@PostConstruct` to avoid mess with JDK8 / JDK11 ([#145](https://github.com/kakawait/cas-security-spring-boot-starter/issues/145))

## [1.0.3](https://github.com/kakawait/cas-security-spring-boot-starter/milestone/26) - 30 jul 2020

- Add new interface `ProxyCallbackUrlAwareTicketValidator` if you'd like to create your own `TicketValidator` but do not
want to extends `Cas20ServiceTicketValidator` (or others) because they added `final` everywhere and so is impossible
want to extend `Cas20ServiceTicketValidator` (or others) because they added `final` everywhere and so is impossible
to extends...

## [1.0.2](https://github.com/kakawait/cas-security-spring-boot-starter/milestone/25) - 12 mar 2020
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Spring Security CAS starter

[![Travis](https://img.shields.io/travis/kakawait/cas-security-spring-boot-starter.svg)](https://travis-ci.org/kakawait/cas-security-spring-boot-starter)
[![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.4%7Cjar)
[![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.5%7Cjar)
[![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)
[![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)
[![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)
Expand All @@ -26,7 +26,7 @@ Add the Spring boot starter to your project
<dependency>
<groupId>com.kakawait</groupId>
<artifactId>cas-security-spring-boot-starter</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion cas-security-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.kakawait</groupId>
<artifactId>cas-security-spring-boot-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<name>Cas security spring boot autoconfigure</name>
Expand Down
4 changes: 2 additions & 2 deletions cas-security-spring-boot-sample/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ RUN mvn clean install && mvn -f cas-security-spring-boot-sample/pom.xml clean in

FROM openjdk:8-jre-alpine
WORKDIR /app
COPY --from=build /src/cas-security-spring-boot-sample/target/cas-security-spring-boot-sample-1.0.4.jar /app
COPY --from=build /src/cas-security-spring-boot-sample/target/cas-security-spring-boot-sample-1.0.5.jar /app
ENV JAVA_OPTS=""
CMD [ "sh", "-c", "java $JAVA_OPTS -jar /app/cas-security-spring-boot-sample-1.0.4.jar" ]
CMD [ "sh", "-c", "java $JAVA_OPTS -jar /app/cas-security-spring-boot-sample-1.0.5.jar" ]
2 changes: 1 addition & 1 deletion cas-security-spring-boot-sample/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
build:
context: ../
dockerfile: cas-security-spring-boot-sample/Dockerfile
image: cas-security-spring-boot-sample:1.0.4
image: cas-security-spring-boot-sample:1.0.5
ports:
- "8081:8081"
- "5005"
Expand Down
2 changes: 1 addition & 1 deletion cas-security-spring-boot-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.kakawait</groupId>
<artifactId>cas-security-spring-boot-sample</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>

<name>Cas security spring boot sample</name>

Expand Down
2 changes: 1 addition & 1 deletion cas-security-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.kakawait</groupId>
<artifactId>cas-security-spring-boot-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<name>Cas security spring boot starter</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.kakawait</groupId>
<artifactId>cas-security-spring-boot-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.4</version>
<version>1.0.5</version>

<name>Cas security spring boot parent</name>
<description>Spring boot starter for Apereo CAS client fully integrated with Spring security</description>
Expand Down
2 changes: 1 addition & 1 deletion spring-security-cas-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.kakawait</groupId>
<artifactId>cas-security-spring-boot-parent</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</parent>

<name>Spring security cas extension</name>
Expand Down

0 comments on commit 433239c

Please sign in to comment.