This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/gradle/junit-5.11.2
in repository https://gitbox.apache.org/repos/asf/iceberg.git
discard efec4c7d58 Build: Bump junit from 5.10.1 to 5.11.2
add 745e819f37 AWS: Make sure overridden configurations are applied
(#11274)
add 5dde680797 Build: Bump com.google.cloud:libraries-bom from 26.47.0 to
26.48.0 (#11271)
add 3220fad982 Core: Fix UnicodeUtil#truncateStringMax returns malformed
string. (#11161)
add f0e4fd2f55 Core: Add internal Avro reader (#11108)
add 208ab20dc9 Arrow: Remove unused readers (#11276)
add 67dc9e58cd Spec: Add v3 types and type promotion (#10955)
add d7f668ab89 Build: Bump mkdocs-material from 9.5.38 to 9.5.39 (#11272)
add 5fa3bbeec2 Build: Bump com.google.errorprone:error_prone_annotations
(#11270)
add 410477fd9e Build: Bump junit-platform from 1.11.1 to 1.11.2 (#11266)
add 28265cd7c0 Build: Bump org.testcontainers:testcontainers from 1.20.1
to 1.20.2 (#11265)
add 2ed79cfc27 Build: Bump junit from 5.10.1 to 5.11.2
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 (efec4c7d58)
\
N -- N -- N refs/heads/dependabot/gradle/junit-5.11.2
(2ed79cfc27)
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:
.../java/org/apache/iceberg/types/Comparators.java | 6 +-
.../java/org/apache/iceberg/util/UnicodeUtil.java | 24 +-
...orizedDictionaryEncodedParquetValuesReader.java | 38 ----
.../VectorizedParquetDefinitionLevelReader.java | 108 ---------
.../apache/iceberg/aws/s3/S3FileIOProperties.java | 12 +-
.../apache/iceberg/aws/TestS3FileIOProperties.java | 7 +-
.../java/org/apache/iceberg/ManifestReader.java | 26 ++-
.../org/apache/iceberg/avro/GenericAvroReader.java | 64 +-----
.../org/apache/iceberg/avro/InternalReader.java | 252 +++++++++++++++++++++
.../org/apache/iceberg/avro/InternalReaders.java | 110 +++++++++
.../java/org/apache/iceberg/avro/ValueReaders.java | 98 ++++++++
.../org/apache/iceberg/TestManifestReader.java | 3 +-
.../org/apache/iceberg/TestMetricsTruncation.java | 34 ++-
format/spec.md | 49 +++-
gradle/libs.versions.toml | 8 +-
site/requirements.txt | 2 +-
16 files changed, 601 insertions(+), 240 deletions(-)
create mode 100644
core/src/main/java/org/apache/iceberg/avro/InternalReader.java
create mode 100644
core/src/main/java/org/apache/iceberg/avro/InternalReaders.java