Repository: avro Updated Branches: refs/heads/branch-1.7 58f8b3414 -> 7941a1422
AVRO-1485: Specification says Record field type can be record name but implementation allows any named type. (cherry picked from commit 21b369895cc6826b862605796bc35704bd142841) (cherry picked from commit ea472174c7c1281270d7b071a76ee308bc772189) Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/7941a142 Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/7941a142 Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/7941a142 Branch: refs/heads/branch-1.7 Commit: 7941a14223c329d7bc0e62bf7e59db276a925539 Parents: 58f8b34 Author: Nandor Kollar <[email protected]> Authored: Thu Jul 20 16:07:58 2017 +0200 Committer: Gabor Szadovszky <[email protected]> Committed: Thu Jul 20 16:19:35 2017 +0200 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ doc/src/content/xdocs/spec.xml | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/7941a142/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 30c2a83..98e0245 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -65,6 +65,9 @@ Trunk (not yet released) AVRO-1771. Add LICENSE and NOTICE to avro-doc artifact. (blue via tomwhite) + AVRO-1485: Specification says Record field type can be record name but implementation allows any named type. + (Nandor Kollar via gabor) + Avro 1.7.7 (23 July 2014) NEW FEATURES http://git-wip-us.apache.org/repos/asf/avro/blob/7941a142/doc/src/content/xdocs/spec.xml ---------------------------------------------------------------------- diff --git a/doc/src/content/xdocs/spec.xml b/doc/src/content/xdocs/spec.xml index 8c108c8..ff838d7 100644 --- a/doc/src/content/xdocs/spec.xml +++ b/doc/src/content/xdocs/spec.xml @@ -102,9 +102,7 @@ of the field (required), and </li> <li><code>doc</code>: a JSON string describing this field for users (optional).</li> - <li><code>type:</code> A JSON object defining a schema, or - a JSON string naming a record definition - (required).</li> + <li><code>type:</code> a <a href="#schemas">schema</a>, as defined above</li> <li><code>default:</code> A default value for this field, used when reading instances that lack this field (optional). Permitted values depend on the
