This is an automated email from the ASF dual-hosted git repository.
blue pushed a change to branch 1.0.x
in repository https://gitbox.apache.org/repos/asf/iceberg.git
omit 0da95d1599 Build: Enforce & apply spotless to 1.0.x branch (#5374)
add adb4c2c9df API: Fix ID assignment in schema merging (#5395)
add 60d5ff7b3e AWS: S3OutputStream - failure to close should persist on
subsequent close calls (#5311)
add 7bb15a2d88 Core: Fix snapshot log with intermediate transaction
snapshots (#5568)
add 0c45e96583 Core: Fix exception handling in BaseTaskWriter (#5683)
add 950e6c01f9 Core: Support deleting tables without metadata files (#5510)
add c171830a61 Core, AWS: Fix Kryo serialization failure for FileIO (#5437)
add 8a296de24a Parquet: Close zstd input stream early to avoid memory
pressure (#5681)
add 7feb9457bd Spark: Fix stats in rewrite metadata action (#5691)
add 3c9600f899 Core: Add CommitStateUnknownException handling to REST
(#5694)
add f6d9ddce0c AWS: Ignore flaky test; backport from #5379.
add b9b62b0ab7 Build: Exclude unnecessary git properties from
iceberg-build.properties (#5277)
add 054659ca59 Build: Fix Scala 2.13 builds in stage-binaries.sh. (#5270)
add 71d918e781 Build: Add iceberg-build.properties to RAT excludes. (#5262)
new 5e7cfffdf5 Build: enforce & apply spotless on 1.0.x
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 (0da95d1599)
\
N -- N -- N refs/heads/1.0.x (5e7cfffdf5)
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.
The 1 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:
README.md | 3 +-
.../exceptions/ServiceFailureException.java | 6 +-
...ption.java => ServiceUnavailableException.java} | 11 +-
.../java/org/apache/iceberg/types/TypeUtil.java | 2 +-
.../test/java/org/apache/iceberg/TestHelpers.java | 34 ++
.../org/apache/iceberg/types/TestTypeUtil.java | 24 ++
.../org/apache/iceberg/aws/AwsIntegTestUtil.java | 65 ++--
.../aws/TestAssumeRoleAwsClientFactory.java | 130 ++++----
.../iceberg/aws/TestDefaultAwsClientFactory.java | 10 +-
.../iceberg/aws/dynamodb/TestDynamoDbCatalog.java | 201 +++++++-----
.../aws/dynamodb/TestDynamoDbLockManager.java | 165 ++++++----
.../org/apache/iceberg/aws/glue/GlueTestBase.java | 36 ++-
.../aws/glue/TestGlueCatalogCommitFailure.java | 190 ++++++-----
.../iceberg/aws/glue/TestGlueCatalogLock.java | 91 +++---
.../iceberg/aws/glue/TestGlueCatalogNamespace.java | 73 +++--
.../iceberg/aws/glue/TestGlueCatalogTable.java | 346 ++++++++++++---------
.../TestLakeFormationAwsClientFactory.java | 97 +++---
.../java/org/apache/iceberg/aws/s3/S3TestUtil.java | 4 +-
.../iceberg/aws/s3/TestS3FileIOIntegration.java | 133 +++++---
.../iceberg/aws/s3/TestS3MultipartUpload.java | 25 +-
.../iceberg/aws/dynamodb/DynamoDbCatalog.java | 13 +-
.../org/apache/iceberg/aws/glue/GlueCatalog.java | 13 +-
.../java/org/apache/iceberg/aws/s3/S3FileIO.java | 11 +-
.../org/apache/iceberg/aws/s3/S3OutputStream.java | 1 -
.../org/apache/iceberg/aws/s3/TestS3FileIO.java | 25 ++
.../apache/iceberg/aws/s3/TestS3OutputStream.java | 18 ++
baseline.gradle | 2 +-
build.gradle | 6 +
.../java/org/apache/iceberg/TableMetadata.java | 9 +-
.../java/org/apache/iceberg/io/BaseTaskWriter.java | 97 ++++--
.../org/apache/iceberg/io/ResolvingFileIO.java | 7 +-
.../apache/iceberg/io/SortedPosDeleteWriter.java | 12 +-
.../java/org/apache/iceberg/jdbc/JdbcCatalog.java | 16 +-
.../org/apache/iceberg/rest/ErrorHandlers.java | 12 +-
.../java/org/apache/iceberg/TestTransaction.java | 21 +-
.../apache/iceberg/hadoop/HadoopFileIOTest.java | 26 ++
.../org/apache/iceberg/io/TestResolvingIO.java | 51 +++
.../org/apache/iceberg/jdbc/TestJdbcCatalog.java | 15 +
dev/.rat-excludes | 1 +
dev/stage-binaries.sh | 4 +-
.../java/org/apache/iceberg/gcp/gcs/GCSFileIO.java | 11 +-
.../org/apache/iceberg/gcp/gcs/GCSFileIOTest.java | 26 ++
.../java/org/apache/iceberg/hive/HiveCatalog.java | 16 +-
.../org/apache/iceberg/hive/TestHiveCatalog.java | 18 ++
.../java/org/apache/iceberg/parquet/Parquet.java | 4 +
.../iceberg/parquet/ParquetCodecFactory.java | 101 ++++++
.../java/org/apache/iceberg/spark/SmokeTest.java | 99 +++---
.../java/org/apache/iceberg/spark/SmokeTest.java | 99 +++---
.../extensions/TestRewriteManifestsProcedure.java | 29 ++
.../java/org/apache/iceberg/spark/SmokeTest.java | 99 +++---
.../org/apache/iceberg/spark/SparkDataFile.java | 21 +-
.../spark/actions/RewriteManifestsSparkAction.java | 59 +++-
.../extensions/TestRewriteManifestsProcedure.java | 29 ++
.../java/org/apache/iceberg/spark/SmokeTest.java | 99 +++---
.../org/apache/iceberg/spark/SparkDataFile.java | 21 +-
.../spark/actions/RewriteManifestsSparkAction.java | 59 +++-
versions.props | 1 +
57 files changed, 1903 insertions(+), 894 deletions(-)
copy
api/src/main/java/org/apache/iceberg/exceptions/{NotAuthorizedException.java =>
ServiceUnavailableException.java} (75%)
create mode 100644
core/src/test/java/org/apache/iceberg/io/TestResolvingIO.java
create mode 100644
parquet/src/main/java/org/apache/iceberg/parquet/ParquetCodecFactory.java