Skip to content

Commit

Permalink
Update Readme and Release Notes for 0.81.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Brail committed Sep 4, 2014
1 parent 159f338 commit 0d0fc67
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ although it may not necessarily pass all the node.js tests.
<tr><td>console</td><td>Complete</td><td>node.js</td></tr>
<tr><td>crypto</td><td>Complete</td><td>node.js + Trireme</td></tr>
<tr><td>debugger</td><td>Not Supported</td><td><NA/td></tr>
<tr><td>dgram</td><td>Partial</td><td>node.js + Trireme</td></tr>
<tr><td>dgram</td><td>Complete</td><td>node.js + Trireme</td></tr>
<tr><td>dns</td><td>Partial</td><td>Trireme</td></tr>
<tr><td>domain</td><td>Complete</td><td>node.js + Trireme</td></tr>
<tr><td>events</td><td>Complete</td><td>node.js</td></tr>
Expand Down Expand Up @@ -370,8 +370,8 @@ This table will help keep them straight:
certain crypto operations (notably PEM file support for TLS and HTTPS) will not work. Nonetheless, this is a separate
package in case some implementations are wary of distributing Bouncy Castle.</td></tr>
<tr><td>trireme-util</td><td/><td>X</td>
<td>Native Trireme / Java implementations of a few Node.js modules, notably "iconv" and "iconv-lite". These are
faster and more complete than the usual packages from NPM. If in the classpath, these modules will be used instead
<td>Native Trireme / Java implementations of a few Node.js modules, notably "iconv". These are
faster than the usual packages from NPM. If in the classpath, these modules will be used instead
of searching the module path for a regular module.</td></tr>
<tr><td>trireme-net</td><td/><td/><td>An HttpAdaptor implementation that uses Netty. Mainly useful as an example
to show how to write an HTTP adaptor for embedding into another container.</td></tr>
Expand Down
25 changes: 25 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# 0.8.1 09-Sep-2014:

* [Issue 66](https://github.com/apigee/trireme/issues/66) Use NIO to implement the datagram (aka UDP)
module for better performance.
* [Issue 81](https://github.com/apigee/trireme/issues/81) Remove Trireme's Java implementation of
"iconv-lite," which was not compatible with the version on NPM. The standard "iconv-lite" module now
works, although it is very slow for unusual character sets like "big5" because those are now implemented
in JavaScript rather than using native Java character sets. (ASCII, UTF8, and other standards still
use the Java platform and are as fast or faster than native Node.) This also fixes a bug with
recent versions of the Express / connect "body parser" middleware.
* [Issue 82](https://github.com/apigee/trireme/issues/82) Add fields to the HTTP adapter to prevent a race
condition when recent versions of Connect "send-static" middleware try to use undocumented internal
fields. (This only affects the "HTTP adapter" which is not used by all users of Trireme.)

Other issues:

* Upgrade to version 1.50 of Bouncy Castle.
* Fix path translation for filesystems mounted outside root (t-beckmann)
* Fix SSL support to always emit Error objects on error (t-beckmann)
* Fix /?/ UNC path prefix (t-beckmann)
* Unwrap Rhino "Wrapper" objects (t-beckmann)
* Fix "binary" character set to handle unsigned values properly (t-beckmann)
* A number of other small but important fixes from Thomas Beckmann. Thanks!


# 0.8.0 17-Jul-2014:

This release fixes many compatibility issues with standard Node. The most significant is that we have switched
Expand Down
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -276,5 +276,9 @@
<name>Christopher Hunt</name>
<id>huntc</id>
</developer>
<developer>
<name>Thomas Beckmann</name>
<id>t-beckmann</id>
</developer>
</developers>
</project>

0 comments on commit 0d0fc67

Please sign in to comment.