Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
# OpenAS2 Server
# Version 4.8.1
# Version 4.8.2
# RELEASE NOTES
-----
The OpenAS2 project is pleased to announce the release of OpenAS2 4.8.1
The OpenAS2 project is pleased to announce the release of OpenAS2 4.8.2

The release download file is: OpenAS2Server-4.8.1.zip
The release download file is: OpenAS2Server-4.8.2.zip

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

Version 4.8.1 - 2026-03-27
Version 4.8.2 - 2026-04-10
=======

This is a minor bugfix release.
1. Correct payload filename when using generic directory poller.

This is a bugfix release.
1. When an SSL exception occurs connecting to a partner, the file is soptred in the sent directory instead of error directory.

## Upgrade Notes
See the openAS2HowTo appendix for the general process on upgrading OpenAS2.
Expand Down
2 changes: 1 addition & 1 deletion Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- DO NOT CHANGE THIS "groupId" WITHOUT CHANGING XMLSession.getManifestAttributes.MANIFEST_VENDOR_ID_ATTRIB -->
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>4.8.1</version>
<version>4.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ public void handle(String action, Message msg, Map<String, Object> options) thro
msg.trackMsgState(getSession());
if ("true".equalsIgnoreCase(msg.getPartnership().getAttributeOrProperty(Partnership.PA_RESEND_ON_SSL_EXCEPTION, "false"))) {
resend(msg, new OpenAS2Exception(org.openas2.util.Logging.getExceptionMsg(e)), false);
} else {
AS2Util.cleanupFiles(msg, true);
}
return;
} catch (Exception e) {
Expand Down
6 changes: 6 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
**IMPORTANT NOTE**: Please review upgrade notes in the RELEASE-NOTES.md if you are upgrading

Version 4.8.2 - 2026-04-10

This is a bugfix release.
1. When an SSL exception occurs connecting to a partner, the file is soptred in the sent directory instead of error directory.


Version 4.8.1 - 2026-03-27

This is a minor bugfix release.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>4.8.1</version>
<version>4.8.2</version>
<name>OpenAS2</name>
<packaging>pom</packaging>

Expand Down
Loading