- update to 4000.2.20

* If the URI contains "user:pass@" part, use it for Basic Authorization
* Add a test harness.
* Don't leak a socket when getHostAddr throws an exception.
* Send cookies in request format, not response format.
* Moved BrowserAction to be a StateT IO, with instances for
   Applicative, MonadIO, MonadState.
* Add method to control size of connection pool.
* Consider both host and port when reusing connections.
* Handle response code 304 "not modified" properly.
* Fix digest authentication by fixing md5 output string rep.
* Make the default user agent string follow the package version.
* Document lack of HTTPS support and fail when clients try
   to use it instead of silently falling back to HTTP.
* Add helper to set the request type and body.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-HTTP?expand=0&rev=15
This commit is contained in:
Ondřej Súkup 2015-06-28 16:17:22 +00:00 committed by Git OBS Bridge
parent 832adf9f73
commit 85cc643bb4
5 changed files with 23 additions and 7 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ffb97b7a916a70e742d65273e4c7c7b50b281797db11e17e7e02158e343f5fb
size 71287

3
HTTP-4000.2.20.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4407cc863699720d179b36257baf21b5f1df4be8c30545dcec4d685a726fd85b
size 71475

View File

@ -1,3 +0,0 @@
<services>
<service name="download_files" mode="localonly"/></services>

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Sun Jun 28 16:15:52 UTC 2015 - mimi.vx@gmail.com
- update to 4000.2.20
* If the URI contains "user:pass@" part, use it for Basic Authorization
* Add a test harness.
* Don't leak a socket when getHostAddr throws an exception.
* Send cookies in request format, not response format.
* Moved BrowserAction to be a StateT IO, with instances for
Applicative, MonadIO, MonadState.
* Add method to control size of connection pool.
* Consider both host and port when reusing connections.
* Handle response code 304 "not modified" properly.
* Fix digest authentication by fixing md5 output string rep.
* Make the default user agent string follow the package version.
* Document lack of HTTPS support and fail when clients try
to use it instead of silently falling back to HTTP.
* Add helper to set the request type and body.
-------------------------------------------------------------------
Sat Apr 11 20:34:01 UTC 2015 - mimi.vx@gmail.com

View File

@ -19,7 +19,7 @@
%global pkg_name HTTP
Name: ghc-HTTP
Version: 4000.2.19
Version: 4000.2.20
Release: 0
Summary: A library for client-side HTTP
License: BSD-3-Clause