Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.16, fixing unicode problems #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@ Revision history for Perl module Net::UPS

{{$NEXT}}

0.16 2015-06-27
* thanks to KENTNL for opening RT #105214 and helping me find the
culprit of the encoding problems: XML::SAX::PurePerl requires
character strings in input
* removed encoding test

0.15 2015-02-24
* always 'use' IO::Socket::SSL (prevents errors relating to the
Net::SSLeay::OP_NO_* constants)
* add test to figure out encoding problems

0.14 2015-02-03
* allow setting custom SSL options and custom user agent
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Task::Weaken = 0

[ManifestSkip]

[NoTabsTests]
[Test::NoTabs]

;[PodCoverageTests]

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/UPS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ sub post {
if ( $response->is_error ) {
die $response->status_line();
}
return $response->content;
return $response->decoded_content;
}


Expand Down
2 changes: 1 addition & 1 deletion t/lib/Test/Net/UPS/NoNetwork.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sub prepare_test_from_file {
my ($self,$file,$comment) = @_;

my ($req_line,$request,$response) = do {
open my $fh,'<',$file;
open my $fh,'<:utf8',$file;
local $/="";
<$fh>;
};
Expand Down
31 changes: 0 additions & 31 deletions t/xml-parsers-check.t

This file was deleted.