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

nickm-guest pushed a change to branch master
in repository libmojolicious-perl.

      from  b12d4ea   update changelog
      adds  091f862   New upstream version 7.57+dfsg
       new  0f2ecbd   Update upstream source from tag 'upstream/7.57+dfsg'
       new  8058137   Declare compliance with Debian Policy 4.1.1 (no changes)
       new  37b95a3   debian/changelog: remove trailing whitespace
       new  a16edd1   Releasing package libmojolicious-perl version 7.57+dfsg-1

The 4 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                                            |  82 +++++-
 MANIFEST                                           |  10 +-
 META.json                                          |   2 +-
 META.yml                                           |   2 +-
 README.md                                          |   4 +-
 debian/changelog                                   |  12 +-
 debian/control                                     |   2 +-
 lib/Mojo/Asset.pm                                  |   2 +-
 lib/Mojo/Asset/File.pm                             |   2 +-
 lib/Mojo/Asset/Memory.pm                           |   4 +-
 lib/Mojo/Base.pm                                   |  85 ++++--
 lib/Mojo/Content.pm                                |   4 +-
 lib/Mojo/Headers.pm                                |   2 +-
 lib/Mojo/IOLoop.pm                                 |  37 ++-
 lib/Mojo/IOLoop/Client.pm                          |   4 +-
 lib/Mojo/IOLoop/Delay.pm                           | 162 ++++-------
 lib/Mojo/IOLoop/TLS.pm                             |   8 +-
 lib/Mojo/Loader.pm                                 |  10 +-
 lib/Mojo/Message.pm                                |  10 +-
 lib/Mojo/Message/Request.pm                        |   4 +-
 lib/Mojo/Message/Response.pm                       |   3 +-
 lib/Mojo/Promise.pm                                | 303 +++++++++++++++++++++
 lib/Mojo/Reactor.pm                                |   4 +-
 lib/Mojo/Reactor/Poll.pm                           |   4 +-
 lib/Mojo/Server/Daemon.pm                          |   2 +-
 lib/Mojo/Server/Prefork.pm                         |   2 +-
 lib/Mojo/Transaction/WebSocket.pm                  |   2 +-
 lib/Mojo/UserAgent.pm                              | 165 ++++++++++-
 lib/Mojo/UserAgent/CookieJar.pm                    |   2 +-
 lib/Mojo/UserAgent/Transactor.pm                   | 165 +++++++----
 lib/Mojo/Util.pm                                   |  37 ++-
 lib/Mojolicious.pm                                 |  20 +-
 lib/Mojolicious/Command/get.pm                     |   2 +-
 lib/Mojolicious/Controller.pm                      |   8 +-
 lib/Mojolicious/Guides.pod                         |  10 +-
 lib/Mojolicious/Guides/Cookbook.pod                | 131 +++++----
 lib/Mojolicious/Guides/FAQ.pod                     |  10 +-
 lib/Mojolicious/Guides/Growing.pod                 |   2 +-
 lib/Mojolicious/Guides/Testing.pod                 |   2 +-
 lib/Mojolicious/Guides/Tutorial.pod                |  29 +-
 lib/Mojolicious/Lite.pm                            |  15 +-
 lib/Mojolicious/Plugin/DefaultHelpers.pm           |  22 +-
 lib/Mojolicious/Plugin/PODRenderer.pm              |   8 +-
 lib/Mojolicious/Static.pm                          |   9 +-
 lib/Mojolicious/Validator.pm                       |  17 +-
 .../resources/public/mojo/logo-black-2x.png        | Bin 0 -> 4407 bytes
 .../resources/public/mojo/logo-black.png           | Bin 3319 -> 2495 bytes
 .../resources/public/mojo/logo-white-2x.png        | Bin 0 -> 9272 bytes
 .../resources/public/mojo/logo-white.png           | Bin 5318 -> 4674 bytes
 .../public/mojo/prettify/prettify-mojo-light.css   |   2 +-
 lib/Mojolicious/resources/public/mojo/stripes.png  | Bin 1184 -> 0 bytes
 .../resources/templates/mojo/debug.html.ep         |  12 +-
 .../resources/templates/mojo/menubar.html.ep       |  57 ++--
 .../resources/templates/mojo/perldoc.html.ep       |  25 +-
 lib/ojo.pm                                         |   6 +
 t/mojo/delay.t                                     | 145 ++++------
 t/mojo/ioloop.t                                    |  18 +-
 t/mojo/lib/Mojo/LoaderException.pm                 |   2 +
 t/mojo/loader.t                                    |  27 +-
 t/mojo/promise.t                                   | 188 +++++++++++++
 t/mojo/reactor_detect.t                            |  33 +++
 t/mojo/reactor_ev.t                                |  15 +-
 t/mojo/reactor_poll.t                              |  12 -
 t/mojo/response.t                                  |   1 +
 t/mojo/roles.t                                     |  14 +-
 t/mojo/signatures.t                                |  17 ++
 t/mojo/transactor.t                                |  51 ++++
 t/mojo/user_agent.t                                |  45 ++-
 t/mojo/util.t                                      |   3 +
 t/mojolicious/app.t                                |  10 +
 t/mojolicious/exception_lite_app.t                 |   5 +-
 .../lib/MojoliciousTest/SideEffects/Test.pm        |   6 +
 t/mojolicious/ojo_signatures.t                     |  20 ++
 t/mojolicious/signatures_lite_app.t                |  35 +++
 t/mojolicious/validation_lite_app.t                |  21 ++
 t/pod_coverage.t                                   |   2 +-
 76 files changed, 1579 insertions(+), 615 deletions(-)
 create mode 100644 lib/Mojo/Promise.pm
 create mode 100644 lib/Mojolicious/resources/public/mojo/logo-black-2x.png
 create mode 100644 lib/Mojolicious/resources/public/mojo/logo-white-2x.png
 delete mode 100644 lib/Mojolicious/resources/public/mojo/stripes.png
 create mode 100644 t/mojo/promise.t
 create mode 100644 t/mojo/reactor_detect.t
 create mode 100644 t/mojo/signatures.t
 create mode 100644 t/mojolicious/lib/MojoliciousTest/SideEffects/Test.pm
 create mode 100644 t/mojolicious/ojo_signatures.t
 create mode 100644 t/mojolicious/signatures_lite_app.t

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to