Revision history for Perl extension Protocol-HTTP2

0.10 2014-07-31T21:25:59Z
    - updated HTTP/2 to draft 14
    - updated HPACK to draft 09
    - fixed tests

0.09 2014-07-08T13:16:24Z

    - another fix for 09_client_server_tcp.t (check features of Net::SSLeay)
    - updated extract_* scripts
    - updated HTTP/2 to draft 13
      - removed ALTSVC and BLOCKED frames
      - removed DATA frames comression support
      - PAD_HIGH, PAD_LOW flags are replaced by PADDED
      - settings changed from 8-bit to 16-bit unsigned integer
    - updated HPACK to draft 08
      - updated huffman codes table
      - updated static table
    - fixed tests

0.08 2014-05-17T09:59:07Z

    - fixed test 09_client_server_tcp.t
    - fixed *_COMPRESS_DATA constants
    - fixed blocked data handling
    - allow zero-sized DATA frames
    - fixed HPACK encoding: evicting and refrence set emptying
    - added Protocol::HTTP2::Server POD
    - fixed upgrade (added required header :scheme)

0.07 2014-05-15T13:14:32Z

    - implemented PRIOIRITY encoder/decoder
    - update HEADERS implementation (priority handling)
    - remove old flags PRIORITY_GROUP, PRIORITY_DEPENDENCY
    - added tcp test
    - update cpanfile (TCP::Test and other test deps)
    - implemented ALTSVC encoder/decoder
    - updated Protocol::HTTP2 POD
    - added Protocol::HTTP2::Client POD

0.06 2014-05-13T17:51:16Z

    - switch to Module::Build::Tiny
    - implemented PING encoder/decoder
    - fixed Rst_stream - unneeded state manipulation
    - internal PH2Test test module
    - implemented PUSH_PROMISE encoder
    - implemented push for Server
    - add Server's push in server-tls-anyevent.pl example
    - process state of encoded frame after putting it on a queue

0.05 2014-05-11T11:19:57Z

    - implemented flow control
    - implemented WINDOW_UPDATE encoder/decoder
    - fixed MAX_PAYLOAD_SIZE constant
    - fixed runtime error in RST_STREAM
    - required MIME::Base64 >= 3.11 (encode_base64url and decode_base64url)
    - HTTP/1.1 Upgrade for client

0.04 2014-05-08T18:22:24Z

    - enable Upgrade in server-anyevent.pl example
    - implemented HTTP/1.1 Upgrade (server)
    - fixed build/tests on windows
    - update cpanfile (Net::SSLeay > 1.45 for NPN)
    - update state doc

0.03 2014-05-07T18:05:50Z

    - client-tls-anyevent.pl with NPN/ALPN support and server's push handling
    - fixed error handling (send only one GOAWAY)
    - fixed PUSH_RPOMISE/CONTINUATION state and headers handling
    - implemented PUSH_PROMISE decoder
    - implemented RST_STREAM encoder
    - server-tls-anyevent.pl with NPN/ALPN support
    - fixed Connection's send(): set END_STREAM flag for last DATA frame
    - fixed HEADERS/CONTINUATION logic
    - pending state change until all CONTINUATION frames received
    - fixed author

0.02 2014-05-05T20:24:31Z

    - implemented CONTINUATION frame decoding
    - docs: table about frame types, flags and stream id

0.01 2014-04-27T08:51:15Z

    - original version