[libplack-perl] branch master updated (364b973 -> 0272aea)
gregor herrmann
gregoa at debian.org
Sat Oct 22 21:57:50 UTC 2016
This is an automated email from the git hooks/post-receive script.
gregoa pushed a change to branch master
in repository libplack-perl.
from 364b973 update changelog
adds db1e817 replace HTTP::Body with HTTP::Entity::Parser
adds 56c0d6a set HTTP::Entitiy::Parser buffer length via an environment variable. related HTTP-Entity-Parser/issues/3
adds f4db581 requries HTTP::Entity::Parser 0.16. improve Content-Disposition header parser
adds 81e1ce6 requries HTTP::Entity::Parser 0.17 and WWW::Form::UrlEncoded 0.23.
adds 6238723 Merge pull request #538 from kazeburo/use-http-entity-parser
adds 06bd1f6 Increased the request buffer to 64k for unbuffered, 1MB for buffered inputs
adds ff8a495 Merge branch 'header-hotfix'
adds c655adc Add a test for HTTP::Headers compatibility
adds aeaaf4a Allow PSGI apps to be blessed coderefs, etc.
adds 4189922 Merge pull request #542 from smcmurray/blessed_app
adds d1a1c24 Suggest CGI::PSGI or CGI::Emulate::PSGI
adds 86256c2 Allow log4perl.t and log4perl-category.t to run in parallel
adds aec4b65 Merge pull request #545 from rsimoes/master
adds fb67166 add URL
adds 2137d63 white space issue causes failing test if run
adds a70d162 extra S, thanks Miyagawa
adds 2419ca2 Merge pull request #547 from notbenh/doc-fix-plack-test
adds d03ab21 Test Plack::Middleware::AccessLog::Timed properly records taken_sec
adds dac6609 Pass microseconds order `time` to logger so that `%D` will be recorded properly
adds fc5a501 %T is not floating but integer
adds cc7a634 Bump Apache::LogFormat::Compiler to 0.33 so that Plack::Middleware::AccessLog::Timed can record `%T` properly
adds d6aedbe clear log before 2nd test
adds 35e39ab bump Test::MockTime::HiRes so that perl 5.8 can run tests
adds 58a20ac kick ci?
adds dc871af Bump once again
adds 90d401f Merge pull request #551 from astj/fix/accesslog_timed_format
adds 8ee156b Add listen_sock option to HTTP::Server::PSGI
adds f9fc3b5 Use test_tcp(listen => 1, ...) in tests
adds 21da44a Merge pull request #550 from ilmari/listen
adds c711407 remove IO::Handle::Util. Fix #553
adds 5e0ac37 add Log::Dispatch. Fix #554
adds cab4a4b Fix deps to move deps that are actually used by modules to runtime.
adds 1717731 1.0040
adds 547d576 run the test in parallel on travis
adds 64c5b2a do not require Test::MockTime::HiRes - sleeping will just work
adds 86ffe65 Document the default value of the FCGI handler's backlog size.
adds 4d39588 Merge pull request #556 from fgabolde/fgabolde/doc-default-value-of-fcgi-backlog
adds 7e1506e doc fix: the http header is called Cookie (singular)
adds 70142e4 Merge pull request #557 from domm/master
adds d48402a add note regarding content-type header
adds f5eb68a Merge pull request #558 from davewood/master
adds 914afe3 More information about wrong headers.
adds d328878 Add tests for information about wrong headers.
adds 24bfb5d Merge pull request #559 from akzhan/patch-1
adds 7933b95 stop relying on . in @INC
adds 5ac6ba6 Merge pull request #563 from haarg/no-dot-inc
adds c845a8f Use Cookie::Baker for parsing cookie
adds a01b808 add tests that was added in #564
adds 9de9c1e Merge pull request #567 from kazeburo/use-cookie-baker-for-parsing-cookie
adds 9fcf43a Correct conditional get logic
adds 75a79b2 Simplified the logic without nested ifs
adds 2235902 cleanup the test
adds 9cd085d Merge pull request #569 from plack/conditionalget-fix
adds b56224a 1.0041
adds be10ee4 Revert "Add listen_sock option to HTTP::Server::PSGI"
adds e9ce8da add Gazelle to the downstream test
adds a2b82be Revert "Use test_tcp(listen => 1, ...) in tests"
adds ba35d46 1.0042
adds 4792903 New upstream version 1.0042
new 835a53b Merge tag 'upstream/1.0042'
new 78421e0 Update debian/changelog
new 8b34e22 Update years of packaging copyright.
new e153bce Add a note about incompatible changes to debian/NEWS.
new 917fae7 Update (build) dependencies.
new 5a87749 Declare compliance with Debian Policy 3.9.8.
new 0272aea update d/changelog, add WAITS-FOR
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
Changes | 33 ++++++
MANIFEST | 6 +-
META.json | 52 ++++++---
META.yml | 22 +++-
Makefile.PL | 18 +--
cpanfile | 17 +--
debian/NEWS | 16 +++
debian/changelog | 12 +-
debian/control | 33 +++---
debian/copyright | 2 +-
lib/Plack.pm | 2 +-
lib/Plack/Handler/FCGI.pm | 2 +-
lib/Plack/MIME.pm | 2 +-
lib/Plack/Middleware/AccessLog/Timed.pm | 10 +-
lib/Plack/Middleware/ConditionalGET.pm | 14 ++-
lib/Plack/Middleware/Lint.pm | 14 +--
lib/Plack/Middleware/XSendfile.pm | 2 +
lib/Plack/Request.pm | 174 ++++++++++++----------------
lib/Plack/Response.pm | 2 +-
lib/Plack/Test.pm | 4 +-
t/{ => Plack-Handler}/FCGIUtils.pm | 2 +-
t/Plack-Handler/fcgi.t | 3 +-
t/Plack-Middleware/access_log_timed.t | 49 ++++++++
t/Plack-Middleware/conditionalget.t | 57 ++++++---
t/Plack-Middleware/lint_wrong_header_info.t | 48 ++++++++
t/Plack-Middleware/log4perl-category.t | 2 +-
t/Plack-Request/cookie.t | 22 +++-
t/Plack-Request/params.t | 2 +-
t/Plack-Response/headers.t | 21 ++++
t/author-pod-syntax.t | 4 +-
xt/author-downstream.t | 2 +-
31 files changed, 444 insertions(+), 205 deletions(-)
rename t/{ => Plack-Handler}/FCGIUtils.pm (99%)
create mode 100644 t/Plack-Middleware/lint_wrong_header_info.t
create mode 100644 t/Plack-Response/headers.t
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libplack-perl.git
More information about the Pkg-perl-cvs-commits
mailing list