]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Version bump to 5.5.1 5.5.1
authorAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 20 Oct 2016 10:57:00 +0000 (12:57 +0200)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 20 Oct 2016 10:57:00 +0000 (12:57 +0200)
NEWS
configure.ac
testing/start-testing
testing/testing.conf

diff --git a/NEWS b/NEWS
index 515330ba94c35128912f4665a6eb3118188a7f35..3a7aba88390fb882983e9b9e1d47a56a9789be28 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,12 @@ strongswan-5.5.1
   and the more traditional MGF1 Mask Generation Functions based on the SHA-1,
   SHA-256 and SHA-512 hash algorithms implemented by the new mgf1 plugin.
 
+- The pki tool, with help of the pkcs1 or openssl plugins, can parse private
+  keys in any of the supported formats without having to know the exact type.
+  So instead of having to specify rsa or ecdsa explicitly the keyword priv may
+  be used to indicate a private key of any type. Similarly, swanctl can load
+  any type of private key from the swanctl/private directory.
+
 - The pki tool can handle RSASSA-PKCS1v1.5-with-SHA-3 signatures using the
   sha3 and gmp plugins.
 
@@ -21,6 +27,9 @@ strongswan-5.5.1
 - Setting cache_crls = yes in strongswan.conf the vici plugin saves regular,
   base and delta CRLs to disk.
 
+- IKE fragmentation is now enabled by default with the default fragment size
+  set to 1280 bytes for both IP address families.
+
 - libtpmtss: In the TSS2 API the function TeardownSocketTcti() was replaced by
   tss2_tcti_finalize().
 
index a42ba26450157f2ce9718d1501940b0868da853e..622c79a10f605bcba41d04a6a2ed8b45811d4e50 100644 (file)
@@ -19,7 +19,7 @@
 #  initialize & set some vars
 # ============================
 
-AC_INIT([strongSwan],[5.5.1rc2])
+AC_INIT([strongSwan],[5.5.1])
 AM_INIT_AUTOMAKE(m4_esyscmd([
        echo tar-ustar
        echo subdir-objects
index 31097a8b75487bb6cd1d881d4eb780b79a40734c..7ef35f9e49955a1c8a571cfa2533f8c2cbf67702 100755 (executable)
@@ -27,6 +27,7 @@ log_action "Deploying $SHAREDDIR as hostfs"
 execute "chown -R $KVMUSER:$KVMGROUP $SHAREDDIR" 0
 execute "ln -Tfs $SHAREDDIR $HOSTFSTARGET"
 
+[ -d $TESTRESULTSDIR ] || mkdir $TESTRESULTSDIR
 log_action "Deploying $TESTRESULTSDIR as hostfs"
 execute "ln -Tfs $TESTRESULTSDIR $TESTRESTULSTARGET"
 
index e9a64e82ed5c5da91c3d08cf26c57a633124d426..5f85dd592a50b145f022411333215a50f049fc6d 100644 (file)
@@ -24,14 +24,14 @@ fi
 : ${TESTDIR=/srv/strongswan-testing}
 
 # Kernel configuration
-: ${KERNELVERSION=4.8.2}
+: ${KERNELVERSION=4.8.3}
 : ${KERNEL=linux-$KERNELVERSION}
 : ${KERNELTARBALL=$KERNEL.tar.xz}
 : ${KERNELCONFIG=$DIR/../config/kernel/config-4.8}
 : ${KERNELPATCH=ha-4.4-abicompat.patch.bz2}
 
 # strongSwan version used in tests
-: ${SWANVERSION=5.5.1rc2}
+: ${SWANVERSION=5.5.1}
 
 # Build directory where the guest kernel and images will be built
 : ${BUILDDIR=$TESTDIR/build}