[libcatalyst-perl] branch master updated (c88d755 -> 5d5ccd6)

Florian Schlichting fsfs at alioth.debian.org
Thu Aug 8 18:25:48 UTC 2013


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

fsfs pushed a change to branch master
in repository libcatalyst-perl.

      from  c88d755   releasing package libcatalyst-perl version 5.90030-1
      adds  9c6bab5   Imported Upstream version 5.90042
       new  6559648   Merge tag 'upstream/5.90042'
       new  cf0fef8   Imported Upstream version 5.90042
       new  d285e04   update list of upstream copyright holders
       new  263281a   update (build-)dependencies
       new  53fd9bb   Added fix-whatis-entry.patch
       new  5d5ccd6   prepare changelog for release

The 6 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                                            |   49 +++++
 MANIFEST                                           |   21 ++
 META.yml                                           |   12 +-
 Makefile.PL                                        |   15 +-
 debian/changelog                                   |    9 +
 debian/control                                     |    9 +-
 debian/copyright                                   |    2 +-
 debian/patches/fix-whatis-entry.patch              |   14 ++
 debian/patches/series                              |    1 +
 inc/Module/Install/Authority.pm                    |    2 +-
 lib/Catalyst.pm                                    |  100 ++++++++-
 lib/Catalyst/Action.pm                             |    2 +-
 lib/Catalyst/ActionChain.pm                        |    3 +
 lib/Catalyst/Controller.pm                         |    2 +-
 lib/Catalyst/DispatchType/Chained.pm               |   50 +++--
 lib/Catalyst/Engine.pm                             |   12 +-
 lib/Catalyst/Engine/HTTP.pm                        |   23 ++-
 lib/Catalyst/Plugin/Unicode/Encoding.pm            |  215 ++++++++++++++++++++
 lib/Catalyst/Request.pm                            |   41 +++-
 lib/Catalyst/Response.pm                           |   56 ++++-
 lib/Catalyst/Runtime.pm                            |    2 +-
 lib/Catalyst/Upgrading.pod                         |   66 +++++-
 .../live_component_controller_action_chained.t     |   19 ++
 t/aggregate/live_plugin_loaded.t                   |    1 +
 t/aggregate/unit_core_plugin.t                     |    1 +
 t/author/http-server.t                             |    7 +-
 t/author/podcoverage.t                             |    1 +
 t/author/spelling.t                                |    3 +-
 t/author/unicode_plugin_nested_params.t            |   71 +++++++
 t/dead_load_bad_args.t                             |   57 ++++--
 t/encoding_set_in_app.t                            |   15 ++
 t/encoding_set_in_config.t                         |   18 ++
 t/lib/ACLTestApp.pm                                |    3 +
 t/lib/Catalyst/Plugin/Test/Plugin.pm               |    2 +
 t/lib/ChainedActionsApp.pm                         |    3 +
 t/lib/PluginTestApp.pm                             |    3 +-
 t/lib/PluginTestApp/Controller/Root.pm             |    1 +
 t/lib/TestApp.pm                                   |    4 +-
 t/lib/TestApp/Controller/Action/Chained.pm         |    9 +
 t/lib/TestApp/Controller/Root.pm                   |    1 +
 t/lib/TestApp2.pm                                  |   19 ++
 t/lib/TestApp2/Controller/Root.pm                  |   16 ++
 t/lib/TestAppDoubleAutoBug.pm                      |    3 +
 t/lib/TestAppEncodingSetInApp.pm                   |   14 ++
 t/lib/TestAppEncodingSetInApp/Controller/Root.pm   |   15 ++
 t/lib/TestAppEncodingSetInConfig.pm                |   10 +
 .../TestAppEncodingSetInConfig/Controller/Root.pm  |   15 ++
 .../testappencodingsetinconfig.json                |    3 +
 t/lib/TestAppIndexDefault.pm                       |    3 +
 t/lib/TestAppMatchSingleArg.pm                     |    3 +
 t/lib/TestAppOneView.pm                            |    3 +
 t/lib/TestAppUnicode.pm                            |   22 ++
 t/lib/TestAppUnicode/Controller/Root.pm            |   80 ++++++++
 t/lib/TestAppWithoutUnicode.pm                     |   14 ++
 t/lib/TestAppWithoutUnicode/Controller/Root.pm     |   17 ++
 t/lib/TestLogger.pm                                |   23 +++
 t/live_redirect_body.t                             |    2 +-
 t/unicode_plugin_charset_utf8.t                    |   32 +++
 t/unicode_plugin_config.t                          |   31 +++
 t/unicode_plugin_live.t                            |   93 +++++++++
 t/unicode_plugin_no_encoding.t                     |   48 +++++
 t/unicode_plugin_request_decode.t                  |   82 ++++++++
 62 files changed, 1395 insertions(+), 78 deletions(-)
 create mode 100644 debian/patches/fix-whatis-entry.patch
 create mode 100644 debian/patches/series
 create mode 100644 lib/Catalyst/Plugin/Unicode/Encoding.pm
 create mode 100644 t/author/unicode_plugin_nested_params.t
 create mode 100644 t/encoding_set_in_app.t
 create mode 100644 t/encoding_set_in_config.t
 create mode 100644 t/lib/TestApp2.pm
 create mode 100644 t/lib/TestApp2/Controller/Root.pm
 create mode 100644 t/lib/TestAppEncodingSetInApp.pm
 create mode 100644 t/lib/TestAppEncodingSetInApp/Controller/Root.pm
 create mode 100644 t/lib/TestAppEncodingSetInConfig.pm
 create mode 100644 t/lib/TestAppEncodingSetInConfig/Controller/Root.pm
 create mode 100644 t/lib/TestAppEncodingSetInConfig/testappencodingsetinconfig.json
 create mode 100644 t/lib/TestAppUnicode.pm
 create mode 100644 t/lib/TestAppUnicode/Controller/Root.pm
 create mode 100644 t/lib/TestAppWithoutUnicode.pm
 create mode 100644 t/lib/TestAppWithoutUnicode/Controller/Root.pm
 create mode 100644 t/lib/TestLogger.pm
 create mode 100644 t/unicode_plugin_charset_utf8.t
 create mode 100644 t/unicode_plugin_config.t
 create mode 100644 t/unicode_plugin_live.t
 create mode 100644 t/unicode_plugin_no_encoding.t
 create mode 100644 t/unicode_plugin_request_decode.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcatalyst-perl.git



More information about the Pkg-perl-cvs-commits mailing list