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 2023/10/29 06:27:07 UTC

(avro) branch dependabot/maven/lang/java/io.netty-netty-bom-4.1.100.Final updated (0185ecd08 -> 4d7b3eda6)

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

github-bot pushed a change to branch dependabot/maven/lang/java/io.netty-netty-bom-4.1.100.Final
in repository https://gitbox.apache.org/repos/asf/avro.git


 discard 0185ecd08 Bump io.netty:netty-bom from 4.1.99.Final to 4.1.100.Final in /lang/java
     add 5ac620f5e AVRO-3609: [Rust] Remove wrong collection of custom attributes (#2556)
     add 9f5872f29 Bump @babel/traverse from 7.17.9 to 7.23.2 in /lang/js (#2559)
     add d6837ed87  AVRO-3886: [Rust] Serialize attribute in schema to support custom logical type (#2557)
     add 6d6728b56 AVRO-3887: Remove redundant casts in BinaryDecoder (#2558)
     add 369ae568f fix CVE-2023-42503 by using Apache Commons Compress 1.24.0 (#2560)
     add cc9b66870 AVRO-3871: Add blocking direct binary encoder (#2521)
     add eeb1f02d3 AVRO-3852: Upgrade CI tests to Java 21 GA release (#2525)
     add 2b1955947 AVRO-3641: Adds support for nullSafeAnnotations to java SpecificCompiler (#2142)
     add 6f6cc60b5 Removed redundant casts from DirectBinaryDecoder (#2563)
     add ec4ca5d56 AVRO-3894: [Rust] Record field aliases are not taken into account when serializing (#2566)
     add 807314512 AVRO-3892: [Rust] Support to resolve fixed from bytes and deserialize bytes in deserialize_any (#2567)
     add 1ad67e3ed Bump grpc.version from 1.58.0 to 1.59.0 in /lang/java (#2562)
     add 52b421d14 Bump com.fasterxml.jackson:jackson-bom in /lang/java (#2551)
     add f0fd236f2 Bump com.google.protobuf:protobuf-java in /lang/java (#2539)
     add 4d7b3eda6 Bump io.netty:netty-bom from 4.1.99.Final to 4.1.100.Final in /lang/java

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   (0185ecd08)
            \
             N -- N -- N   refs/heads/dependabot/maven/lang/java/io.netty-netty-bom-4.1.100.Final (4d7b3eda6)

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:
 .github/workflows/test-lang-java.yml               |   6 +-
 .../avro-service-archetype/src/main/pom/pom.xml    |   6 +-
 .../projects/basic/archetype.properties            |   0
 .../projects/basic/goal.txt                        |   0
 lang/java/avro/pom.xml                             |   5 +
 .../java/org/apache/avro/io/BinaryDecoder.java     |   9 +-
 .../avro/io/BlockingDirectBinaryEncoder.java       | 135 ++++++
 .../org/apache/avro/io/DirectBinaryDecoder.java    |   8 +-
 .../org/apache/avro/io/DirectBinaryEncoder.java    |  12 +-
 .../java/org/apache/avro/io/EncoderFactory.java    |  43 ++
 .../apache/avro/io/TestBinaryEncoderFidelity.java  |  42 ++
 .../avro/io/TestBlockingDirectBinaryEncoder.java   |  99 ++++
 .../test/java/org/apache/avro/io/TestEncoders.java |  54 ++-
 .../avro/specific/TestRecordWithLogicalTypes.java  |  18 +-
 .../avro/specific/TestRecordWithMapsAndArrays.java | 535 +++++++++++++++++++++
 .../resources/TestRecordWithMapsAndArrays.avsc     |  23 +
 .../avro/compiler/specific/SpecificCompiler.java   |  12 +
 .../specific/templates/java/classic/record.vm      |  13 +-
 .../org/apache/avro/mojo/AbstractAvroMojo.java     |  14 +
 lang/java/pom.xml                                  |   8 +-
 .../org/apache/avro/tool/SpecificCompilerTool.java |  11 +-
 .../input/nullsafeannotationsfieldstest.avsc       |   8 +
 .../baseball/NullSafeAnnotationsFieldsTest.java}   | 262 ++++++----
 .../apache/avro/tool/TestSpecificCompilerTool.java |  13 +
 lang/js/package-lock.json                          | 275 +++++++++--
 lang/rust/avro/examples/benchmark.rs               |   2 +-
 lang/rust/avro/src/de.rs                           | 110 ++++-
 lang/rust/avro/src/decimal.rs                      |   2 +-
 lang/rust/avro/src/encode.rs                       |  37 +-
 lang/rust/avro/src/error.rs                        |   2 +-
 lang/rust/avro/src/schema.rs                       |  87 +++-
 lang/rust/avro/src/schema_compatibility.rs         |  45 ++
 lang/rust/avro/src/types.rs                        |  46 ++
 lang/rust/avro/src/writer.rs                       |  37 +-
 pom.xml                                            |   1 +
 35 files changed, 1778 insertions(+), 202 deletions(-)
 rename lang/java/archetypes/avro-service-archetype/src/test/{integration => resources}/projects/basic/archetype.properties (100%)
 rename lang/java/archetypes/avro-service-archetype/src/test/{integration => resources}/projects/basic/goal.txt (100%)
 create mode 100644 lang/java/avro/src/main/java/org/apache/avro/io/BlockingDirectBinaryEncoder.java
 create mode 100644 lang/java/avro/src/test/java/org/apache/avro/io/TestBlockingDirectBinaryEncoder.java
 create mode 100644 lang/java/avro/src/test/java/org/apache/avro/specific/TestRecordWithMapsAndArrays.java
 create mode 100644 lang/java/avro/src/test/resources/TestRecordWithMapsAndArrays.avsc
 create mode 100644 lang/java/tools/src/test/compiler/input/nullsafeannotationsfieldstest.avsc
 copy lang/java/tools/src/test/compiler/{output/OptionalGettersAllFieldsTest.java => output-string/avro/examples/baseball/NullSafeAnnotationsFieldsTest.java} (54%)