This is an automated email from the ASF dual-hosted git repository.
rskraba pushed a change to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
from 1357cd2c7 AVRO-3835: [Rust] Get rid of byteorder and zerocopy
dependencies (#2455)
new e2e57aac2 AVRO-3819: Centralize system properties that limit
allocations (#2432)
new f419da110 Bump io.netty:netty-bom from 4.1.95.Final to 4.1.96.Final in
/lang/java
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../avro/src/main/java/org/apache/avro/Schema.java | 3 +-
.../java/org/apache/avro/SystemLimitException.java | 190 +++++++
.../java/org/apache/avro/io/BinaryDecoder.java | 74 +--
.../org/apache/avro/io/DirectBinaryDecoder.java | 24 +-
.../src/main/java/org/apache/avro/util/Utf8.java | 33 +-
.../src/test/java/org/apache/avro/TestFixed.java | 23 +-
.../org/apache/avro/TestSystemLimitException.java | 164 ++++++
.../java/org/apache/avro/io/TestBinaryDecoder.java | 593 +++++++++++++--------
.../test/java/org/apache/avro/util/TestUtf8.java | 28 +-
lang/java/pom.xml | 2 +-
10 files changed, 812 insertions(+), 322 deletions(-)
create mode 100644
lang/java/avro/src/main/java/org/apache/avro/SystemLimitException.java
create mode 100644
lang/java/avro/src/test/java/org/apache/avro/TestSystemLimitException.java