Skip to content

Commit

Permalink
release version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Razumain committed Jan 24, 2023
1 parent 7d52cfd commit 55f08d8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:17-jdk-slim

ADD target/ca-cmc-admin-client-1.0.5-SNAPSHOT.jar /app.jar
ADD target/ca-cmc-admin-client-1.0.5.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:17-jdk-slim

ADD target/ca-cmc-admin-client-1.0.5-SNAPSHOT.jar /app.jar
ADD target/ca-cmc-admin-client-1.0.5.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
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.6</version>
<version>2.7.7</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>se.swedenconnect.ca</groupId>
<artifactId>ca-cmc-admin-client</artifactId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>

<name>CA CMC client base</name>
<description>CA CMC Client base for administration of CA services</description>
Expand Down
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 / | | | (__ | __/ | |___ | | | | | |___ | (__ | | | | | __/ | | | | | |_
\____| /_/ \_\ |___/ \___| |_| \_/ |_| \___| \___| \____| |_| |_| \____| \___| |_| |_| \___| |_| |_| \__|

Version 1.0.5-SNAPSHOT
Version 1.0.5
Powered by Spring Boot ${spring-boot.version}
4 changes: 3 additions & 1 deletion versions.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# CA CMC Admin versions

**Latest current version 1.0.3**
**Latest current version 1.0.5**

| 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 |
| 1.0.3 | Upgrading dependencies. Adding option to block and unblock certificates with certificateHold reason | 2022-09-29 |
| 1.0.4 | Updated base libraries to support synchronized CRL over multiple instances | 2023-01-03 |
| 1.0.5 | Dropping Jaxb dependency in underlying libraries | 2023-01-24 |

## Important release notes (most recent on top)

Expand Down

0 comments on commit 55f08d8

Please sign in to comment.