forked from apache/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
1589 lines (1002 loc) · 54.3 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Avro Change Log
Avro 1.6.0 (unreleased)
INCOMPATIBLE CHANGES
NEW FEATURES
IMPROVEMENTS
BUG FIXES
Avro 1.5.1 (unreleased)
BUG FIXES
Avro 1.5.0 (10 March 2011)
INCOMPATIBLE CHANGES
AVRO-751. C: Each avro_datum_t instance now contains a reference to
the schema that the datum is an instance of. As a result, the
signatures of several of the functions that operate on avro_datum_t
instances have changed.
AVRO-647. Java: Break avro.jar up into multiple parts: avro.jar,
avro-compiler.jar, avro-ipc.jar, avro-mapred.jar, avro-tools.jar,
and avro-maven-plugin.jar.
Summary of artifacts:
* avro.jar
Contains 'core' avro features: schemas, data files,
specific, generic, and reflect APIs.
Dependencies: slf4j, Paranamer, Jackson.
* avro-ipc.jar
Contains Trancievers, Requestors, and Responders.
Dependencies: avro.jar, Jetty, Netty, and Velocity
* avro-compiler.jar
Contains SpecificCompiler, IDL compiler and Ant tasks.
Dependencies: avro.jar, commmons-lang, and Velocity.
* avro-maven-plugin.jar
A Maven plugin for Avro's compiler.
Dependencies: avro-compiler.jar
* avro-mapred.jar
API for Hadoop MapReduce with Avro data.
Dependencies: avro-ipc.jar, hadoop-core, and jopt-simple.
* avro-tools.jar
Avro command-line tools stand-alone jar.
Dependencies are contained within the jar.
Dependencies: all of the above.
(scottcarey)
AVRO-737. Java: Improve correlation between packages and modules.
Each module introduced by AVRO-647 now exclusively provides
different java packages. This required moving several classes
around into new packages and will therefore require users to
change their package imports when upgrading to Avro 1.5.0.
Summary of changes:
* AvroRemoteException has moved to org.apache.avro
* ByteBufferInputStream and ByteBufferInputStream have moved
to org.apache.avro.util
* InduceSchemaTool has moved to org.apache.avro.tools
* SpecificCompiler, SchemaTask, and ProtocolTask have moved
to org.apache.avro.compiler.specific
* The Idl compiler has moved to org.apache.avro.compiler.idl
* ReflectRequestor and ReflectResponder have moved to
org.apache.avro.ipc.reflect
* GenericRequestor and GenericResponder have moved to
org.apache.avro.ipc.generic
* SpecificRequestor and SpecificResponder have moved to
org.apache.avro.ipc.specific
(scottcarey)
AVRO-753. Java: Improve BinaryEncoder Performance.
The Encoder API has several resulting changes:
* Construction and configuration is handled by EncoderFactory. All
Constructors are hidden, and Encoder.init(OutputStream) is removed.
* Some Encoders previously did not buffer output. Users must call
Encoder.flush() to ensure output is written unless the EncoderFactory
method used to construct an instance explicitly states that the Encoder
does not buffer output.
(scottcarey)
AVRO-769. Java: Align Decoder/Encoder APIs for consistency and long term
stability. Avro's Decoder and Encoder APIs are aligned and now consist of
only read and write operations. EncoderFactory and DecoderFactory handle
all construction and common configuration. Some specialized implementations
have separate configuration APIs.
(scottcarey)
AVRO-670. Allow DataFileWriteTool to accept schema files as input with new
--schema-file and --schema command-line flags. (Ron Bodkin via philz)
AVRO-671. Java: Check that type and field names conform to
specified requirements. (cutting)
AVRO-678. Java: Implement ReflectData#compare(). Incompatibly
moves some protected GenericDatumReader/Writer methods to
GenericData, potentially breaking subclasses. (cutting)
AVRO-696. Java: Make DataFileWriter.setMetaInternal(String,String)
private. (Patrick Linehan via cutting)
AVRO-741. C: Minor API change to handling of bytes data.
(Douglas Creager via brucem)
AVRO-246. Java: Add required Schema parameter to GenericData.Fixed
and GenericData.EnumSymbol constructors. Also fix union dispatch
to conform to specification, using full schema name for records,
enums and fixed.
NEW FEATURES
AVRO-762. C: New and improved schema resolution API. The new API
correctly handles all of the schema resolution rules listed in the
spec. It performs resolution against two schemas separately from
reading in any data, so that we don't have to re-resolve for each
data record. Please see the avro/consumer.h header file for
details. (dcreager)
AVRO-463. C: Error message API. The new avro_strerror() function
can be used to get a textual description of the error codes returned
by the other C API functions. In particular, this includes any JSON
parse errors that occur while trying to load a schema. (dcreager)
AVRO-684. Java: Add command-line "recodec" tool to change file
compression codecs. (Patrick Linehan via cutting)
AVRO-689. Java: Permit setting timeout of HttpTransceiver. (cutting)
AVRO-687. Java: Permit RPC applications to view remote protocol. (cutting)
AVRO-159 Java: Allow maven builds to use avro: avro-maven-plugin
(Hiram Chirino, Patrick Hunt via Scott Carey)
AVRO-549. C: Route all memory allocations through an interface. (Douglas
Creager via brucem)
AVRO-729. C: JSON encoded Avro values. (Douglas Creager via brucem)
AVRO-757. Java: Permit data files to be re-opened without
re-reading the header. (Stu Hood via cutting)
AVRO-750. C: Install a pkg-config file
(dcreager)
AVRO-730. Java: Add set() and remove() methods to GenericData.Array.
(Chase Bradford via cutting)
AVRO-711. JSON encoder and decoder for C++.
AVRO-701 and AVRO-772. Java: Add new constructors for HttpServer
and an example of using SSL for the HTTP RPC. (brucem)
IMPROVEMENTS
AVRO-771. Java: Update dependency versions
(scottcarey)
AVRO-726. Java: Make GenericDatum{Reader,Writer} easier to extend.
(scottcarey)
AVRO-765. Java: Improvement to BinaryDecoder readLong performance
(scottcarey)
AVRO-716. Java: integrate AVRO-647 changes with top level build
(scottcarey)
AVRO-752. Java: Enhanced Performance Test Suite
(scottcarey)
AVRO-682. Java: Add method DataFileStream.getMetaKeys().
(Harsh J Chouraria via cutting)
AVRO-683. Java: Fix RPC proxy factories to not require casting.
(Stephen Gargan via cutting)
AVRO-642. Java, Python: Pretty-print schemas in some validation
error messages. (Harsh J Chouraria via cutting)
AVRO-648. Java: Use Velocity templates to generate specific code.
(philz via cutting)
AVRO-698. Java: Add MapReduce tests and documentation for jobs
that mix Avro and non-Avro data. (cutting)
AVRO-692. Java: Permit Avro 1.2 format files to be read. (cutting)
AVRO-707. Java: Promote SASL-based RPC. (cutting)
AVRO-714. Fix Forrest to work with Java 6. (Carl Steinbach via cutting)
AVRO-669. Java: Make MapReduce to work with reflection-based data.
(cutting)
AVRO-723. Java: Pass error messages for unexpected RPC exceptions
through to client. (Stephen Gargan via cutting)
AVRO-719. Java: Permit MapReduce programs to alter output file
sync interval. (Joe Crobak via cutting)
AVRO-725. C: avro_schema_get_subschema function. (Douglas Creager via
brucem)
AVRO-630. C: Add size accessors for map and list data. (Douglas Creager
via brucem)
AVRO-727. C: Add many new accessor and mutator functions. (Douglas Creager
via brucem)
AVRO-729. C: avro_schema_to_json can take const schema. (Douglas Creager
via brucem)
AVRO-729. C: Update to Jansson 1.3. (Douglas Creager via brucem)
AVRO-731. Documentation: Improve identification of Apache
trademarks. (cutting)
AVRO-734. Java: Update maven build plugin versions. (Holger Hoffstätte
via scottcarey)
AVRO-700. Change C++ build system to CMake (thiru)
AVRO-749. Don't install Jansson build artifacts. (Douglas Creager via
brucem)
AVRO-744. C: Helper macros for extracting and setting record field
values (dcreager)
AVRO-773. Java: Add no-arg constructor to AvroWrapper.
(Jan Prach via cutting)
AVRO-774. Java: Clean up repositories in pom.xml. (Lars Francke via cutting)
AVRO-754. Java: Permit passing custom channel factory to NettyTransceiver.
(Bruno Dumon via cutting)
BUG FIXES
AVRO-764. Java: Bug in BinaryData.compare() with offset comparison.
(Harsh J Chouraria via scottcarey)
AVRO-743. Java: Performance Regression and memory pressure with
GenericDatumReader. (scottcarey)
AVRO-675. C: Bytes and fixed setters don't update datum size.
(Douglas Creager via massie)
AVRO-681. IDL: Fix documentation example with illegal syntax.
(Jingguo Yao via cutting)
AVRO-685. Java: Fix Schema#equals() and hashCode() to not require
exponential time for some recursive schemas.
(Richard Ahrens via cutting)
AVRO-693. Java: Configure Velocity to use null logger, removing a
dependency that was breaking the build. (Stephen Gargan via cutting)
AVRO-702. Java: Fix a bug printing nested record namespaces. (cutting)
AVRO-706. Java: Type promotion not succeeding for long -> float. (thiru)
AVRO-704. Java: Fix SocketServer connection threads to exit rather
than busywait when client closes connection. (cutting)
AVRO-705. Java: Fix DirectBinaryDecoder to correctly reinitialize.
(thiru via cutting)
AVRO-710. Java: Add bounds checking to GenericData.Array#get(int).
(Bo Shi via cutting)
AVRO-713. Java: Fix GenericData.Record#toString() to produce valid
JSON for enum symbols. (Jay Kreps via cutting)
AVRO-643. Java: Fix intermittent failures in TestTraceCollection. (cutting)
AVRO-722. Java: Fix ordering of calls to RPC plugins.
(Stephen Gargan via cutting)
AVRO-708. Java: Fix Netty-based RPC to keep connection open.
(Stephen Gargan via cutting)
AVRO-694. Python: Fix schema parse error for maps of records.
(hammer via cutting)
AVRO-663. Java: avro-tools.jar does not meet maven2 layout standard.
(scottcarey)
AVRO-688. Java: Only require that one-way'ness of messages match
over stateful connections, permitting interoperability with
Python and Ruby, which drop the one-way message attribute. (cutting)
AVRO-759. Java: Fix NullPointerException when some but not all
fields are aliased. (Xiaolu Ye via cutting)
AVRO-755. Java: Fix SpecificResponder to correctly handle message
parameter lists that differ between client and server. (cutting)
AVRO-775. Java: Fix a file handle leak in DataFileReader. (cutting)
AVRO-761. Java: Fix Requestor to not send client's protocol on
each handshake with stateless (HTTP) transport when protocol
differs from server's. (cutting)
Avro 1.4.1 (13 October 2010)
NEW FEATURES
AVRO-674. Vim editor support for IDL files (Daniel Lundin via philz)
AVRO-641. Java: Add SASL security for socket-based RPC. (cutting)
AVRO-634. Java: Add support for reading Hadoop sequence files as
Avro data to MapReduce API. (cutting)
OPTIMIZATIONS
AVRO-673. Python: Remove unneeded schema validations.
(Erik Frey via cutting)
IMPROVEMENTS
AVRO-655. Change build so that 'dist' target no longer also runs C
and C++ unit tests. (cutting)
AVRO-634. IDL: Add support for aliases. (cutting)
AVRO-668. Java: Reduce object allocations while writing strings.
(scottcarey)
AVRO-537. Ruby: Reuse client connection for multiple requests.
(Gabor Torok via cutting)
BUG FIXES
AVRO-666. Remove an extraneous pdb.set_trace() that crept into schema.py
(hammer)
AVRO-657. Fix build so that md5 and sha1 checksum files contain
only the file's basename without any directories. (cutting)
AVRO-664. Ruby server takes a long time to start in interop tests. (thiru)
AVRO-667. GenericArray fails to compare with List. SpecificRecord
compare gets ClassCastException. (scottcarey & cutting)
AVRO-717. Java: Fix SpecificDatumWriter default constructor to
correctly reference SpecificData. (Joe Crobak via cutting)
Avro 1.4.0 (31 August 2010)
INCOMPATIBLE CHANGES
AVRO-372. Rename GenAvro to be Avro IDL. The tool name is now
'idl'. The file suffix is now '.avdl'. (cutting)
AVRO-544. Java: Change Server interface, adding start() and join()
methods. Servers are no longer started in their constructor.
(hammer & cutting)
AVRO-605. Java: Change Utf8 to implement CharSequence and change
specific, generic & reflect APIs to accept any CharSequence
implementation for string schemas, including java.lang.String.
This incompatibly changes method signatures of generated protocol
interfaces. It also incompatibly changes the generic
representation of enum symbols from java.lang.String to
org.apache.avro.generic.GenericEnumSymbol.
AVRO-637. Java: Change GenericArray to implement List. Also
incompatibly change generated array signatures to List. The
runtime will now accept any Collection implementation for array
types. (cutting)
NEW FEATURES
AVRO-627. Add PHP implementation. (Michael Glaesemann via cutting)
AVRO-613. Create basic frontend to view trace results.
(Patrick Wendell via philz)
AVRO-606. Add File-Based Span Storage to TracePlugin
(Patrick Wendell via philz)
AVRO-595. Add Basic Trace Collection and Propagation.
(Patrick Wendell via philz)
AVRO-493. Add support for Hadoop Mapreduce with Avro data files. (cutting)
AVRO-285: Specify one-way messages and implement in Java. (cutting)
AVRO-512. Java: Define and implement MapReduce connector
protocols. (cutting)
AVRO-577. Java: Add MapReduce InputFormat for plain text files.
(Tom White via cutting)
AVRO-567. Add command-line tools for text file import & export.
(Patrick Wendell via cutting)
AVRO-578. Java: add payload data to RPC context for use by
plugins. (Patrick Wendell via cutting)
AVRO-405: Java: Add Netty-based RPC transceiver and server
implementation. (Harry Wang via cutting)
AVRO-580. Permit intermixing of generic and specific data.
SpecificDatumReader and SpecificDatumWriter will now use generic
types when no specific class is available. (cutting)
AVRO-600. Add support for type and field name aliases,
facilitating schema migration. (cutting)
AVRO-495. IDL: Add support for file includes. (cutting)
AVRO-611. IDL: Add support for one-way messages. (cutting)
AVRO-528. Python: Add support for Twisted. (Esteve Fernandez via cutting)
IMPROVEMENTS
AVRO-636. Expose Singleton Method for TracePlugin. (Patrick Wendell via
philz)
AVRO-614. Improve Trace frontend UI. (Patrick Wendell via philz)
AVRO-629. Prefer the JSON module of python's stdlib over simplejson.
(Harsh J Chouraria via philz)
AVRO-587. Add Charts and Templating to Stats View
(Patrick Wendell via philz)
AVRO-584. Update Histogram for Stats Plugin
(Patrick Wendell via philz)
AVRO-501. missing function in C api to access array elements after
decoding an array. (Bruce Mitchener via massie)
AVRO-497. Minor changes to C++ autotools, makefiles, and code
generator. (sbanacho)
AVRO-508. Use page-backed buffers for C++ serialization input or
output. (sbanacho)
AVRO-520. Refactor C++ validation code. (sbanacho)
AVRO-521. Out of memory and other issues with Junit tests for
mapreduce (thiru)
AVRO-540. Java: Make GenericArray reversible. (Eric Evans via cutting)
AVRO-284. Handle namespaces correctly in new Python implementation
(Patrick Wendell via hammer)
AVRO-331. Inline shared state during the Python build process
(version, handshake schemas, and interop data directory)
(Patrick Wendell via hammer)
AVRO-447. Describe implicit protocol "system" error in spec. (cutting)
AVRO-150. Java: fix compiler to not re-generate up-to-date code.
(John Yu via cutting)
AVRO-494. Add support for default values to IDL. (cutting)
AVRO-596. Start Netty server eagerly in constructor.
(Patrick Linehan via cutting)
AVRO-581. Java: Update MapReduce APIs to use key/value pairs for
intermediate data. (cutting)
AVRO-582. Java: Add comment to generated code indicating that
set() and get() are not for use by applications. (cutting)
AVRO-601. Java: Add per-field property support. (cutting)
AVRO-583. Java: Improve error message when types not correctly
nested. (cutting)
AVRO-603. Java: Add a constructor for SpecificDatumReader that
accepts both reader's and writer's schema. Also improve javadoc
for related constructors and setters. (Stu Hood via cutting)
AVRO-557. Java: Cache ResolvingDecoder instances, speeding
DatumReader benchmarks by 5x to 9x. (cutting & scotcarey)
AVRO-586. Java: Permit specification of MapReduce output file
metadata properties. (Ken Krugler via cutting)
AVRO-616. Java: Add comment to generated source files noting that
they should not be edited. (Patrick Wendell via cutting)
AVRO-615. Java: Improve error message for NullPointerException
when writing data. (cutting)
AVRO-534. Java: Permit mapred jobs to specify a different input
schema from the input file. (Harsh J Chouraria via cutting)
AVRO-617. Java: Detect erroneous default field values. (cutting)
AVRO-598. Java: Use generic data structures when reading with
reflect API and classes are not defined. (cutting)
AVRO-631. Java: Make RPC plugin payload reporting consistent.
(Patrick Wendell via cutting)
AVRO-632. Java: Change RPC responder to log stack traces for user
exceptions. (cutting)
AVRO-639. Python: Use namespace-unqualified names for references
to schemas in the same namespace. (cutting)
AVRO-644: PHP: Add requirements to README. (Michael Glaesemann via cutting)
AVRO-652. Java: Expose sync points in DataFileReader.
(Stu Hood via cutting)
BUG FIXES
AVRO-622. python avro.ipc doesn't work with python2.4 (philz)
AVRO-620. Python implementation doesn't stringify sub-schemas
correctly. (philz)
AVRO-618. Avro doesn't work with python 2.4 (philz)
AVRO-502. Memory leak from parsing JSON schema.
(Robert G. Jakabosky via massie)
AVRO-515. Fix build and compatibility problems. (sbanacho)
AVRO-518. Add link to boost filesystem library. (John Plevyak via sbanacho)
AVRO-566. Java: fix so that JAVA_HOME is bound by build.xml for
test_tools.sh. (cutting)
AVRO-571. Fix how we handle out-of-bounds indexes for union and
enum parsing in Python (hammer)
AVRO-589. ClassCastException:
org.apache.avro.io.parsing.Symbol$Alternative cannot be cast to
org.apache.avro.io.parsing.Symbol$UnionAdjustAction (thiru)
AVRO-573. Java: Fix various bugs with undeclared RPC exceptions. (cutting)
AVRO-604. Java: Fix missing build dependency for checkstyle target.
(Patrick Wendell via cutting)
AVRO-602. C++: Update documentation to match API. (Jingguo Yao via cutting)
AVRO-609. Java: Fix JsonToBinaryFragmentTool to flush output. (cutting)
AVRO-612. Java: Preserve field documentation when writing schemas. (cutting)
AVRO-590. IDL: Fix order specifications. (cutting)
AVRO-541. Java: Fix sporadic corruption when appending a
compressed file to an uncompressed file. (scottcarey via cutting)
AVRO-86. Java: Fix NullPointerException when reflect API infers
schema for a class without a package. (cutting)
AVRO-510. C: Fix some memory leaks in datafile reader &
writer. (Robert G. Jakabosky via cutting)
AVRO-633. Ruby: Implement skip_union to correct issues with
updating protocols
AVRO-640. Python: Fix path to sources in RPC interop test. (cutting)
AVRO-653. Python: Fix so distribution contains correct files.
(Eric Evans via cutting)
AVRO-650. Java: Fix GenericDatumReader to be thread-safe. (cutting)
Avro 1.3.3 (7 June 2010)
IMPROVEMENTS
AVRO-525. remove unused imports (Esteve Fernandez via hammer)
AVRO-526. Fall back to pure Python StringIO if cStringIO is not available
(Esteve Fernandez via hammer)
AVRO-560. Python impl should include system errors in every protocol (hammer)
AVRO-486. DataFile.open for the ruby side (jmhodges)
AVRO-559. Handle read_union error where the list index of the union branch
to follow exceeds the size of the union schema (hammer)
AVRO-491. Doing doubles and floats better in the ruby impl. (jmhodges)
AVRO-450. HTTP IPC for ruby. (jmhodges)
AVRO-514. Removing unnecessary ruby StringIO calls. (jmhodges)
AVRO-511. Ruby implementation passes the rpc interop tests.
AVRO-543. Schema comparison is hella slow on the Ruby side. (jmhodges)
AVRO-504. ruby impl could stand better error messages on schema parsing (jmhodges)
AVRO-556. Poor performance for Reader::readBytes improved
(Dave Wright via sbanacho)
BUG FIXES
AVRO-461. Skipping primitives in the ruby side (jmhodges)
AVRO-496. python sample_http_client.py is broken (Jeff Hodges via hammer)
AVRO-527. Undefined variable "schm" error (Esteve Fernandez via hammer)
AVRO-548. Python client should handle CLIENT handshake match status
correctly. (hammer)
AVR0-555 Missing license headers in some ruby source
files. (jmhodges)
AVRO-554 Fixing syncing in ruby data file writing. (Grant Rodgers
via jmhodges)
AVRO-562 ruby side had busted client handshaking. (jmhodges)
AVRO-517. Resolving Decoder fails in some cases. (thiru)
AVRO-524. DataFileWriter.appendTo leads to intermittent IOException during write() (thiru)
AVRO-499. Java: Fix protocol reflection to reject interfaces with
multiple methods of the same name. (cutting)
AVRO-489. Skipping complex objects in the ruby impl. (jmhodges)
AVR0-555 Missing license headers in some ruby source
files. (jmhodges)
AVRO-500. ruby side dev packaging (jmhodges)
AVRO-516. ruby: buffer length should not be little-endian in socket rpc (jmhodges)
Avro 1.3.2 (31 March 2010)
IMPROVEMENTS
AVRO-449. CMake-based build system for Avro/C (Bruce Mitchener via massie)
AVRO-418. avro.h generates errors when included in C++ code
(Bruce Mitchener via massie)
AVRO-480. avro_flush() is in the header, but not implemented
(Bruce Mitchener via massie)
AVRO-481. Buildbot warning fixes (Bruce Mitchener via massie)
AVRO-451. Try to use hashlib in Python implementation and fall
back to md5 if we can't find it (Bruce Mitchener via hammer)
AVRO-423. HTTPTransceiver does not reuse connections
(Eric Evans via hammer)
AVRO-490. Add Ant task to deploy Java artifacts to Maven repo. (cutting)
BUG FIXES
AVRO-479. Fix 'sign' target in top-level build.sh to generate md5
checksums. (cutting)
AVRO-487. Fix Java reflect protocols to transmit error messages. (cutting)
Avro 1.3.1 (16 March 2010)
NEW FEATURES
AVRO-432. Add @Nullable annotation to Java reflect API. (cutting)
IMPROVEMENTS
AVRO-426. Include a ruby gem in distributions.
(Ryan King via cutting)
AVRO-439. Remove unused headers from being checked in configure.in
(Bruce Mitchener via massie)
AVRO-438. Clarify spec. (Amichai Rothman via cutting)
AVRO-445. avro_size_data() to pre-calculate the size of an
avro_datum_t in serialized form (Bruce Mitchener via massie)
AVRO-443. Endianness is determined at configure time rather
than compile time (Bruce Mitchener via massie)
AVRO-448. encoding_binary.c doesn't build on big endian platforms
(Bruce Mitchener via massie)
AVRO-442. sizeof void* and sizeof long detected at configure time
(Bruce Mitchener via massie)
AVRO-444. Fix warnings (Bruce Mitchener via massie)
AVRO-452. Include cleanup (Bruce Mitchener via massie)
AVRO-453. More warning cleanup (Bruce Mitchener via massie)
AVRO-440. config.h output not correctly used (Bruce Mitchener via massie)
AVRO-460. Performance improvement to write_long() (Bruce Mitchener
via massie)
AVRO-455. Update Java dependencies. (David Dabbs via cutting)
AVRO-446. Add a build.sh task that signs and checksums artifacts. (cutting)
AVRO-454. Change DataFileStream to implement Closeable. (cutting)
BUG FIXES
AVRO-424. Fix the specification of the deflate codec.
(Scott Carey via cutting)
AVRO-431. Fix Java's mvn-install Ant target to work in clean build.
(cutting)
AVRO-437. Fix some typos in docs. (Amichai Rothman via cutting)
AVRO-433. Fix exceptions in Java reflect RPC. (cutting)
Avro 1.3.0 (24 February 2010)
INCOMPATIBLE CHANGES
AVRO-185. Java's specific API no longer depends on reflection.
This reverses the inheritance of most classes in the specific and
reflect packages. (cutting)
AVRO-201. Move Python data file code into its own module.
(Jeff Hammerbacher via cutting)
AVRO-80. Java reflect API no longer uses Avro-specific classes
for string and array. Instead now Java strings and arrays or
Lists are used. (cutting)
AVRO-237. Reflect API now represents any Java Collection as an
Avro array. Also inherited fields are included in records, and
inherited methods in protocols. Finally, Java shorts are
supported as integers. (cutting)
AVRO-160. Revised data file format and Java API. Simplified
format now permits streaming but no longer supports multiple
schemas per file. Java API for reading is iterator-based.
AVRO-278. Changed GenericRecord API and implementation to be
array-based rather than Map-based. (cutting)
AVRO-163. Re-organized source tree into separate directories for
each language. (cutting)
AVRO-344. Complete rewrite of C implementation (massie)
AVRO-349. Fix C++ build for post-AVRO-163. (sbanacho)
AVRO-374. Remove and ignore files that are created by autoreconf. (sbanacho)
AVRO-387. Add IndexedRecord interface, common to both specific and
generic records, so that toString() and hashCode() implementations
can be shared. Also fix toString() and hashCode() to not throw
NPE for uninitialized records. (cutting)
NEW FEATURES
AVRO-151. Validating Avro schema parser for C (massie)
AVRO-158. Permit appending to a data file from Java. (cutting)
AVRO-154. Add 'induce' sub-command to avroj command line tool.
(Philip Zeyliger via cutting)
AVRO-245. Add four new avroj commands:
- fromjson Reads JSON records and writes to an Avro data file.
- tojson Dumps an Avro data file as JSON, one record per line.
- fragtojson Renders a binary-encoded Avro datum as JSON.
- jsontofrag Renders a JSON-encoded Avro datum as binary.
(Philip Zeyliger via cutting)
AVRO-272. Extend RPCContext to include message.
(Philip Zeyliger via cutting)
AVRO-258. Add GenAvro language tool. (Todd Lipcon via cutting)
AVRO-267. Add two new avroj commands: rpcsend and rpcreceive.
(Philip Zeyliger via cutting)
AVRO-271. Add a Java local RPC transceiver. (Philip Zeyliger via cutting)
AVRO-273, AVRO-275, & AVRO-279. Add Java RPC statistics collection
and display. (Philip Zeyliger via cutting)
AVRO-152. Add support for documentation strings to schemas,
protocols, and messages. (Philip Zeyliger via cutting)
AVRO-274. Make Java's data file sync interval configurable. (cutting)
AVRO-346. Add function to validate a datum against a schema. (massie)
AVRO-306. Add Ruby implementation. (Jeff Hodges via cutting)
AVRO-135. Add compression to data files. (philz)
AVRO-368. Reserve avro.* in object container files, and
rename existing reserved words. (philz)
AVRO-380. Avro Container File format change: add block size to block
descriptor. (Scott Carey via philz)
AVRO-322. Add a working client and server to Python implementation
using HTTP as a transport (hammer)
AVRO-287. Make RPC interop tests work with new Python implementation
(hammer)
AVRO-136. Add support for building/releasing python eggs (hammer)
AVRO-414. Add Java support for concatenating and appending data
files. (Scott Carey via cutting)
IMPROVEMENTS
AVRO-157. Changes from code review comments for C++. (sbanacho)
AVRO-168. Correct shared library versioning for C implementation (massie)
AVRO-142. Remove some Java unused fields and imports. Start
running checkstyle on Java test code. (Philip Zeyliger via cutting)
AVRO-147. Use configure to create makefile for C++ builds. (sbanacho)
AVRO-155. Make python avro.io.DataFileReader iterable.
(Jeff Hammerbacher via sharad)
AVRO-148. Add ant target to build C++ project. (sbanacho)
AVRO-166. Improve error checking in Java schema parser.
(Philip Zeyliger via cutting)
AVRO-167. Refactor Java SpecificCompiler to simplify testing, and
add some tests. (Philip Zeyliger via cutting)
AVRO-146. Add support for using Eclipse to develop Avro's Java.
(Philip Zeyliger via cutting)
AVRO-149. Add Java command-line executable, "avroj".
(Philip Zeyliger via cutting)
AVRO-175. Split the avro_io interface into two interfaces: avro_reader
and avro_writer (massie)
AVRO-179. Add units tests for all Avro C primitives (massie)
AVRO-177. Upgrade Java dependencies to recent versions. (cutting)
AVRO-180. Enhance code generator script and unit tests. (sbanacho)
AVRO-186. Full read-path interoperability test (massie)
AVRO-187. Move top-level source files into separate directories
for easier maintenance (massie)
AVRO-188. Need to update svn ignores (massie)
AVRO-190. Use fixed size C++ types for Avro fixed types. (sbanacho)
AVRO-192. Improved errors for Java schema parsing problems. (cutting)
AVRO-195. Complex type support for write streams (massie)
AVRO-197. Add mapping of name to index for records and enums. (sbanacho)
AVRO-204. Change the way symbolic references are tracked. (sbanacho)
AVRO-205. APIs for checking schema resolution. (sbanacho)
AVRO-203. Reformat license in Python sources.
(Jeff Hammerbacher via cutting)
AVRO-199. Make Python test schemas more readable.
(Jeff Hammerbacher via cutting)
AVRO-216. Formatting cleanups to schema.py.
(Jeff Hammerbacher via cutting)
AVRO-202. Add __all__ listing to Python module, to ease import.
(Jeff Hammerbacher via cutting)
AVRO-229. Change Java to implement Flushable and Closeable
interfaces where appropriate. (tomwhite via cutting)
AVRO-231. Tutorial added to C++ docs. (sbanacho)
AVRO-220. Dynamic schema resolution from writer to reader. (sbanacho)
AVRO-213. Add Apache RAT to tests, to validate licenses. (cutting)
AVRO-233. Elaborate Java tool API. (Philip Zeyliger via cutting)
AVRO-236. Add protocol support to avroj induce tool. (cutting)
AVRO-234. C++ code cleanup. (sbanacho)
AVRO-240. In Python, if simplejson is not available, try using
2.6's built-in json module. (Jeff Hammerbacher via cutting)
AVRO-242. In Java, add support for extensible string-valued
properties to schemas. (cutting)
AVRO-241. In Java, add a union annotation for reflection. (cutting)
AVRO-249. In reflection, implement Java short as an int whose
"java-class" property is set to java.lang.Short. (cutting)
AVRO-247. In reflection, add Stringable annotation to indicate
classes that can be represented by an Avro string. (cutting)
AVRO-246 Java schema parser should take schema from InputStream
in addition to file. (thiru)
AVRO-250. Make reflect's Union annotation applicable to message
parameters and return types too. (cutting)
AVRO-253. Improve documentation of schema names in specification. (cutting)
AVRO-257. Remove some dead Java code and un-needed casts.
(Kevin Oliver via cutting)
AVRO-263. Change avroj command line tools to return exit codes.
(Todd Lipcon via cutting)
AVRO-260. Upgrade to Jackson 1.4.0. (cutting)
AVRO-269. Use java compiler to validate specific compiler's output.
(Philip Zeyliger via cutting)
AVRO-219. Rework Python API. (Jeff Hammerbacher via cutting)
AVRO-264. Rework Python RPC. (Jeff Hammerbacher via cutting)
AVRO-75. Clarify that missing values with no default values cause
errors, and fix Java implementation. (cutting)
AVRO-259. Add null schema check in GenericData.Record and
GenericData.Array construtors. (Kevin Oliver via cutting)
AVRO-294. Clarify that bytes and fixed are unsigned, and how their
JSON default values are interpreted. (Jeff Hammerbacher & cutting)
AVRO-298. Fix Java's DatumReader and DatumWriter APIs to better
use generics. (philz via cutting)
AVRO-288. Implement schema resolution for Python parameters.
(Jeff Hammerbacher via cutting)
AVRO-282. Improve avroj build to better specify dependencies.
(philz via cutting)
AVRO-309. Fix python build, post-AVRO-163. (cutting)
AVRO-310. Improve top-level build.sh. (cutting)
AVRO-317. Restore Java data interop tests. (cutting)
AVRO-320. Rename avroj to be avro-tools. Also add LICENSE.txt and
NOTICE.txt to it, print the NOTICE.txt and version in help, and
include the tools jar in distributions. (cutting)
AVRO-314. Add mvn-install ant task to publish jar to local Maven
repository. (Aaron Kimball via cutting)
AVRO-243. Use automake generated Makefile.in. (sbanacho)
AVRO-198. Fix specification of protocol name, also clarify which
properties are required. (cutting)
AVRO-336. Check that appropriate schemas are passed to
GenericData#Record and #Array. (cutting)
AVRO-353. Publish the C API to avro-doc package when 'dist' target
run (massie)
AVRO-359. Add support for encoding/decoding arrays and maps (massie)
AVRO-360. Standardize on Linux coding style instead of GNU (massie)
AVRO-362. Add test to ensure Python implementation handles Union schema
with two fixed types of different names (hammer)
AVRO-364. Add support for encoding/decoding records (massie)
AVRO-367. Complete memory management for the C implementation (massie)
AVRO-369. Add support for encoding/decoding enum values (massie)