You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/11/08 14:43:35 UTC

[avro] branch avro-3646-serde-for-enum-mixed-variants updated (92994381c -> c63eea31b)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch avro-3646-serde-for-enum-mixed-variants
in repository https://gitbox.apache.org/repos/asf/avro.git


    omit 92994381c AVRO-3646: Simplify the serialization tests
    omit 243696c37 AVRO-3646: Add unit tests for deserializing Value to Enum with different variants
    omit df6d62868 AVRO-3646: Add a unit test for serializing Enum with different kind of variants
     add 84ea6cb19 Bump ctor from 0.1.23 to 0.1.26 in /lang/rust (#1918)
     add 627b00549 AVRO-3644: handle java.util.Optional as a nullable value (#1915)
     add 5a0fb0ffc Update blog to invite Martin Grigorov (#1865)
     add 0d241cb03 Bump serde_json from 1.0.86 to 1.0.87 in /lang/rust (#1923)
     add 016323828 AVRO-3650: [C++] Fix build on Manjaro (#1920)
     add 4ed213c63 Bump anyhow from 1.0.65 to 1.0.66 in /lang/rust (#1924)
     add c1e57e5bb Bump syn from 1.0.102 to 1.0.103 in /lang/rust (#1925)
     add d4f527a8b Bump serde from 1.0.145 to 1.0.147 in /lang/rust (#1926)
     add 8daf14945 Bump grpc.version from 1.50.0 to 1.50.2 in /lang/java (#1931)
     add 6e1d87e5b Bump mockito-core from 4.8.0 to 4.8.1 in /lang/java (#1929)
     add a99da1cc9 Bump plexus-utils from 3.4.2 to 3.5.0 in /lang/java (#1928)
     add fdc73684d Bump protobuf-java from 3.21.7 to 3.21.8 in /lang/java (#1927)
     add ef1e5394e Bump zstd-jni from 1.5.2-4 to 1.5.2-5 in /lang/java (#1930)
     add e2d59b29d Improve formatting of Avro types and JSON code (#1934)
     add 50a12a3bb Improve generated comments and compiler option description (#1935)
     add 04f024369 Bump darling from 0.14.1 to 0.14.2 in /lang/rust (#1936)
     add fb4625ec4 Bump protobuf-java from 3.21.8 to 3.21.9 in /lang/java (#1938)
     add 382ceb1e5 Bump typed-builder from 0.10.0 to 0.11.0 in /lang/rust (#1939)
     add a6b5879b5 AVRO-3661: [Rust] Fix new clippy errors introduced with Rust 1.65 (#1941)
     add 965e0a2df AVRO-3532: Test field names in C# (#1866)
     add 183474281 AVRO-3659: Typo in python example (#1942)
     add efb977928 Bump commons-compress from 1.21 to 1.22 in /lang/java (#1943)
     add 48b9bacf3 AVRO-3663: [Rust] Allow raw identifiers as field names (#1945)
     add cbfad4a46 AVRO-3646: Add a unit test for serializing Enum with different kind of variants
     add 2994f700a AVRO-3646: Add unit tests for deserializing Value to Enum with different variants
     add 35dbcb742 AVRO-3646: Simplify the serialization tests
     add c63eea31b AVRO-3546: Extract the unit tests for serializing enums to IT tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (92994381c)
            \
             N -- N -- N   refs/heads/avro-3646-serde-for-enum-mixed-variants (c63eea31b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../news/new-pmc-martin-grigorov.md}               |  17 +-
 .../++version++/Getting started (Python)/_index.md |   2 +-
 .../en/docs/++version++/Specification/_index.md    |  16 +-
 lang/c++/CMakeLists.txt                            |   2 +-
 lang/c++/impl/avrogencpp.cc                        |   2 +-
 .../src/apache/test/Generic/GenericRecordTests.cs  |  18 ++
 lang/csharp/src/apache/test/Schema/SchemaTests.cs  |  19 +++
 .../apache/avro/reflect/ReflectDatumReader.java    |  10 ++
 .../apache/avro/reflect/ReflectDatumWriter.java    |   3 +
 .../org/apache/avro/specific/SpecificData.java     |   3 +
 .../java/org/apache/avro/reflect/TestReflect.java  |  13 ++
 .../avro/reflect/TestReflectDatumReader.java       |  83 +++++++++
 .../specific/templates/java/classic/record.vm      |   4 +-
 lang/java/maven-plugin/pom.xml                     |   2 +-
 .../org/apache/avro/mojo/AbstractAvroMojo.java     |   3 +-
 lang/java/pom.xml                                  |  10 +-
 lang/rust/Cargo.lock                               |  40 ++---
 lang/rust/avro/Cargo.toml                          |   8 +-
 lang/rust/avro/benches/serde.rs                    |  38 ++---
 lang/rust/avro/benches/serde_json.rs               |   2 +-
 lang/rust/avro/src/encode.rs                       |   2 +-
 lang/rust/avro/src/schema.rs                       |   2 +-
 lang/rust/avro/src/ser.rs                          | 103 +++--------
 lang/rust/avro/tests/serde.rs                      | 190 +++++++++++++++++++++
 lang/rust/avro_derive/Cargo.toml                   |   8 +-
 lang/rust/avro_derive/src/lib.rs                   |   3 +
 lang/rust/avro_derive/tests/derive.rs              |  16 ++
 lang/rust/avro_test_helper/Cargo.toml              |   2 +-
 lang/rust/wasm-demo/Cargo.toml                     |   2 +-
 29 files changed, 455 insertions(+), 168 deletions(-)
 copy doc/content/en/{project/_index.md => blog/news/new-pmc-martin-grigorov.md} (57%)
 create mode 100644 lang/rust/avro/tests/serde.rs