==================================
2009-07-28T06:25:31.783332Z v0_890
==================================

  2009-07-28 06:21:07 (r369) by rcaputo; Makefile.PL M

    Use the latest POE::Component::Client::Keepalive, too.

  2009-07-28 06:20:01 (r368) by rcaputo
  lib/POE/Component/Client/HTTP.pm M; Makefile.PL M

    Use latest POE, and prepare for a new release.

  2009-07-27 04:53:43 (r367) by rcaputo
  lib/POE/Component/Client/HTTP.pm M; Makefile.PL M

    Added a machine-readable repository directory to the distribution.
    Documented the bug tracker, repository, and other resource URLs. 

  2009-07-26 23:03:04 (r366) by rcaputo; t/59_incomplete_b.t A

    Forgot to add this test in the last commit.

  2009-07-26 23:01:30 (r365) by rcaputo
  t/01_request.t M; t/01_stream.t M; t/10_shutdown.t M;
  lib/POE/Component/Client/HTTP.pm M; t/08_discard.t M; MANIFEST M;
  t/55_reiss_double_resp.t M; lib/POE/Filter/HTTPHead.pm M;
  lib/POE/Component/Client/HTTP/Request.pm M; t/02_keepalive.t M

    Resolve a long-standing debate between MaxSize and Content-Length
    headers. If the Content-Length is greater than MaxSize, or the length
    of the content is (in the case where there is no Content-Length
    header), then we return a 406 Not Acceptable error rather than
    truncated data.
    
    Users who want truncated data should issue range requests instead of
    relying upon MaxSize. Besides, MaxSize won't let you resume your
    request where it left off.
    
    Resolves rt.cpan.org ticket 26874. 

  2009-07-26 17:33:10 (r364) by rcaputo
  lib/POE/Component/Client/HTTP/Request.pm M

    Internal component errors are sometimes indistinguishable from
    external server errors. Add a bit of text to differentiate them. 

  2009-03-07 15:47:52 (r363) by martijn; t/01_request.t M

    apply patch from Apocalypse to make invalid host test more robust 

=================================
2009-02-19T07:14:44.152645Z v0_88
=================================

  2009-02-19 07:14:19 (r361) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Time for a new release.

  2009-02-19 07:09:22 (r360) by rcaputo
  lib/POE/Component/Client/HTTP/RequestFactory.pm M;
  t/57_pravus_progress.t A; MANIFEST M

    Add PRAVUS' test case and patch to return progress events even after
    a redirect. Resolves his rt.cpan.org ticket, #36627. 

  2009-02-19 05:20:37 (r359) by rcaputo
  lib/POE/Component/Client/HTTP/Request.pm M

    Comment the RS_* states.

  2009-02-19 04:00:21 (r358) by rcaputo; t/01_request.t M

    Resolve rt.cpan.org #41278, reported by Andreas J. Knig. The
    component test was timing out on his smoker, so I increased the
    timeout. 

  2009-02-18 17:43:15 (r357) by rcaputo
  lib/POE/Component/Client/HTTP/RequestFactory.pm M;
  lib/POE/Component/Client/HTTP.pm M

    Resolve rt.cpan.org #35951, reported by Dave Miller. We were passing
    Tag to POE::Component::Client::Request->new() when it wasn't
    necessary. 

  2009-02-18 17:36:32 (r356) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Resolve rt.cpan.org ticket #27643. When a server disconnects before
    responding, POE::Component::Client::HTTP returns a 406 error to the
    application. The "MaxSize" error was incorrect and has been replaced
    with "Server response is Not Acceptable". The surrounding logic has
    been simplified somewhat as well. 

  2009-02-18 07:29:34 (r355) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Clarify the docs per Evan Carroll's suggestion. Resolves rt.cpan.org
    ticket 41312. 

  2009-02-18 06:19:51 (r354) by rcaputo
  t/10_shutdown.t M; lib/POE/Filter/HTTPChunk.pm M; t/04_chunk_filter.t
  M; t/02_keepalive.t M; t/11_cancel.t M

    Clean up several warnings introduced by recent POE changes.
    
    Apply Zhurs' patch to resolve rt.cpan.org tickets 43073 and 25855.
    POE::Filter::HTTPChunk would go into an infinite loop on bad chunk
    trailer data, but now it appears to be fixed. Thank you! 

  2009-01-06 03:11:42 (r353) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Doc fix. Client::DNS is used by Client::Keepalive and is currently
    not optional.

