[twiggy] annotated tag upstream/0.1025+dfsg created (now 105d4f7)

gregor herrmann gregoa at debian.org
Sun Dec 6 12:30:56 UTC 2015


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

gregoa pushed a change to annotated tag upstream/0.1025+dfsg
in repository twiggy.

        at  105d4f7   (tag)
   tagging  bf1d35dc6a4d2bbbd22cc37bfbf418ca31a31a50 (commit)
  replaces  upstream/0.1024+dfsg
 tagged by  gregor herrmann
        on  Sun Dec 6 13:17:41 2015 +0100

- Log -----------------------------------------------------------------
Upstream version 0.1025+dfsg

Adam Thomason (4):
      Suppress 400 if client disconnected
      Allow for error messages that have line numbers
      On bad_request, go through _write_psgi_response even if sending nothing back
      Add a test for client disconnection

Chia-liang Kao (2):
      Fix an edge case when on_drain gets empty string the request is never completed.
      tests demostrating the edge case fixed in eed850.

Kazuho Oku (1):
      close unless errno is EAGAIN or EINTR

Moritz Onken (1):
      Don't restrict parsing the request body to PUT and POST requests

Pedro Melo (3):
      Explain how to use the fast HTTP Headers parsing option
      GIve pratical example of Server::Starter usage
      Add ENVIRONMENT section explaining TWIGGY_DEBUG

Rob Hoelz (2):
      Add test checking for a stream being broken
      Fix bug where Twiggy stops servicing requests

Sergey Zasenko (1):
      Fixed broken data processing

Tatsuhiko Miyagawa (91):
      s/Impl/Server/g
      added support for PLACK_NO_SENDFILE env var
      set blocking to the socket since non-blocking aio_sendfile + event loop is inefficient per IO::AIO docs
      Oops, fixed a stupid bug
      use ContentLength middleware in Servers that want Content-Length
      remove run_loop from Server implementations. Use register_service if you don't want main event loop run
      rename t directories
      rename Plack::Test to Plack::Test::Suite
      Implemented test suite for Apache2. Disabled BaseDir and use File::ShareDir instead.
      templates
      Checking in changes prior to tagging of version 0.01.  Changelog diff is:
      remove
      added psgi.streaming
      remove unused dep
      rm namespace::clean
      close the connection when the response is sent. Should be updated to handle Keep-Alive and chunk stuff in HTTP/1.1, etc.
      added Yuval as an author
      enable ContentLength and Chunked by default
      disable Chunked since it causes poll_cb not work
      Checking in changes prior to tagging of version 0.02.  Changelog diff is:
      Merge branch 'nothingmuch/master'
      clearnly shutdown the writer
      Checking in changes prior to tagging of version 0.03.  Changelog diff is:
      namespace::clean is not used
      display server package at the startup
      Since this server doesn't handle keepalive, remove ContentLength.
      rename Plack::Server::AnyEvent to AnyEvent::Server::PSGI::Twiggy!
      fix POD
      forgot to add
      Support listening on multiple ports and UNIX sockets.
      fix uuv warnings
      Added WebSocket chat demo.
      return 501 if psgix.io is not there
      make it a top level namespace. See =head1 NAMING for details
      typo
      docs
      remove poll_cb support
      added command line option
      accept --backlog for the listen queue
      rename Twiggy.pm to Twiggy::Server
      Checking in changes prior to tagging of version 0.1000.  Changelog diff is:
      Merge remote branch 'origin/destroy_listen_guards'
      Checking in changes prior to tagging of version 0.1001.  Changelog diff is:
      Checking in changes prior to tagging of version 0.1002.  Changelog diff is:
      fix POD
      added lestrrat
      fix POD
      s/production/deployment/
      revert HTTP::Parser::XS optional
      Checking in changes prior to tagging of version 0.1003.  Changelog diff is:
      fix SYNOPSIS
      whitespace
      Move the exit_guard to register_service so AE::cv->recv (without ->run) would work.
      Yikes, copy this to SS. Needs refactoring later
      Checking in changes prior to tagging of version 0.1004.  Changelog diff is:
      Implemented twiggy -v
      Checking in changes prior to tagging of version 0.1005.
      no lib lib
      Checking in changes prior to tagging of version 0.1006.
      port => undef means it can bind to any port like it used to do
      Checking in changes prior to tagging of version 0.1007.
      fix shebang. Fixes gh-9
      typo
      Checking in changes prior to tagging of version 0.1008.
      Checking in changes prior to tagging of version 0.1009.
      Document that condvar support will be removed
      carp not croak
      Remove the test that uses condvar response
      Checking in changes prior to tagging of version 0.1010.
      Improves the SERVER_PORT when binding multiple ports.
      Fix Server::Starter binding too
      Merge pull request #15 from melo/documentation_fixes
      Merge pull request #20 from athomason/master
      Merge pull request #23 from monken/master
      Merge pull request #25 from und3f/master
      Merge pull request #22 from athomason/845cedab
      Checking in changes prior to tagging of version 0.1020.
      Checking in changes prior to tagging of version 0.1021.
      use Milla
      Skip test rather than requiring it in tests.
      update
      0.1022
      Merge pull request #35 from moznion/fix/rename_directory_to_store_executable_files
      0.1023
      Merge pull request #37 from maedama/hotfix/exit_guard_count_miss
      add
      0.1024
      Merge pull request #41 from hoelzro/master
      enable travis
      add
      0.1025

Tomas Doran (t0m) (1):
      Fix leaking fds + test

Yuval Kogman (11):
      Makefile.PL tweaks
      support a condvar $res
      support coderef $res
      Revamp of nonblocking code, with new PSGI api
      support clearing of poll_cb
      be more careful with $!
      refcount handle in shutdown
      shutdown socket in array ref case
      MOAR FASTER
      non reentrant poll_cb to guarantee ordered writes
      implement graceful exit on SIGQUIT

gregor herrmann (1):
      Imported Upstream version 0.1025+dfsg

hidekiy (9):
      fixed busyloop bug
      improve about closing
      fixed _write_real_fh for linux
      added slurping request body
      added timeout support
      improved _read_chunk for lower memory usage.
      create timeout timer only when it is necessary.
      added return for safety.
      added $self->{read_chunk_size} to be configurable.

lestrrat (6):
      Destroy the listen guards when $cv is signaled. This closes the incoming socket, so you won't have new connections arriving while the rest of the server flushes events and shuts down
      did a fresh perl install and got complaints about Test::TCP
      Add Server::Starter support
      add minor docs
      only warn when DEBUG is on (the default value, ':5000' is passed regardless, so it would be annoying for most people)
      move socket listen to start_listen, and let SS override that method instead of register_service

maedama (2):
      decremented exit guard when failed to write header
      Added test for connection already closed on server response

moznion (1):
      Rename a directory to store executable files.

-----------------------------------------------------------------------

No new revisions were added by this update.

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



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