-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stefan Eissing
committed
Mar 16, 2015
1 parent
cc423fb
commit 6aa710e
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
v0.2.0 | ||
-------------------------------------------------------------------------------- | ||
* merged pull request from Tatsuhiro Tsujikawa, removing code for CONTINUATION | ||
frames that are never seen by mod_h2 | ||
* request/response headers are filtered when converting between HTTP/1.1 and | ||
HTTP/2 where they can only do harm (Expect/Connection/etc.) | ||
* added test cases for uploads | ||
* fixed handling of uploads ;-) | ||
* enabled h2c upgrade for "OPTIONS *" requests | ||
* changed h2_stream_set implementation to use sorted apr array | ||
* switched to nghttp2 0.7.7 in sandbox | ||
|
||
v0.1.1 | ||
-------------------------------------------------------------------------------- | ||
* added cgi test cases (needs python installed) | ||
* fixed typo in configure.ac that did not set the CPP flags correctly (#3) | ||
* fixed handling of chunked encoding in responses | ||
* merged header macro pull request from MATSUMOTO, Ryosuke | ||
|
||
v0.1.0 | ||
-------------------------------------------------------------------------------- | ||
* first alpha release, see README on how to use it and what is all missing | ||
* h2 supported with openssl > 1.0.1 and patched mod_ssl (patch included and used in sandbox) | ||
* h2c supported | ||
* only usable in mpm_worker right now | ||
* configure --enable-sandbox for a local install of everything needed | ||
* tested with httpd 2.4.12 and nghttp2 0.7.5 on Ubuntu 14.04 and OS X 10.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([mod_h2], [0.1.1], [[email protected]]) | ||
AC_INIT([mod_h2], [0.2.0], [[email protected]]) | ||
|
||
LT_PREREQ([2.2.6]) | ||
LT_INIT() | ||
|