This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/lang/rust/sha2-0.10.0
in repository https://gitbox.apache.org/repos/asf/avro.git.
discard 1335260 Update sha2 requirement from 0.9.8 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 9da79b6 AVRO-3246 Rust: Add new codec: bzip2 (#1389)
add 54f37e5 AVRO-3245 Rust: Replace crc crate with crc32fast (#1388)
add 6a67d71 Update strum requirement from 0.21.0 to 0.23.0 in /lang/rust
(#1408)
add c4ce231 Update strum_macros requirement from 0.21.1 to 0.23.1 in
/lang/rust (#1409)
add 87d04ef AVRO-3247 Rust: Run MIRI checks (#1390)
add 74f9a51 AVRO-2722 Move the 'random' variable to be local to the
method where it is being used (#1365)
add bce3866 AVRO-3197 Fallback to the 'type' when the logical type does
not support the type (#1340)
add 86e11fb Update sha2 requirement from 0.9.8 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 (1335260)
\
N -- N -- N refs/heads/dependabot/cargo/lang/rust/sha2-0.10.0
(86e11fb)
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 +-
...ang-rust-clippy.yml => test-lang-rust-miri.yml} | 31 +++++---
.gitignore | 2 +
BUILD.md | 2 +-
doc/src/content/xdocs/idl.xml | 23 +++++-
lang/c++/impl/DataFile.cc | 3 +-
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 | 27 ++++---
lang/rust/README.md | 31 ++++++--
lang/rust/README.tpl | 11 ++-
lang/rust/src/codec.rs | 89 ++++++++++++++++++++-
lang/rust/src/error.rs | 8 +-
lang/rust/src/lib.rs | 7 +-
lang/rust/src/schema.rs | 93 +++++++++++++++++++---
lang/rust/src/types.rs | 1 -
lang/rust/tests/schema.rs | 46 +++++++++--
share/docker/Dockerfile | 9 ++-
56 files changed, 729 insertions(+), 168 deletions(-)
copy .github/workflows/{spotless.yml => java-publish-snapshot.yml} (62%)
copy .github/workflows/{test-lang-rust-clippy.yml => test-lang-rust-miri.yml}
(60%)
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