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

[avro] branch dependabot/cargo/lang/rust/md-5-0.10.0 updated (c94f16a -> 646ad02)

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

github-bot pushed a change to branch dependabot/cargo/lang/rust/md-5-0.10.0
in repository https://gitbox.apache.org/repos/asf/avro.git.


 discard c94f16a  Update md-5 requirement from 0.9.1 to 0.10.0 in /lang/rust
     add 69acacd  Bump protobuf-java from 3.17.3 to 3.19.1 in /lang/java (#1421)
     add d568e6d  AVRO-3268: Fix whitespace error in PHP lint (#1428)
     add c528cfd  AVRO-3269: Add missing dependencies to Perl Test workflow (#1430)
     add 8a5fc3c  AVRO-3263: Fix warning in Perl encoder when validating a long field (#1422)
     add 895cdc8  AVRO-3252: Add hasattr check for mode attr in DataFileReader (#1406)
     add a946ea7  AVRO-3721 Support Python 3.10; Fix Annotations (#1432)
     add 57e0bbf  AVRO-3218 Fix parsing of logicalType = decimal (#1350)
     add 33d86a6  AVRO-3243: Workaround JDK-8161372 - perf issue in ConcurrentHashMap#computeIfAbsent() (#1392)
     add 28f54cb  AVRO-3229: Raise Exception on Invalid Enum Default (#1433)
     add e7e4817  Minor non functional changes (#1378)
     add 1aa963c  AVRO-2867: Fix NullPointerException on record-valued defaults (#1412)
     add 7c5d8df  AVRO-3257: IDL support for nullable types (#1411)
     add d97e81f  AVRO-3251: AVDL files containing fields called "uuid" no longer compile. (#1395)
     add bbe3db4  AVRO-3265: Fix avrogen code generation for Avro namespaces (#1423)
     add e5a0e06  AVRO-3251: Minor testcase fix after merge (#1435)
     add ea07ac0  AVRO-3205 Rust: Update Cargo.toml [package] information (#1344)
     add 6c2e370  AVRO-3241 [Java] Publish SNAPSHOT artifacts (#1385)
     add 336f04a  duplicate line remove (#1440)
     add 04e41fc  AVRO-3234: add new codec to lang/rust: zstandard (#1370)
     add 646ad02  Update md-5 requirement from 0.9.1 to 0.10.0 in /lang/rust

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   (c94f16a)
            \
             N -- N -- N   refs/heads/dependabot/cargo/lang/rust/md-5-0.10.0 (646ad02)

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:
 .../{spotless.yml => java-publish-snapshot.yml}    | 28 ++++---
 .github/workflows/test-lang-perl.yml               |  6 +-
 .github/workflows/test-lang-py.yml                 |  6 +-
 .github/workflows/test-lang-rust-ci.yml            |  2 +-
 .gitignore                                         |  2 +
 BUILD.md                                           |  2 +-
 doc/src/content/xdocs/idl.xml                      | 23 +++++-
 lang/c++/test/CodecTests.cc                        |  2 +-
 lang/csharp/build.sh                               |  2 +-
 lang/csharp/src/apache/main/CodeGen/CodeGen.cs     | 13 ++--
 lang/csharp/src/apache/main/CodeGen/CodeGenUtil.cs |  4 +-
 lang/csharp/src/apache/test/CodGen/CodeGenTest.cs  | 10 +++
 .../avro/src/main/java/org/apache/avro/Schema.java | 12 +++
 .../java/org/apache/avro/reflect/ReflectData.java  |  6 +-
 .../org/apache/avro/specific/SpecificData.java     |  6 +-
 .../ClassValueCache.java => MapUtil.java}          | 40 +++++-----
 .../avro/compiler/idl/IsResolvedSchemaVisitor.java | 62 ++++++++++++++++
 .../apache/avro/compiler/idl/ResolvingVisitor.java |  5 +-
 .../apache/avro/compiler/idl/SchemaResolver.java   | 14 ++++
 .../org/apache/avro/compiler/schema/Schemas.java   |  6 +-
 .../javacc/org/apache/avro/compiler/idl/idl.jj     | 86 +++++++++++++++++++---
 .../compiler/src/test/idl/input/reservedwords.avdl |  5 ++
 lang/java/compiler/src/test/idl/input/simple.avdl  | 19 +++--
 lang/java/compiler/src/test/idl/input/uuid.avdl    |  5 ++
 .../compiler/src/test/idl/output/forward_ref.avpr  |  2 +-
 lang/java/compiler/src/test/idl/output/import.avpr | 20 +++++
 .../compiler/src/test/idl/output/nestedimport.avpr | 20 +++++
 .../src/test/idl/output/reservedwords.avpr         | 20 +++++
 lang/java/compiler/src/test/idl/output/simple.avpr | 14 ++--
 lang/java/compiler/src/test/idl/output/uuid.avpr   |  4 +
 .../org/apache/avro/grpc/ServiceDescriptor.java    |  5 +-
 lang/java/pom.xml                                  |  2 +-
 lang/perl/lib/Avro/Schema.pm                       |  1 +
 lang/perl/t/02_bin_encode.t                        | 30 ++++++++
 lang/php/lib/Datum/AvroIOBinaryDecoder.php         |  1 -
 lang/py/avro/__main__.py                           |  5 +-
 lang/py/avro/datafile.py                           | 14 ++--
 lang/py/avro/errors.py                             |  4 +
 lang/py/avro/io.py                                 | 14 ++--
 lang/py/avro/schema.py                             |  7 +-
 lang/py/avro/test/test_schema.py                   |  5 +-
 lang/py/setup.cfg                                  |  1 +
 lang/py/tox.ini                                    |  1 +
 lang/rust/CHANGELOG.md                             |  5 +-
 lang/rust/Cargo.toml                               | 15 ++--
 lang/rust/README.md                                | 21 ++++--
 lang/rust/README.tpl                               | 11 ++-
 lang/rust/src/codec.rs                             | 33 +++++++++
 lang/rust/src/error.rs                             |  6 ++
 lang/rust/src/lib.rs                               |  2 +-
 lang/rust/src/types.rs                             |  1 -
 share/docker/Dockerfile                            |  9 ++-
 52 files changed, 510 insertions(+), 129 deletions(-)
 copy .github/workflows/{spotless.yml => java-publish-snapshot.yml} (62%)
 copy lang/java/avro/src/main/java/org/apache/avro/util/{internal/ClassValueCache.java => MapUtil.java} (57%)
 create mode 100644 lang/java/compiler/src/main/java/org/apache/avro/compiler/idl/IsResolvedSchemaVisitor.java