forked from pool/perl-HTTP-Tiny
update
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTTP-Tiny?expand=0&rev=12
This commit is contained in:
committed by
Git OBS Bridge
parent
74af6e285f
commit
94ccd851ba
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22e559dee68173e2e07158e958d884dfc4cc7618aeea5b9c440e9b3e380778e1
|
||||
size 51179
|
3
HTTP-Tiny-0.043.tar.gz
Normal file
3
HTTP-Tiny-0.043.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4088faa3a70fef248588272197a25efda0aa4c6ea68ea32a9edff2918e0f28da
|
||||
size 58982
|
@@ -1,3 +1,66 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 7 09:29:12 UTC 2014 - coolo@suse.com
|
||||
|
||||
- updated to 0.043
|
||||
[FIXED]
|
||||
|
||||
- Does not send absolute request URI when tunneling SSL via proxy
|
||||
|
||||
- Fixes regression in setting host name to verify SSL
|
||||
|
||||
- Protects tests from https_proxy and all_proxy when doing mock testing
|
||||
|
||||
0.042 2014-02-18 11:23:17EST-0500 America/New_York
|
||||
|
||||
[ADDED]
|
||||
|
||||
- If IO::Socket::IP 0.25+ is installed, HTTP::Tiny will use it for
|
||||
transparent IPv4 or IPv6 support.
|
||||
|
||||
0.041 2014-02-17 13:07:54-05:00 America/New_York
|
||||
|
||||
[no code change, only an amended Changes file]
|
||||
|
||||
[INCOMPATIBLE CHANGES (from 0.039)]
|
||||
|
||||
- The 'proxy' attribute no longer takes precedence over the
|
||||
'http_proxy' environment variable. With the addition of http_proxy
|
||||
and https_proxy attributes (and corresponding environment variable
|
||||
defaults), the legacy 'proxy' attribute now maps to the
|
||||
all_proxy/ALL_PROXY environment variable and only takes effect when
|
||||
other proxy attributes are not defined.
|
||||
|
||||
[ADDED (since 0.039)]
|
||||
|
||||
- Added 'keep_alive' attribute for single-server persistent connections
|
||||
(Clinton Gormley)
|
||||
|
||||
- Added support for Basic authorization with proxies
|
||||
|
||||
- Added support for https proxies via CONNECT
|
||||
|
||||
[FIXED (since 0.039)]
|
||||
|
||||
- Requests are made with one less write for lower latency (Martin
|
||||
Evans)
|
||||
|
||||
0.040 2014-02-17 13:02:47-05:00 America/New_York
|
||||
|
||||
[INCOMPATIBLE CHANGES]
|
||||
|
||||
- The 'proxy' attribute no longer takes precedence over the
|
||||
'http_proxy' environment variable. With the addition of http_proxy
|
||||
and https_proxy attributes (and corresponding environment variable
|
||||
defaults), the legacy 'proxy' attribute now maps to the
|
||||
all_proxy/ALL_PROXY environment variable and only takes effect when
|
||||
other proxy attributes are not defined.
|
||||
|
||||
[ADDED]
|
||||
|
||||
- Added support for Basic authorization with proxies
|
||||
|
||||
- Added support for https proxies via CONNECT
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 29 11:08:21 UTC 2013 - coolo@suse.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-HTTP-Tiny
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: perl-HTTP-Tiny
|
||||
Version: 0.039
|
||||
Version: 0.043
|
||||
Release: 0
|
||||
%define cpan_name HTTP-Tiny
|
||||
Summary: A small, simple, correct HTTP/1.1 client
|
||||
@@ -31,30 +31,26 @@ BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(IPC::Cmd)
|
||||
BuildRequires: perl(Test::More) >= 0.96
|
||||
#BuildRequires: perl(HTTP::Tiny)
|
||||
#BuildRequires: perl(IO::Socket::SSL) >= 1.42
|
||||
#BuildRequires: perl(Mozilla::CA)
|
||||
#BuildRequires: perl(Net::SSLeay) >= 1.49
|
||||
#BuildRequires: perl(Pod::Wordlist)
|
||||
#BuildRequires: perl(t::BrokenCookieJar)
|
||||
#BuildRequires: perl(Test::Spelling) >= 0.12
|
||||
#BuildRequires: perl(t::SimpleCookieJar)
|
||||
#BuildRequires: perl(t::Util)
|
||||
#BuildRequires: perl(URI::Escape)
|
||||
BuildRequires: perl(version)
|
||||
Recommends: perl(HTTP::CookieJar) >= 0.001
|
||||
Recommends: perl(IO::Socket::IP) >= 0.25
|
||||
Recommends: perl(IO::Socket::SSL) >= 1.42
|
||||
Recommends: perl(Mozilla::CA) >= 20120823
|
||||
Recommends: perl(Net::SSLeay) >= 1.49
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
This is a very simple HTTP/1.1 client, designed for doing simple GET
|
||||
requests without the overhead of a large framework like the LWP::UserAgent
|
||||
manpage.
|
||||
This is a very simple HTTP/1.1 client, designed for doing simple requests
|
||||
without the overhead of a large framework like the LWP::UserAgent manpage.
|
||||
|
||||
It is more correct and more complete than the HTTP::Lite manpage. It
|
||||
supports proxies (currently only non-authenticating ones) and redirection.
|
||||
It also correctly resumes after EINTR.
|
||||
supports proxies and redirection. It also correctly resumes after EINTR.
|
||||
|
||||
If the IO::Socket::IP manpage 0.25 or later is installed, HTTP::Tiny will
|
||||
use it instead of the IO::Socket::INET manpage for transparent support for
|
||||
both IPv4 and IPv6.
|
||||
|
||||
Cookie support requires the HTTP::CookieJar manpage or an equivalent class.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
Reference in New Issue
Block a user