Skip to content

Commit

Permalink
release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Razumain committed Mar 31, 2022
1 parent e43637f commit 3d58f2c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-jre

ADD target/cmc-ca-client-base-1.0.2-SNAPSHOT.jar /app.jar
ADD target/cmc-ca-client-base-1.0.2.jar /app.jar
ENTRYPOINT ["java","-jar","/app.jar"]

# Main web port
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-debug
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-jre

ADD target/cmc-ca-client-base-1.0.2-SNAPSHOT.jar /app.jar
ADD target/cmc-ca-client-base-1.0.2.jar /app.jar

# This ENTRYPOINT enables attachement of a debugger on port 8000. This port is automtically exposed on the docker container.
ENTRYPOINT ["java","-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000","-jar","/app.jar"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-softhsm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y pcscd libccid libpcsclite-dev libssl-de
# Setup softhsm
RUN rm -rf /var/lib/softhsm/tokens && mkdir /var/lib/softhsm/tokens

ADD target/cmc-ca-client-base-1.0.2-SNAPSHOT.jar /app.jar
ADD target/cmc-ca-client-base-1.0.2.jar /app.jar
COPY src/main/resources/cfg/start.sh /

ENTRYPOINT /start.sh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

---
# CURRENT BUILD VERSION = 1.0.1
# CURRENT BUILD VERSION = 1.0.2
---
# CA admin GUI based on CMC API

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.5</version>
<version>2.6.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>se.swedenconnect.ca</groupId>
<artifactId>cmc-ca-client-base</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>

<name>CA CMC client base</name>
<description>CA CMC Client base for administration of CA services</description>
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/resources/cfg/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
| |___ / ___ \ \__ \ | __/ | | \ V / | | | (__ | __/ | |___ | | | | | |___ | (__ | | | | | __/ | | | | | |_
\____| /_/ \_\ |___/ \___| |_| \_/ |_| \___| \___| \____| |_| |_| \____| \___| |_| |_| \___| |_| |_| \__|

1.0.2-SNAPSHOT
Version 1.0.2
Powered by Spring Boot ${spring-boot.version}
11 changes: 6 additions & 5 deletions versions.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# CA CMC Admin versions

**Latest current version 1.0.1**
**Latest current version 1.0.2**

| Version | Comment | Date |
|---------|-------------------------------------------|------------|
| 1.0.0 | Initial version | 2022-02-08 |
| 1.0.1 | Initial version | 2022-03-31 |
| Version | Comment | Date |
|---------|--------------------------------------------------------------|------------|
| 1.0.0 | Initial version | 2022-02-08 |
| 1.0.1 | temp fix of Spring boot RCE vulnerability | 2022-03-31 |
| 1.0.2 | Upgrading to spring boot 2.6.6 as permanent solution to RCE | 2022-03-31 |

## Important release notes (most recent on top)

Expand Down

0 comments on commit 3d58f2c

Please sign in to comment.