Next | Query returned 25 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2015-01-07 01:50:40 by OBATA Akio | Files touched by this commit (1)
Log message:
Use valid ruby version suffix variable.
   2014-12-30 08:57:38 by OBATA Akio | Files touched by this commit (4)
Log message:
Revive www/ruby-httpclient, required by net/mikutter.
   2013-08-01 14:59:33 by OBATA Akio | Files touched by this commit (2)
Log message:
Update ruby-httpclient to 2.3.4.1.

2.3.4.1:
* Respect 1.8.7
* Remove a test accessing non-existing-host

2.3.4:
* Make sure to read socket in BINARY buffer
   2013-02-24 14:39:53 by OBATA Akio | Files touched by this commit (2)
Log message:
Update ruby-httpclient to 2.3.3.

= Changes in 2.3.3 =

  February 24, 2013 - version 2.3.3

  * Changes

    * #144 Add User-Agent field by default. You can remove the header by
      setting nil to HTTPClient#agent_name.
   2012-10-28 07:31:10 by Aleksej Saushev | Files touched by this commit (600)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-08-19 09:54:11 by OBATA Akio | Files touched by this commit (3)
Log message:
Update ruby-httpclient to 2.2.7.

== Changes

= Changes in 2.2.7 =

  August 14, 2012 - version 2.2.7

    * Bug fixes

      * Fix arity incompatibility introduced in 2.2.6.  It broke Webmock.
	Thanks Andrew France for the report!

= Changes in 2.2.6 =

  August 14, 2012 - version 2.2.6

    * Bug fixes

      * Make get_content doesn't raise a BadResponseError for perfectly good
	responses like 304 Not Modified. Thanks to Florian Hars.

      * Add 'Content-Type: application/x-www-form-urlencoded' for the PUT
	request that has urlencoded entity-body.

    * Features

      * Add HTTPClient::IncludeClient by Jonathan Rochkind, a mix-in for easily
	adding a thread-safe lazily initialized class-level HTTPClient object
	to your class.

      * Proxy DigestAuth support. Thanks to Alexander Kotov and Florian Hars.

      * Accept an array of strings (and IO-likes) as a query value
	e.g. `{ x: 'a', y: [1,2,3] }` is encoded into \ 
`"x=a&y=1&y=2&y=3"`.
	Thanks to Akinori MUSHA.

      * Allow body for DELETE method.

      * Allow :follow_redirect => true for HEAD request.

      * Fill request parameters request_method, request_uri and request_query
	as part of response Message::Header.
   2012-05-07 02:20:47 by OBATA Akio | Files touched by this commit (3)
Log message:
Update ruby-httpclient to 2.2.5.

= Changes in 2.2.5 =

  May 06, 2012 - version 2.2.5

    * Bug fixes

      * Added Magic encoding comment to hexdump.rb to avoid encoding error.
      * Add workaround for JRuby issue on Windows (JRUBY-6136)
	On Windows, calling File#size fails with an Unknown error (20047).
	This workaround uses File#lstat instead.
      * Require open-uri only on ruby 1.9, since it is not needed on 1.8.

    * Features

      * Allow symbol Header name for HTTP request.
      * Dump more SSL certificate information under $DEBUG.
      * Add HTTPClient::SSLConfig#ssl_version property.
      * Add 'Accept: */*' header to request by default. Rails requies it.
	It doesn't override given Accept header from API.
      * Add HTTPClient::SSLConfig#set_default_paths. This method makes
	HTTPClient instance to use OpenSSL's default trusted CA certificates.
      * Allow to set Date header manually.
	ex. clent.get(uri, :header => {'Date' => Time.now.httpdate})
   2011-12-08 13:08:05 by OBATA Akio | Files touched by this commit (2)
Log message:
Update ruby-httpclient to 2.2.4.

= Changes in 2.2.4 =
  Dec 08, 2011 - version 2.2.4
    * Bug fixes
      * Do not recycle buffer String object for yielding.  When the response is
        not chunked and the size of the response > 16KB, API with block style
        yields recycled String object for each yields.
      * Set VERSION string in User-Agent header.  $Id$ didn't work long time...
      Bugs are reported by Seamus Abshere. Thanks!
   2011-10-29 04:18:17 by OBATA Akio | Files touched by this commit (2)
Log message:
Update ruby-httpclient to 2.2.3.

= Changes in 2.2.3 =
  Oct 28, 2011 - version 2.2.3
    * Bug fixes
      * Ruby 1.8.6 support.  It's broken from 2.2.0.
   2011-10-17 03:43:57 by OBATA Akio | Files touched by this commit (3)
Log message:
Update ruby-httpclient to 2.2.2.
While here, install document again.

== Changes

= Changes in 2.2.2 =

  Oct 17, 2011 - version 2.2.2

    * Bug fixes

      * Do not sort query params on request: Wrongly sorted query params for
        easier debugging but the order of request parameter should be
        preserved. #65

    * Changes

      * Set responce String encoding if possible.  Parse content-type response
        header with some helps from OpenURI::Meta and set response String
        encoding. #26

      * Improve connection cache strategy.  Reuse cached session in MRU order,
        not in LRU.  MRU is more server friendly than LRU because it reduces
        number of cached sessions when a number of requests drops after an
        usaage spike.

        With reusing sessions in LRU order, all sessions are equally checked if
        it's closed or not, as far as there's a request to the same site.  With
        reusing sessions in MRU order, old cold sessions are kept in cache long
        time even if there's a request to the same site.  To avoid this leakage,
        this version adds keep_alive_timeout property and let SessionManager
        scrub all sessions with checking the timeout for each session.  When the
        session expires against the last used time, it's closed and collected.

        keep_alive_timeout is 15[sec] by default. The value is from the default
        value for KeepAliveTimeout of Apache httpd 2.  #68 #69

Next | Query returned 25 messages, browsing 11 to 20 | Previous