diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index b3333356b..1ca24b740 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -5,6 +5,7 @@ - fixed #11200: Navigation in AssetProxy cached in browser - fixed #11143: cancel button - fixed #11259: Snippet content never cached + - fixed #11254: RTF files are streamed with the wrong content-type 7.8.5 - added the EMS submission subsystem diff --git a/docs/gotcha.txt b/docs/gotcha.txt index 52aba7c6f..60a0ce1d9 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -7,6 +7,10 @@ upgrading from one version to the next, or even between multiple versions. Be sure to heed the warnings contained herein as they will save you many hours of grief. +7.8.6 +-------------------------------------------------------------------- + * WebGUI now requires LWP 5.833 or higher, to fix a bug in that module. + 7.8.5 -------------------------------------------------------------------- * WebGUI now requires Locales 0.10 or higher, to replace the deprecated diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index d42e63559..aec59e678 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -60,7 +60,7 @@ if ($] >= 5.008) { ##Doing this as a global is not nice, but it works my $missingModule = 0; -checkModule("LWP", 5.824 ); +checkModule("LWP", 5.833 ); checkModule("HTTP::Request", 1.40 ); checkModule("HTTP::Headers", 1.61 ); checkModule("Test::More", 0.61, 2 );