You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by sc...@apache.org on 2010/12/16 01:43:54 UTC

svn commit: r1049757 - /avro/trunk/CHANGES.txt

Author: scottcarey
Date: Thu Dec 16 00:43:54 2010
New Revision: 1049757

URL: http://svn.apache.org/viewvc?rev=1049757&view=rev
Log:
AVRO-647

Modified:
    avro/trunk/CHANGES.txt

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1049757&r1=1049756&r2=1049757&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Thu Dec 16 00:43:54 2010
@@ -4,6 +4,26 @@ Avro 1.5.0 (unreleased)
 
   INCOMPATIBLE CHANGES
 
+    AVRO-647 Java: Break avro.jar up into multiple pieces: avro.jar,
+    avro-compiler.jar, avro-ipc.jar, avro-mapred.jar, avro-tools.jar, 
+    and avro-maven-plugin.jar (Scott Carey)
+    
+    NOTE: Java users will likely need to choose which artifact(s) they require
+    Due to AVRO-647.
+    Summary of artifacts: 
+    * avro.jar Contains 'core' avro features:  Schema and Schema resolution,
+    AvroDataFiles, Specific, Generic, and Reflect APIs, serialization.
+    Dependencies: slf4j, Paranamer, Jackson.
+    * avro-ipc.jar Avro IPC library, contains Protocols, Trancievers, Requestor,
+    and Responder. Dependencies:  avro.jar, Jetty, Netty, and Velocity
+    * avro-compiler.jar Avro compiler.  Contains SpecificCompiler, and AvroIDL compiler
+    including Ant tasks.  Depends on avro.jar, commmons-lang, and Velocity.
+    * avro-maven-plugin.jar An avro-maven-plugin.  Depends on avro-compiler.jar
+    * avro-mapred.jar The Avro API for org.apache.hadoop.mapred.
+    Depends on avro-ipc.jar, hadoop-core, and jopt-simple.
+    * avro-tools.jar A jar containing command-line tools.  Embeds all avro 
+    components and dependencies.
+
     AVRO-670. Allow DataFileWriteTool to accept schema files as input with new
     --schema-file and --schema command-line flags. (Ron Bodkin via philz)
 
@@ -31,10 +51,6 @@ Avro 1.5.0 (unreleased)
 
   IMPROVEMENTS
 
-    AVRO-647 Java: Break avro.jar up into multiple pieces: avro.jar,
-    avro-compiler.jar, avro-ipc.jar, avro-mapred.jar, avro-tools.jar, 
-    and avro-maven-plugin.jar (Scott Carey)
-
     AVRO-682. Java: Add method DataFileStream.getMetaKeys().
     (Harsh J Chouraria via cutting)