From 0d0fc673d68bdc06d968fcb2c8706b2907d8e64b Mon Sep 17 00:00:00 2001 From: Gregory Brail Date: Thu, 4 Sep 2014 12:40:17 -0700 Subject: [PATCH] Update Readme and Release Notes for 0.81. --- README.md | 6 +++--- RELEASE-NOTES.md | 25 +++++++++++++++++++++++++ pom.xml | 4 ++++ 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94a25e7f..9d30676d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ although it may not necessarily pass all the node.js tests. consoleCompletenode.js cryptoCompletenode.js + Trireme debuggerNot Supported - dgramPartialnode.js + Trireme + dgramCompletenode.js + Trireme dnsPartialTrireme domainCompletenode.js + Trireme eventsCompletenode.js @@ -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. trireme-utilX - 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 + 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. trireme-netAn HttpAdaptor implementation that uses Netty. Mainly useful as an example to show how to write an HTTP adaptor for embedding into another container. diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 3394d016..ff5c8cba 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -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 diff --git a/pom.xml b/pom.xml index f201f062..6fb1d41f 100644 --- a/pom.xml +++ b/pom.xml @@ -276,5 +276,9 @@ Christopher Hunt huntc + + Thomas Beckmann + t-beckmann +