forked from pool/perl-HTTP-Tiny
Accepting request 249344 from devel:languages:perl
- updated to 0.049
[FIXED]
- 'keep_alive' is now fork-safe and thread-safe
0.048 2014-08-21 13:19:51-04:00 America/New_York
[FIXED]
- Protected proxy tests from ALL_PROXY in the environment
0.047 2014-07-29 14:09:05-04:00 America/New_York
[CHANGED]
- Updated Mozilla::CA module recommendation version to 20130114
[FIXED]
- Fixed t/00-report-prereqs.t when CPAN::Meta is not installed
0.046 2014-07-21 10:32:32-04:00 America/New_York
[FIXED]
- Empty header fields are now allowed; headers with the 'undef' value
will be rendered as an empty header.
[DOCUMENTED]
OBS-URL: https://build.opensuse.org/request/show/249344
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-HTTP-Tiny?expand=0&rev=6
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4088faa3a70fef248588272197a25efda0aa4c6ea68ea32a9edff2918e0f28da
|
|
||||||
size 58982
|
|
||||||
3
HTTP-Tiny-0.049.tar.gz
Normal file
3
HTTP-Tiny-0.049.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8ff14c85842eef11f52d4e2d981f7cbc3262ab359bce423f12ebd9cfcfdcb1b2
|
||||||
|
size 61306
|
||||||
@@ -1,3 +1,57 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 15 15:15:13 UTC 2014 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.049
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- 'keep_alive' is now fork-safe and thread-safe
|
||||||
|
|
||||||
|
0.048 2014-08-21 13:19:51-04:00 America/New_York
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Protected proxy tests from ALL_PROXY in the environment
|
||||||
|
|
||||||
|
0.047 2014-07-29 14:09:05-04:00 America/New_York
|
||||||
|
|
||||||
|
[CHANGED]
|
||||||
|
|
||||||
|
- Updated Mozilla::CA module recommendation version to 20130114
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Fixed t/00-report-prereqs.t when CPAN::Meta is not installed
|
||||||
|
|
||||||
|
0.046 2014-07-21 10:32:32-04:00 America/New_York
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Empty header fields are now allowed; headers with the 'undef' value
|
||||||
|
will be rendered as an empty header.
|
||||||
|
|
||||||
|
[DOCUMENTED]
|
||||||
|
|
||||||
|
- Updated HTTP/1.1 spec description from RFC 2616 to RFC 7230-7235
|
||||||
|
|
||||||
|
0.045 2014-07-19 23:17:28-04:00 America/New_York (TRIAL RELEASE)
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Fixed t/002_croakage.t for various operating systems.
|
||||||
|
|
||||||
|
0.044 2014-07-16 23:46:09-04:00 America/New_York
|
||||||
|
|
||||||
|
[CHANGED]
|
||||||
|
|
||||||
|
- Providing a custom 'Host' header is now a fatal exception. Previously, it
|
||||||
|
was silently ignored, as the RFC mandates that Host be set from the
|
||||||
|
URL, but ignoring it could lead to unexpected, confusing errors.
|
||||||
|
|
||||||
|
- optimized URL splitting
|
||||||
|
|
||||||
|
- Passing 'undef' for any proxy attribute will prevent HTTP::Tiny from
|
||||||
|
setting the proxy from the environment.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 7 09:29:12 UTC 2014 - coolo@suse.com
|
Fri Mar 7 09:29:12 UTC 2014 - coolo@suse.com
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-HTTP-Tiny
|
Name: perl-HTTP-Tiny
|
||||||
Version: 0.043
|
Version: 0.049
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name HTTP-Tiny
|
%define cpan_name HTTP-Tiny
|
||||||
Summary: A small, simple, correct HTTP/1.1 client
|
Summary: A small, simple, correct HTTP/1.1 client
|
||||||
@@ -31,11 +31,10 @@ BuildRequires: perl
|
|||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(IPC::Cmd)
|
BuildRequires: perl(IPC::Cmd)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
BuildRequires: perl(version)
|
|
||||||
Recommends: perl(HTTP::CookieJar) >= 0.001
|
Recommends: perl(HTTP::CookieJar) >= 0.001
|
||||||
Recommends: perl(IO::Socket::IP) >= 0.25
|
Recommends: perl(IO::Socket::IP) >= 0.25
|
||||||
Recommends: perl(IO::Socket::SSL) >= 1.42
|
Recommends: perl(IO::Socket::SSL) >= 1.42
|
||||||
Recommends: perl(Mozilla::CA) >= 20120823
|
Recommends: perl(Mozilla::CA) >= 20130114
|
||||||
Recommends: perl(Net::SSLeay) >= 1.49
|
Recommends: perl(Net::SSLeay) >= 1.49
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user