Skip to content

Commit

Permalink
DD4J-421 version update to 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
siimsuu committed Apr 12, 2019
1 parent fba30f3 commit e275dde
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
18 changes: 18 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,23 @@
DigiDoc4J Java library release notes DigiDoc4J Java library release notes
------------------------------------ ------------------------------------

Release 3.1.1
------------------
Summary of the major changes since 3.1.0
------------------------------------------
* Fix for BDOC/ASIC-E container detection
* Fix for not able to remove signatures from ASIC-E container
* Performance improvement
* New LOTL signer certs added to truststore

Known issues
------------
* While upgrading from version older than 2.1.1 be sure that your integration :
- doesn't use Xalan or XercesImpl dependencies
- uses a patched Java version (JDK7u40+, JDK8 or higher)
Xalan and XercesImpl were used to patch XML vulnerabilities in older java versions. They should be discarded with higher versions because they override default Java XML security.
If it is not possible to remove Xalan, then you can set your system property to override TransformerFactory : System.setProperty("javax.xml.transform.TransformerFactory","com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl");

Release 3.1.0 Release 3.1.0
------------------ ------------------
Summary of the major changes since 3.0.0 Summary of the major changes since 3.0.0
Expand Down
4 changes: 2 additions & 2 deletions ddoc4j/pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>org.digidoc4j</groupId> <groupId>org.digidoc4j</groupId>
<artifactId>ddoc4j</artifactId> <artifactId>ddoc4j</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>3.1.0</version> <version>3.1.1</version>


<name>DDoc4J</name> <name>DDoc4J</name>
<description>DDoc4J is Java Library for validating DDOC documents. It's not recommended to use it directly but rather through DigiDoc4J's API.</description> <description>DDoc4J is Java Library for validating DDOC documents. It's not recommended to use it directly but rather through DigiDoc4J's API.</description>
Expand All @@ -15,7 +15,7 @@
<parent> <parent>
<artifactId>digidoc4j-parent</artifactId> <artifactId>digidoc4j-parent</artifactId>
<groupId>org.digidoc4j</groupId> <groupId>org.digidoc4j</groupId>
<version>3.1.0</version> <version>3.1.1</version>
</parent> </parent>


<dependencies> <dependencies>
Expand Down
6 changes: 3 additions & 3 deletions digidoc4j/pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.digidoc4j</groupId> <groupId>org.digidoc4j</groupId>
<artifactId>digidoc4j</artifactId> <artifactId>digidoc4j</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>3.1.0</version> <version>3.1.1</version>


<name>DigiDoc4j</name> <name>DigiDoc4j</name>
<description>DigiDoc4j is a Java library for digitally signing documents and creating digital signature containers <description>DigiDoc4j is a Java library for digitally signing documents and creating digital signature containers
Expand All @@ -18,7 +18,7 @@
<parent> <parent>
<artifactId>digidoc4j-parent</artifactId> <artifactId>digidoc4j-parent</artifactId>
<groupId>org.digidoc4j</groupId> <groupId>org.digidoc4j</groupId>
<version>3.1.0</version> <version>3.1.1</version>
</parent> </parent>


<properties> <properties>
Expand All @@ -43,7 +43,7 @@
<dependency> <dependency>
<artifactId>ddoc4j</artifactId> <artifactId>ddoc4j</artifactId>
<groupId>org.digidoc4j</groupId> <groupId>org.digidoc4j</groupId>
<version>3.1.0</version> <version>3.1.1</version>
</dependency> </dependency>


<dependency> <dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


<groupId>org.digidoc4j</groupId> <groupId>org.digidoc4j</groupId>
<artifactId>digidoc4j-parent</artifactId> <artifactId>digidoc4j-parent</artifactId>
<version>3.1.0</version> <version>3.1.1</version>
<packaging>pom</packaging> <packaging>pom</packaging>


<name>DigiDoc4J parent</name> <name>DigiDoc4J parent</name>
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash


version="3.1.0" version="3.1.1"
staging_url="https://oss.sonatype.org/service/local/staging/deploy/maven2/" staging_url="https://oss.sonatype.org/service/local/staging/deploy/maven2/"
repositoryId="ossrh" repositoryId="ossrh"


Expand Down

0 comments on commit e275dde

Please sign in to comment.