=================================
2008-12-09T06:22:46.753700Z v0_87
=================================

  2008-12-09 06:17:03 (r351) by rcaputo
  lib/POE/Component/Client/HTTP.pm M; Makefile.PL M

    Time for a new release. Bump the version and fix dependencies.

  2008-12-09 06:10:50 (r350) by rcaputo; t/11_cancel.t M

    Switch a post() to call() to avoid dispatch timing errors that caused
    some machines to fail this test. I think it's the test's fault for
    being intolerant, and I'm not entirely sure the fix will work
    everywhere. 

  2008-12-09 05:44:46 (r349) by rcaputo; t/01_request.t M

    Fix a spurious test failure. Not all systems implement (or even
    enable) Nagle's algorithm the same way. This change makes
    t/01_request.t not as susceptible to packet transmission timing.
    Previously the test would fail of packets were combined (but succeed
    if, like on my development system, they were sent separately). 

  2008-12-09 05:29:27 (r348) by rcaputo
  lib/POE/Component/Client/HTTP/RequestFactory.pm M

    Don't set a content length if the content is a reference. The content
    length would be the reference's stringified length rather than the
    length of any actual content. In the case of CODE references, content
    will be generated in chunks anyway. 

  2008-12-08 07:54:03 (r347) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Clean up the leaky ext_request_to_int_id in more places. Apocalypse
    suggested using the requesting HTTP::Request reference directly as
    the internal ID rather than mapping it. That bears some
    investigation. 

  2008-12-08 07:36:19 (r346) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    New version. RequestFactory doesn not like underscores in version
    numbers.

  2008-12-08 07:27:14 (r345) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Internal development release. 

  2008-12-08 07:23:22 (r344) by rcaputo
  t/01_stream.t M; lib/POE/Component/Client/HTTP.pm M;
  lib/POE/Component/Client/HTTP/Request.pm M

    Move data cleanup for request_to_id outside wheel check blocks. The
    ID being cleaned up isn't a wheel's ID. Also renamed the data member
    for future clarity, as well as REQ_REQUEST (related). 

=================================
2008-11-24T22:39:07.052333Z v0_86
=================================

  2008-11-24 22:37:57 (r342) by rcaputo; t/01_stream.t M

    Remove an errant warn in one of the test cases.

  2008-11-24 22:32:18 (r341) by rcaputo
  lib/POE/Component/Client/HTTP.pm M; t/53_response_parser.t M;
  Makefile.PL M

    Bump the version, depend on the latest Client::Keepalive, and fix a
    bit of tab damage. 

  2008-11-21 17:56:00 (r340) by rcaputo; t/01_ssl.t M

    Fix a test error... sourceforge returns a 302 now, not the 200 that
    we expected.

  2008-11-21 08:26:19 (r339) by rcaputo; t/03_head_filter.t M

    Don't use == to test for undef. 

  2008-11-21 08:10:14 (r338) by rcaputo; t/01_request.t M

    Fix an unexpected response triggered by the coderef content feature.
    Two separate packets were sent without coalescing. I have a feeling
    my "fix" isn't going to be good enough in all cases though... some
    systems may coalesce those put()s. 

  2008-10-15 05:44:51 (r337) by rcaputo
  lib/POE/Component/Client/HTTP.pm M

    Apply doc patches, resolving rt.cpan.org #38176. 

  2008-09-03 17:54:09 (r336) by martijn
  t/01_request.t M; t/01_stream.t A; t/10_shutdown.t M;
  t/50_davis_zerolength.t M; t/59_andy_one_keepalive.t D; t/01_ssl.t A;
  MANIFEST M; t/54_hzheng_head_redir.t M; t/09_bad_scheme.t D;
  Makefile.PL M; t/57_joel_immed_cancel.t D; t/58_joel_cancel_multi.t M;
  lib/POE/Component/Client/HTTP/Request.pm M; t/02_keepalive.t M;
  t/11_cancel.t M

    Merge branch 'localtests'
    
    fix merge problems by deleting t/57_joel_immed_cancel.t since my new
    version of t/58_joel_cancel_multi.t does everything it does and more
    and by updating t/58_joel_cancel_multi.t to my version because the
    changes in trunk were assuming the non-local tests. 

==============
End of Excerpt
==============
