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

github-bot pushed a change to branch dependabot/maven/avro.version-1.12.0
in repository https://gitbox.apache.org/repos/asf/parquet-java.git


 discard 0cb5d9d73 Bump avro.version from 1.11.3 to 1.12.0
     add 312a15f53 GH-2992: Gate LocalTimestamp references in 
AvroSchemaConverter (#2993)
     add bc4e5b416 GH-2952: Add maven wrapper (#2953)
     add 3ac860e11 GH-2994: Optimize string to binary conversion in 
AvroWriteSupport (#2995)
     add 3b5fb4b15 GH-2988: Supports disabling statistics for specific columns 
(#2989)
     add fafd9b033 GH-2986: Fails the file writing when footer size exceeds int 
max value (#2987)
     add aec7bc64d MINOR: ParquetRewriter must close opened reader/stream 
(#3002)
     add 08a4e7e62 PARQUET-2430: Add parquet joiner v2 (#1335)
     add 2b36e99ba GH-3009: Bump zstd-jni.version from 1.5.6-3 to 1.5.6-6 
(#3010)
     add ac6a5a005 GH-2962: Set dictionary_page_offset even when encoding_stats 
are missing (#3012)
     add fcfd427a1 GH-3007: Ensure version specific Jackson classes are shaded 
(#3017)
     add 0c8b757a8 GH-3016: Do not use dependency-reduced pom for attached 
shaded artifact (#3015)
     add 9d33db2f6 MINOR: Don't run all the tests on a release (#2999)
     add 9b4a95b23 Bump org.tukaani:xz from 1.9 to 1.10 (#2985)
     add 96de3f4c3 GH-3013: Fix potential ClassCastException at reading 
DELTA_BYTE_ARRAY encoding (#3019)
     add d3f621bde Bump com.google.protobuf:protobuf-java in /parquet-protobuf 
(#3018)
     add eed26b4ea GH-3021: Upgrade Avro dependency (#3022)
     add 5baa9036e GH-3026: Add a fix to ParquetRewriter when you try to 
nullify and encrypt 2 separate columns (#3027)
     add 42cf31c0f Bump io.airlift:aircompressor from 0.27 to 2.0.2 (#3023)
     add 73a4430af PARQUET-3031: Support to transfer input stream when building 
ParquetFileReader (#3030)
     add d2128afda GH-3029: Fix EncryptionPropertiesHelper not to use 
java.nio.file.Path (#3038)
     add 72520d2b9 Bump net.openhft:zero-allocation-hashing from 0.16 to 
0.26ea0 (#3024)
     add bdc93464c Bump org.apache.arrow:arrow-vector from 16.1.0 to 17.0.0 
(#2980)
     add 28821888e Bump avro.version from 1.11.3 to 1.12.0

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   (0cb5d9d73)
            \
             N -- N -- N   refs/heads/dependabot/maven/avro.version-1.12.0 
(28821888e)

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/ci-hadoop2.yml                   |   8 +-
 .github/workflows/ci-hadoop3.yml                   |   8 +-
 .github/workflows/vector-plugins.yml               |   8 +-
 .../wrapper/maven-wrapper.properties               |   7 +-
 README.md                                          |  12 +-
 dev/finalize-release                               |   8 +-
 dev/prepare-release.sh                             |  10 +-
 mvnw                                               | 259 +++++++++++
 mvnw.cmd                                           | 149 ++++++
 parquet-arrow/pom.xml                              |   2 +-
 .../parquet/arrow/schema/SchemaConverter.java      |  30 ++
 .../apache/parquet/avro/AvroSchemaConverter.java   |  26 +-
 .../org/apache/parquet/avro/AvroWriteSupport.java  |   4 +-
 .../parquet/avro/TestAvroSchemaConverter.java      |  61 ++-
 parquet-benchmarks/README.md                       |  10 +-
 parquet-benchmarks/run.sh                          |   2 +-
 .../parquet/benchmarks/FilteringBenchmarks.java    |   2 +-
 .../benchmarks/NestedNullWritingBenchmarks.java    |   2 +-
 parquet-cli/README.md                              |   4 +-
 parquet-cli/pom.xml                                |   1 +
 .../apache/parquet/column/ParquetProperties.java   |  22 +
 .../parquet/column/impl/ColumnReaderBase.java      |   1 -
 .../parquet/column/impl/ColumnValueCollector.java  |   6 +-
 .../parquet/column/statistics/NoopStatistics.java  | 130 ++++++
 .../parquet/column/statistics/Statistics.java      |   9 +
 .../values/deltastrings/DeltaByteArrayReader.java  |   2 +-
 .../column/impl/TestCorruptDeltaByteArrays.java    |  44 +-
 .../parquet/column/statistics/TestStatistics.java  |  27 ++
 .../parquet/ParquetSizeOverflowException.java      |  15 +-
 parquet-hadoop/pom.xml                             |   2 +-
 .../format/converter/ParquetMetadataConverter.java |   5 +-
 .../parquet/hadoop/EncryptionPropertiesHelper.java |   8 +-
 .../apache/parquet/hadoop/ParquetFileReader.java   |  36 +-
 .../apache/parquet/hadoop/ParquetFileWriter.java   |  43 +-
 .../org/apache/parquet/hadoop/ParquetWriter.java   |  17 +-
 .../parquet/hadoop/rewrite/ParquetRewriter.java    | 498 +++++++++++++--------
 .../parquet/hadoop/rewrite/RewriteOptions.java     | 208 ++++++++-
 .../converter/TestParquetMetadataConverter.java    |  33 +-
 .../hadoop/rewrite/ParquetRewriterTest.java        | 491 ++++++++++++++------
 .../parquet/statistics/DataGenerationContext.java  |  43 +-
 .../apache/parquet/statistics/TestStatistics.java  | 122 ++++-
 parquet-jackson/README.md                          |   6 +-
 parquet-jackson/pom.xml                            |  20 +
 parquet-protobuf/pom.xml                           |   2 +-
 pom.xml                                            |   7 +-
 45 files changed, 1966 insertions(+), 444 deletions(-)
 copy parquet-generator/src/main/resources/parquet-version.properties => 
.mvn/wrapper/maven-wrapper.properties (82%)
 create mode 100755 mvnw
 create mode 100644 mvnw.cmd
 create mode 100644 
parquet-column/src/main/java/org/apache/parquet/column/statistics/NoopStatistics.java
 copy 
parquet-column/src/main/java/org/apache/parquet/io/InvalidFileOffsetException.java
 => 
parquet-common/src/main/java/org/apache/parquet/ParquetSizeOverflowException.java
 (76%)

Reply via email to