Skip to content

Commit 20b45da

Browse files
authored
Release notes (#447)
1 parent b43ef86 commit 20b45da

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

RELEASE-NOTES.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# OpenAS2 Server
2-
# Version 4.5.0
2+
# Version 4.5.1
33
# RELEASE NOTES
44
-----
5-
The OpenAS2 project is pleased to announce the release of OpenAS2 4.5.0
5+
The OpenAS2 project is pleased to announce the release of OpenAS2 4.5.1
66

7-
The release download file is: OpenAS2Server-4.5.0.zip
7+
The release download file is: OpenAS2Server-4.5.1.zip
88

99
The zip file contains a PDF document (OpenAS2HowTo.pdf) providing information on installing and using the application.
1010
## NOTE: Testing covers Java 11 to 21.
1111
## Java 8 is NO LONGER SUPPORTED.
1212

13-
Version 4.5.0 - 2025-05-10
13+
Version 4.5.1 - 2025-06-04
1414

15-
This is an enhancement release.
15+
This is a bugfix release.
1616

17-
1. Add configuration paramerter "resend_on_ssl_exception" to enter into a resend loop when an SSL exception occurs connecting to a partner.
17+
1. Fix dynamic content-type functionality.
1818

1919
##Upgrade Notes
2020
See the openAS2HowTo appendix for the general process on upgrading OpenAS2.

Server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!-- DO NOT CHANGE THIS "groupId" WITHOUT CHANGING XMLSession.getManifestAttributes.MANIFEST_VENDOR_ID_ATTRIB -->
88
<groupId>net.sf.openas2</groupId>
99
<artifactId>OpenAS2</artifactId>
10-
<version>4.5.0</version>
10+
<version>4.5.1</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

changes.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
**IMPORTANT NOTE**: Please review upgrade notes in the RELEASE-NOTES.md if you are upgrading
22

3+
Version 4.5.1 - 2025-06-04
4+
5+
This is a bugfix release.
6+
7+
1. Fix dynamic content-type functionality.
8+
9+
310
Version 4.5.0 - 2025-05-18
411

512
This is an enhancement release.

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>net.sf.openas2</groupId>
77
<artifactId>OpenAS2</artifactId>
8-
<version>4.5.0</version>
8+
<version>4.5.1</version>
99
<name>OpenAS2</name>
1010
<packaging>pom</packaging>
1111

@@ -51,17 +51,17 @@
5151
<dependency>
5252
<groupId>org.bouncycastle</groupId>
5353
<artifactId>bcjmail-jdk18on</artifactId>
54-
<version>1.80</version>
54+
<version>1.81</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.bouncycastle</groupId>
5858
<artifactId>bcpkix-jdk18on</artifactId>
59-
<version>1.80</version>
59+
<version>1.81</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.bouncycastle</groupId>
6363
<artifactId>bcprov-jdk18on</artifactId>
64-
<version>1.80</version>
64+
<version>1.81</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.bouncycastle</groupId>
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>org.bouncycastle</groupId>
7373
<artifactId>bcpg-jdk18on</artifactId>
74-
<version>1.80</version>
74+
<version>1.81</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.apache.commons</groupId>
@@ -108,22 +108,22 @@
108108
<dependency>
109109
<groupId>org.junit.jupiter</groupId>
110110
<artifactId>junit-jupiter</artifactId>
111-
<version>5.12.2</version>
111+
<version>5.13.0</version>
112112
<scope>test</scope>
113113
</dependency>
114114
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
115115
<dependency>
116116
<groupId>org.mockito</groupId>
117117
<artifactId>mockito-core</artifactId>
118118
<!-- Hold at version 4.x for Java 8 compatibility -->
119-
<version>5.17.0</version>
119+
<version>5.18.0</version>
120120
<scope>test</scope>
121121
</dependency>
122122
<dependency>
123123
<groupId>org.mockito</groupId>
124124
<artifactId>mockito-junit-jupiter</artifactId>
125125
<!-- Hold at version 4.x for Java 8 compatibility -->
126-
<version>5.17.0</version>
126+
<version>5.18.0</version>
127127
<scope>test</scope>
128128
</dependency>
129129
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest -->

0 commit comments

Comments
 (0)