Bump requirement on LWP to fix a MIME type issue with LWP::MediaTypes. Fixes bug #11254

This commit is contained in:
Colin Kuskie 2009-11-20 14:19:02 -08:00
parent 17297f4fe6
commit c0fea48a28
3 changed files with 6 additions and 1 deletions

View file

@ -5,6 +5,7 @@
- fixed #11200: Navigation in AssetProxy cached in browser - fixed #11200: Navigation in AssetProxy cached in browser
- fixed #11143: cancel button - fixed #11143: cancel button
- fixed #11259: Snippet content never cached - fixed #11259: Snippet content never cached
- fixed #11254: RTF files are streamed with the wrong content-type
7.8.5 7.8.5
- added the EMS submission subsystem - added the EMS submission subsystem

View file

@ -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 versions. Be sure to heed the warnings contained herein as they will
save you many hours of grief. 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 7.8.5
-------------------------------------------------------------------- --------------------------------------------------------------------
* WebGUI now requires Locales 0.10 or higher, to replace the deprecated * WebGUI now requires Locales 0.10 or higher, to replace the deprecated

View file

@ -60,7 +60,7 @@ if ($] >= 5.008) {
##Doing this as a global is not nice, but it works ##Doing this as a global is not nice, but it works
my $missingModule = 0; my $missingModule = 0;
checkModule("LWP", 5.824 ); checkModule("LWP", 5.833 );
checkModule("HTTP::Request", 1.40 ); checkModule("HTTP::Request", 1.40 );
checkModule("HTTP::Headers", 1.61 ); checkModule("HTTP::Headers", 1.61 );
checkModule("Test::More", 0.61, 2 ); checkModule("Test::More", 0.61, 2 );