This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/lang/java/com.google.protobuf-protobuf-java-4.33.0
in repository https://gitbox.apache.org/repos/asf/avro.git
discard c7b2d7ccbe Bump com.google.protobuf:protobuf-java in /lang/java
add e0217aefda AVRO-4189: [java] Simplify the setting of the serializable
classes (#3525)
add 22e9eae372 Bump io.netty:netty-bom from 4.2.4.Final to 4.2.7.Final in
/lang/java (#3524)
add afe44e2536 Bump com.puppycrawl.tools:checkstyle from 11.0.1 to 12.1.0
in /lang/java (#3523)
add 26cc1b1c5a Bump org.codehaus.mojo:exec-maven-plugin in /lang/java
(#3521)
add 6226d0bf2c Bump archetype-plugin.version from 3.4.0 to 3.4.1 in
/lang/java (#3513)
add 125bfc05af Bump github/codeql-action from 3 to 4 (#3512)
add d93ba6b0e1 Bump grpc.version from 1.75.0 to 1.76.0 in /lang/java
(#3509)
add f188235b74 Bump org.codehaus.mojo:extra-enforcer-rules in /lang/java
(#3505)
add d6ccf2d9d8 Bump com.google.protobuf:protobuf-java 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 (c7b2d7ccbe)
\
N -- N -- N
refs/heads/dependabot/maven/lang/java/com.google.protobuf-protobuf-java-4.33.0
(d6ccf2d9d8)
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/codeql-csharp-analysis.yml | 6 +-
.github/workflows/codeql-java-analysis.yml | 4 +-
.github/workflows/codeql-js-analysis.yml | 6 +-
.github/workflows/codeql-py-analysis.yml | 6 +-
lang/java/avro/pom.xml | 3 -
lang/java/avro/src/it/pom.xml | 21 +-
.../apache/avro/specific/SpecificDatumReader.java | 95 ++------
.../apache/avro/util/ClassSecurityValidator.java | 254 +++++++++++++++++++++
.../main/java/org/apache/avro/util/ClassUtils.java | 12 +-
.../avro/reflect/TestReflectDatumReader.java | 18 ++
.../avro/specific/TestSpecificRecordWithUnion.java | 31 ++-
.../avro/util/TestClassSecurityValidator.java | 115 ++++++++++
lang/java/interop-data-test/src/it/check/pom.xml | 17 ++
lang/java/ipc/pom.xml | 5 +-
.../avro/mapred/tether/TestWordCountTether.java | 1 +
lang/java/pom.xml | 32 ++-
.../java/org/apache/avro/tool/TestTetherTool.java | 1 +
pom.xml | 4 +-
18 files changed, 523 insertions(+), 108 deletions(-)
create mode 100644
lang/java/avro/src/main/java/org/apache/avro/util/ClassSecurityValidator.java
create mode 100644
lang/java/avro/src/test/java/org/apache/avro/util/TestClassSecurityValidator.java