[libplack-perl] branch master updated (8930ad6 -> ba27a14)

gregor herrmann gregoa at debian.org
Fri Jun 12 18:11:58 UTC 2015


This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libplack-perl.

      from  8930ad6   releasing package libplack-perl version 1.0033-1
      adds  86ec1d5   document that param() isn't recommended for a newly written code
      adds  8b26f3e   Make return of response_cb explicit rather than implicit.
      adds  e82b801   Merge pull request #479 from oalders/master
      adds  bd7d58d   Typo fix in Changes
      adds  0f46dbb   Merge pull request #480 from autarch/patch-1
      adds  0973d0e   Fix pod formatting
      adds  79b2dc8   Merge pull request #482 from frioux/patch-2
      adds  2654ec0   take advantage of faster travis infrastructure
      adds  dc92f5c   Merge pull request #485 from frioux/faster-travis
      adds  bff8cb4   Correctly avoid warnings in Plack::App:::WrapCGI
      adds  58be250   Merge pull request #484 from frioux/patch-3
      adds  8b05eeb   refactor filehandle reader
      adds  454dad3   Update to Plack::Middleware::StackTrace docs
      adds  4b29991   Merge pull request #491 from timbunce/patch-1
      adds  f1bed41   change the wording to use handlers rather than servers. #492
      adds  264fac4   deny three-dots (or more) to work around Windows bug.
      adds  f8052d1   1.0034
      adds  0eafc45   Document the intended behaviour of running FCGI in a single-process by specifying undef as manager param.
      adds  db4148f   Merge pull request #494 from otrosien/feature/allowFcgiNonFork
      adds  a638bcd   split Plack::Util::header_* tests into one .t each
      adds  6dbe592   make Plack::Util::header_* less undertested
      adds  7d6898c   Merge pull request #498 from ap/header-utils-tests
      adds  3e96620   remove Test::Difference
      adds  0308be0   optimise header_exists
      adds  e1aead7   optimise header_remove
      adds  9f9f592   optimise header_set
      adds  5cc1cca   optimise header_get
      adds  0f65be8   Merge pull request #495 from ap/faster-header-utils
      adds  7db582b   use HTTP::Headers::Fast
      adds  8c2209f   Merge pull request #496 from plack/http-headers-fast
      adds  3789912   Revert "use HTTP::Headers::Fast"
      adds  63ebb8a   Merge pull request #499 from plack/revert-496-http-headers-fast
      adds  9023699   use HTTP::Headers::Fast
      adds  406b813   fix parsing of empty query string pairs
      adds  360b46e   Merge pull request #500 from ap/fix-empty-querystring-pairs
      adds  0f3309a   eliminate coverage
      adds  b89569c   fix parsing of empty query string pairs better
      adds  8784748   Merge pull request #501 from ap/fix-empty-querystring-pairs-better
      adds  4ed90d0   stop warnings
      adds  6e92263   resize JPG
      adds  11d9c1b   fix the brittle tests :/
      adds  f297b50   Add .webm to Plack::MIME as 'video/webm'
      adds  9695b6b   Merge pull request #503 from marlencrabapple/webm-mime
      adds  11f1c83   FIX documentation from plack-request
      adds  550cbb3   Merge pull request #505 from netp/hotfix-docs-plack-request
      adds  1c5f8be   Use Cookie::Baker to bake cookies in Plack::Response.
      adds  b4f4a86   Merge pull request #507 from oalders/cookie-baker
      adds  314b83e   1.0035
      adds  d896dc7   do not use CGI module. Fix #509
      adds  69318e4   1.0036
      adds  02c6e7e   Imported Upstream version 1.0036
       new  8c0bcb7   Merge tag 'upstream/1.0036'
       new  26ab349   Update debian/changelog
       new  6549c7f   Add new (build) dependencies.
       new  80f020a   Update years of packaging copyright.
       new  ba27a14   update changelog

The 5 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                                |  26 ++++++-
 MANIFEST                               |   8 +-
 META.json                              |  53 +++++++------
 META.yml                               |  49 ++++++------
 Makefile.PL                            |  11 +--
 README                                 | 134 +++++++++++++++++++--------------
 cpanfile                               |   2 +
 debian/changelog                       |  10 +++
 debian/control                         |   4 +
 debian/copyright                       |   2 +-
 lib/Plack.pm                           |   2 +-
 lib/Plack/App/File.pm                  |   2 +-
 lib/Plack/App/WrapCGI.pm               |  17 +++--
 lib/Plack/Handler/FCGI.pm              |   3 +-
 lib/Plack/MIME.pm                      |   1 +
 lib/Plack/Middleware.pm                |  17 +++--
 lib/Plack/Middleware/StackTrace.pm     |  25 +++++-
 lib/Plack/Request.pm                   |  32 +++++---
 lib/Plack/Response.pm                  |  58 +++-----------
 lib/Plack/Test/Suite.pm                |   8 +-
 lib/Plack/Util.pm                      |  92 +++++++++++++++-------
 script/plackup                         |   2 +-
 share/baybridge.jpg                    | Bin 79838 -> 14750 bytes
 share/face.jpg                         | Bin 4745 -> 2898 bytes
 t/Plack-Middleware/cgi-bin/cgi_dir.cgi |   4 +-
 t/Plack-Middleware/content_length.t    |   2 +-
 t/Plack-Request/params.t               |   2 +
 t/Plack-Response/cookie.t              |   2 +
 t/Plack-Util/header_exists.t           |  40 ++++++++++
 t/Plack-Util/header_get.t              |  30 ++++++++
 t/Plack-Util/header_push.t             |  23 ++++++
 t/Plack-Util/header_remove.t           |  47 ++++++++++++
 t/Plack-Util/header_set.t              |  35 +++++++++
 t/Plack-Util/headers.t                 |  63 ----------------
 34 files changed, 522 insertions(+), 284 deletions(-)
 create mode 100644 t/Plack-Util/header_exists.t
 create mode 100644 t/Plack-Util/header_get.t
 create mode 100644 t/Plack-Util/header_push.t
 create mode 100644 t/Plack-Util/header_remove.t
 create mode 100644 t/Plack-Util/header_set.t
 delete mode 100644 t/Plack-Util/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