Skip to content

Commit

Permalink
Enhance manifest lookup (#141)
Browse files Browse the repository at this point in the history
* Change MANIFEST.MF lookup
Old method did not cater for folders with the same name as the jar
string being searched.

* Enhance MANIFEST.MF lookup

* Updated release numbers

* Upgrade notes for 2.7.1
  • Loading branch information
uhurusurfa committed Mar 11, 2019
1 parent 19bd812 commit 1b66ffb
Show file tree
Hide file tree
Showing 7 changed files with 224 additions and 227 deletions.
2 changes: 1 addition & 1 deletion Bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.0</version>
<version>2.7.1</version>
</parent>

<artifactId>openas2-osgi</artifactId>
Expand Down
15 changes: 7 additions & 8 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
# OpenAS2 Server
# Version 2.7.0
# Version 2.7.1
# RELEASE NOTES
-----
The OpenAS2 project is pleased to announce the release of OpenAS2 2.7.0
The OpenAS2 project is pleased to announce the release of OpenAS2 2.7.1

The release download file is: OpenAS2Server-2.7.0.zip
The release download file is: OpenAS2Server-2.7.1.zip

The zip file contains a PDF document (OpenAS2HowTo.pdf) providing information on installing and using the application.

Version 2.7.0 - 2019-03-03
Version 2.7.1 - 2019-03-11
This is a minor enhancement release:
**IMPORTANT NOTE**: Please review upgrade notes if you are upgrading

1. Add an exclude filter option for the file polling module to support large files using a temporary extension until file is copied to directory
2. Add support for including extra parts of a parsed file name into the final parameter in the "format" attribute for file name parsing.
3. Support HTTP authentication on a per partnership basis.
4. Document the use of HTTP authentication, file filters and file name parsing functionality.
1. Modify the way the application identifies the correct manifest file to determine title and version of the app.
2. Alter the file cleanup logging messages to make it easier to debig issues.
3. Correct minor spelling errors in logging statements

##Upgrade Notes
See the openAS2HowTo appendix for the general process on upgrading OpenAS2.
Expand Down
2 changes: 1 addition & 1 deletion Remote/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.0</version>
<version>2.7.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 3 additions & 1 deletion Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<!-- DO NOT CHANGE THIS "groupId" WITHOUT CHANGING XMLSession.getManifestAttributes.MANIFEST_VENDOR_ID_ATTRIB -->
<groupId>net.sf.openas2</groupId>
<artifactId>OpenAS2</artifactId>
<version>2.7.0</version>
<version>2.7.1</version>
</parent>

<artifactId>openas2-server</artifactId>

<!-- DO NOT CHANGE THIS "name" WITHOUT CHANGING XMLSession.getManifestAttributes.MANIFEST_TITLE_ATTRIB -->
<name>OpenAS2 Server</name>
<description>
Open source implementation of the AS2 standard for signed encrypted and compressed document transfer
Expand Down
Loading

0 comments on commit 1b66ffb

Please sign in to comment.