Re: [I] Substitue in memory data struct's timestamp type for DataTime rather i64 to simplify usage. [iceberg-rust]

2023-11-11 Thread via GitHub


my-vegetable-has-exploded commented on issue #90:
URL: https://github.com/apache/iceberg-rust/issues/90#issuecomment-1806749835

   > Welp, I started looking at this ticket before the most recent comments :S 
I went with `chrono::DateTime` as well but had to wrap it in a NewType to 
implement some traits. Not sure how far you got @my-vegetable-has-exploded but 
if you have a better approach, we can close my PR: #94
   
   Don't worry, you can go ahead and complete the issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Replace i64 with DateTime [iceberg-rust]

2023-11-11 Thread via GitHub


my-vegetable-has-exploded commented on PR #94:
URL: https://github.com/apache/iceberg-rust/pull/94#issuecomment-1806753936

   Since there is 
[timestamptz](https://github.com/apache/iceberg-rust/blob/e26bda3fc2f6df7dde49a6cf7a5f3faafe49313b/crates/iceberg/src/spec/values.rs#L982C4-L982C4)
 which also means ```DateTime``` in value.rs,  shall we unify this naming?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Replace i64 with DateTime [iceberg-rust]

2023-11-11 Thread via GitHub


Xuanwo commented on code in PR #94:
URL: https://github.com/apache/iceberg-rust/pull/94#discussion_r1390182259


##
crates/iceberg/src/spec/snapshot.rs:
##
@@ -72,7 +73,7 @@ pub struct Snapshot {
 sequence_number: i64,
 /// A timestamp when the snapshot was created, used for garbage
 /// collection and table inspection
-timestamp_ms: i64,
+timestamp_ms: Timestamp,

Review Comment:
   We used to have a discussion about this.
   
   
https://github.com/apache/iceberg-rust/pull/20/files#diff-0ab4b2d8c9bcfbb43cb0a06b6ef3015098edf660cbeebb5f196a55eba0326b83
   
   The general idea is to **use long/int representation**.
   
   We just convert them to chrono types as public API.
   
   ---
   
   *By the way, I still believe that directly storing a `DateTime` is a 
good idea. However, I don't want to reopen a discussion on a topic we've 
already reached consensus on.*



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Replace i64 with DateTime [iceberg-rust]

2023-11-11 Thread via GitHub


Xuanwo commented on code in PR #94:
URL: https://github.com/apache/iceberg-rust/pull/94#discussion_r1390182259


##
crates/iceberg/src/spec/snapshot.rs:
##
@@ -72,7 +73,7 @@ pub struct Snapshot {
 sequence_number: i64,
 /// A timestamp when the snapshot was created, used for garbage
 /// collection and table inspection
-timestamp_ms: i64,
+timestamp_ms: Timestamp,

Review Comment:
   We used to have a discussion about this.
   
   https://github.com/apache/iceberg-rust/pull/20#discussion_r1282831488
   
   The general idea is to **use long/int representation**.
   
   We just convert them to chrono types as public API.
   
   ---
   
   *By the way, I still believe that directly storing a `DateTime` is a 
good idea. However, I don't want to reopen a discussion on a topic we've 
already reached consensus on.*



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [I] Does the Java API support primary keys for creating tables [iceberg]

2023-11-11 Thread via GitHub


Zhangg7723 commented on issue #8950:
URL: https://github.com/apache/iceberg/issues/8950#issuecomment-1806785206

   Schema schema = new Schema(columns, identifierFieldIds)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Parquet: Remove the row position since parquet row group has it natively [iceberg]

2023-11-11 Thread via GitHub


ricardopereira33 commented on PR #6056:
URL: https://github.com/apache/iceberg/pull/6056#issuecomment-1806829411

   Hi @flyrain ! I added all the details in this [Slack 
thread](https://apache-iceberg.slack.com/archives/C025PH0G1D4/p1699608872098359).
 Can you see it?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Core: Adding Serializing TableMetadataLocation in TableMetadataParser [iceberg]

2023-11-11 Thread via GitHub


leewjae opened a new pull request, #9033:
URL: https://github.com/apache/iceberg/pull/9033

   Adding TableMetadataLocation into TableMetadataParser in case tableMetadata 
is null


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Core: Adding Serializing TableMetadataLocation in TableMetadataParser [iceberg]

2023-11-11 Thread via GitHub


leewjae commented on PR #9033:
URL: https://github.com/apache/iceberg/pull/9033#issuecomment-1806844932

   Reopening PR with single commit


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Core: Adding Serializing TableMetadataLocation in TableMetadataParser [iceberg]

2023-11-11 Thread via GitHub


leewjae closed pull request #9033: Core: Adding Serializing 
TableMetadataLocation in TableMetadataParser
URL: https://github.com/apache/iceberg/pull/9033


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Core: Adding Serializing TableMetadataLocation in TableMetadataParser [iceberg]

2023-11-11 Thread via GitHub


leewjae opened a new pull request, #9034:
URL: https://github.com/apache/iceberg/pull/9034

   Adding metadataFileLocation in toJson method in TableMetadataParser, and 
checking nullity of metadataLocation in fromJson method


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [I] Flink: Add support for Flink 1.18 [iceberg]

2023-11-11 Thread via GitHub


PrabhuJoseph commented on issue #8930:
URL: https://github.com/apache/iceberg/issues/8930#issuecomment-1806858264

   Flink1.17 used to allow conversion of collection (List) data types 
`ARRAY` and `ARRAY` into `Object[]` or `Integer[]`. But 
Flink1.18 fixed it in https://issues.apache.org/jira/browse/FLINK-31835 which 
allows casting of `ARRAY `into `Object[]` or `Integer[]` and `ARRAY` into `int[]`.
   
   Reference: 
https://github.com/apache/flink/pull/22485/files#diff-3462f451bf210e099fbea27237e809d83b134c4e9859c2b54d5974e1d786c3a6R199
   
   The failing iceberg unit test needs to be fixed to handle this case. I have 
patch which fixes the same. Let me know when we start working on this, i can 
share the patch for the unit test failure.
   
   
   ```
   joprabhu@88665a14a66d Aws157Iceberg % ./gradlew 
-DsparkVersions=$SPARK_VERSION -DhiveVersions=$HIVE_MAJOR_VERSION 
-DflinkVersions=$FLINK_MAJOR_VERSION :iceberg-flink:iceberg-flink-1.18:test 
   
   
   Deprecated Gradle features were used in this build, making it incompatible 
with Gradle 9.0.
   
   You can use '--warning-mode all' to show the individual deprecation warnings 
and determine if they come from your own scripts or plugins.
   
   See 
https://docs.gradle.org/8.1.1/userguide/command_line_interface.html#sec:command_line_warnings
   
   BUILD SUCCESSFUL in 23m 28s
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Override useCommitCoordinator to false in BaseStreamingWriter [iceberg]

2023-11-11 Thread via GitHub


aokolnychyi merged PR #9027:
URL: https://github.com/apache/iceberg/pull/9027


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Override useCommitCoordinator to false in BaseStreamingWriter [iceberg]

2023-11-11 Thread via GitHub


aokolnychyi commented on PR #9027:
URL: https://github.com/apache/iceberg/pull/9027#issuecomment-1806882541

   Thanks, @huaxingao! Thanks for reviewing, @singhpk234 @Fokko!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Override useCommitCoordinator to false in Spark3.4 [iceberg]

2023-11-11 Thread via GitHub


aokolnychyi merged PR #9028:
URL: https://github.com/apache/iceberg/pull/9028


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Override useCommitCoordinator to false in Spark3.4 [iceberg]

2023-11-11 Thread via GitHub


aokolnychyi commented on PR #9028:
URL: https://github.com/apache/iceberg/pull/9028#issuecomment-1806883015

   Thanks, @huaxingao! Thanks for reviewing, @singhpk234!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Core: lazily create locationProvider in SerializableTable [iceberg]

2023-11-11 Thread via GitHub


aokolnychyi commented on PR #9029:
URL: https://github.com/apache/iceberg/pull/9029#issuecomment-1806884352

   @przemekd, could you elaborate a bit on the custom `LocationProvider`? All 
implementations must be `Serializable`. Are you seeing issues with Java or Kryo 
serialization?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Override useCommitCoordinator to false in BaseStreamingWriter [iceberg]

2023-11-11 Thread via GitHub


huaxingao commented on PR #9027:
URL: https://github.com/apache/iceberg/pull/9027#issuecomment-1806935028

   Thanks @aokolnychyi @singhpk234 @Fokko 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Override useCommitCoordinator to false in Spark3.4 [iceberg]

2023-11-11 Thread via GitHub


huaxingao commented on PR #9028:
URL: https://github.com/apache/iceberg/pull/9028#issuecomment-1806935150

   Thanks @aokolnychyi @singhpk234 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [I] Support for query the historical schemas and options of the table [iceberg]

2023-11-11 Thread via GitHub


github-actions[bot] commented on issue #7611:
URL: https://github.com/apache/iceberg/issues/7611#issuecomment-1806951629

   This issue has been automatically marked as stale because it has been open 
for 180 days with no activity. It will be closed in next 14 days if no further 
activity occurs. To permanently prevent this issue from being considered stale, 
add the label 'not-stale', but commenting on the issue is preferred when 
possible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump com.google.cloud:libraries-bom from 26.26.0 to 26.27.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9036:
URL: https://github.com/apache/iceberg/pull/9036

   Bumps 
[com.google.cloud:libraries-bom](https://github.com/googleapis/java-cloud-bom) 
from 26.26.0 to 26.27.0.
   
   Release notes
   Sourced from https://github.com/googleapis/java-cloud-bom/releases";>com.google.cloud:libraries-bom's
 releases.
   
   v26.27.0
   GCP Libraries BOM 26.27.0
   Here are the differences from the previous version (26.26.0)
   The group ID of the following artifacts is 
com.google.cloud.
   Notable Changes
   GraalVM 22.3.3
   
   This BOM is now compatible with GraalVM 22.3.3
   
   google-cloud-bigquerystorage 2.45.0 (prev: 2.44.1)
   
   
   Add support for proto3 optional tag (https://redirect.github.com/googleapis/java-bigquerystorage/issues/2295";>#2295)
 (https://github.com/googleapis/java-bigquerystorage/commit/bc88aa57f55b2c3605cbb9c66f2e66daa695c20c";>bc88aa5)
   
   
   Add native image configurations for com.google.rpc classes (https://redirect.github.com/googleapis/java-bigquerystorage/issues/2305";>#2305)
 (https://github.com/googleapis/java-bigquerystorage/commit/3a771fded7c0f5243be1e4c76e7229f15eda95fa";>3a771fd)
   
   
   bigquery: Make exponential backoff retry second based 
(https://redirect.github.com/googleapis/java-bigquerystorage/issues/2212";>#2212)
 (https://github.com/googleapis/java-bigquerystorage/commit/eff4a09aece936dfee7fff46e7bd031ec780ab96";>eff4a09)
   
   
   google-cloud-spanner 6.53.0 (prev: 6.52.1)
   
   
   Move session lastUseTime parameter from PooledSession to SessionImpl 
class. Fix updation of the parameter for chained RPCs within one transaction. 
(https://redirect.github.com/googleapis/java-spanner/issues/2704";>#2704)
 (https://github.com/googleapis/java-spanner/commit/e75a2818124621a3ab837151a8e1094fa6c3b8f3";>e75a281)
   
   
   Rely on graal-sdk version declaration from property in java-shared-config 
(https://redirect.github.com/googleapis/java-spanner/issues/2696";>#2696)
 (https://github.com/googleapis/java-spanner/commit/cfab83ad3bd1a026e0b3da5a4cc2154b0f8c3ddf";>cfab83a)
   
   
   Prevent illegal negative timeout values into thread sleep() method in 
ITTransactionManagerTest. (https://redirect.github.com/googleapis/java-spanner/issues/2715";>#2715)
 (https://github.com/googleapis/java-spanner/commit/1c26cf60efa1b98203af9b21a47e37c8fb1e0e97";>1c26cf6)
   
   
   Other libraries
   
   
   [aiplatform] add Optimized to FeatureOnlineStore (https://redirect.github.com/googleapis/google-cloud-java/issues/10040";>#10040)
 (https://github.com/googleapis/google-cloud-java/commit/cc0e248a9ee4658dbd3b2649d01381df218b4419";>cc0e248)
   
   
   [aiplatform] Adding new fields for concurrent explanations (https://redirect.github.com/googleapis/google-cloud-java/issues/10016";>#10016)
 (https://github.com/googleapis/google-cloud-java/commit/d80aa3c6cb96bbe8a16827b81699a15979cceed4";>d80aa3c)
   
   
   [alloydb] Add new field in GenerateClientCertificate v1 API 
to allow AlloyDB connectors request client certs with metadata exchange support 
(https://redirect.github.com/googleapis/google-cloud-java/issues/10024";>#10024)
 (https://github.com/googleapis/google-cloud-java/commit/bc8bbd0794170806bb059fc12b21068ad4b7688f";>bc8bbd0)
   
   
   [cloudbuild] Add optional field "SourceFetcher" to choose 
source fetcher tool (https://redirect.github.com/googleapis/google-cloud-java/issues/10022";>#10022)
 (https://github.com/googleapis/google-cloud-java/commit/e336c70660cd0663f91675a30ace51f42b5e60a1";>e336c70)
   
   
   [clouddeploy] add Automation API and Rollback API (https://redirect.github.com/googleapis/google-cloud-java/issues/10034";>#10034)
 (https://github.com/googleapis/google-cloud-java/commit/399cb6d106f710ae7d569160fd0f06dc231bc306";>399cb6d)
   
   
   [contactcenterinsights] Launch BulkDelete API, and bulk audio import via 
the IngestConversations API (https://redirect.github.com/googleapis/google-cloud-java/issues/10039";>#10039)
 (https://github.com/googleapis/google-cloud-java/commit/dbdc8a128dd35a71cd476f03b04e0ae8a809b40d";>dbdc8a1)
   
   
   [container] add ResourceManagerTags API to attach tags on the underlying 
Compute Engine VMs of GKE Nodes which can be used to selectively enforce Cloud 
Firewall network firewall policies (https://redirect.github.com/googleapis/google-cloud-java/issues/10008";>#10008)
 (https://github.com/googleapis/google-cloud-java/commit/aede3bde55b79edf0f6e403688ae6606460765b1";>aede3bd)
   
   
   [container] added EnterpriseConfig (https://redirect.github.com/googleapis/google-cloud-java/issues/10021";>#10021)
 (https://github.com/googleapis/google-cloud-java/commit/9c2647b653085253c9b98853ee7d430363da5baa";>9c2647b)
   
   
   [dataform] Support for ReleaseConfigs (https://redirect.github.com/googleapis/google-cloud-java/issues/";>#)
 (https://github.com/googleapis/google-cloud-java/commit/2021b5a92fdcb0907985a60301006576dfe51833";>2021b5a)
   
   
   [datalineage] add open line

[PR] Build: Bump com.adobe.testing:s3mock-junit5 from 2.11.0 to 3.2.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9038:
URL: https://github.com/apache/iceberg/pull/9038

   Bumps com.adobe.testing:s3mock-junit5 from 2.11.0 to 3.2.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.adobe.testing:s3mock-junit5&package-manager=gradle&previous-version=2.11.0&new-version=3.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump io.netty:netty-buffer from 4.1.68.Final to 4.1.101.Final [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9040:
URL: https://github.com/apache/iceberg/pull/9040

   Bumps [io.netty:netty-buffer](https://github.com/netty/netty) from 
4.1.68.Final to 4.1.101.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/c6a6aadaface1b2b66d2608dcdc6e4c04c1648cc";>c6a6aad
 [maven-release-plugin] prepare release netty-4.1.101.Final
   https://github.com/netty/netty/commit/5cb2e4f19718464cde92cd78ea12b514cabc3bc8";>5cb2e4f
 Descriptive message for errors related to unknown http2 streams (https://redirect.github.com/netty/netty/issues/13691";>#13691)
   https://github.com/netty/netty/commit/7e18e8344819428a5560064ac15a2f035b4728fd";>7e18e83
 Bump Brotli4j to v1.13.0 (https://redirect.github.com/netty/netty/issues/13685";>#13685)
   https://github.com/netty/netty/commit/41dcc5d572a9737784ae4243cc915621f499188c";>41dcc5d
 Upgrade java versions to latest patch release (https://redirect.github.com/netty/netty/issues/13684";>#13684)
   https://github.com/netty/netty/commit/9af0564c05daa10855401f3b7cb1ef05b816fd3e";>9af0564
 Upgrade to maven 3.9.5 (https://redirect.github.com/netty/netty/issues/13683";>#13683)
   https://github.com/netty/netty/commit/2e3f54031f266a92c913e1d70f1cfb4592810263";>2e3f540
 Allowlist ReferenceCountUpdater.retryRelease0 in Netty blockhound int… (https://redirect.github.com/netty/netty/issues/13677";>#13677)
   https://github.com/netty/netty/commit/d2a72648ca2278abcc0099a9f740ec7f4d196e11";>d2a7264
 Add service-loaded extension points for channel initialization (https://redirect.github.com/netty/netty/issues/13565";>#13565)
   https://github.com/netty/netty/commit/5a982148ba06ea74ffbefde0f6e577c1fcd9aad2";>5a98214
 Change the default value of maxMessagePerRead to 16 in ChannelMetadata (https://redirect.github.com/netty/netty/issues/13680";>#13680)
   https://github.com/netty/netty/commit/af9ba8d9ba78bb148802e3052eb0548b7caa4be2";>af9ba8d
 Also set MAX_MESSAGES_PER_READ to 16 by default in EpollDomainDatagra… (https://redirect.github.com/netty/netty/issues/13678";>#13678)
   https://github.com/netty/netty/commit/7800070656daf4728a91ce3d527651334d0c7745";>7800070
 Change default value of MAX_MESSAGES_PER_READ for DatagramChannel imp… (https://redirect.github.com/netty/netty/issues/13676";>#13676)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.68.Final...netty-4.1.101.Final";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-buffer&package-manager=gradle&previous-version=4.1.68.Final&new-version=4.1.101.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Build: Bump io.netty:netty-buffer from 4.1.68.Final to 4.1.100.Final [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] closed pull request #8783: Build: Bump io.netty:netty-buffer 
from 4.1.68.Final to 4.1.100.Final
URL: https://github.com/apache/iceberg/pull/8783


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Build: Bump com.palantir.baseline:gradle-baseline-java from 4.42.0 to 5.30.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] commented on PR #8944:
URL: https://github.com/apache/iceberg/pull/8944#issuecomment-1806996584

   Superseded by #9041.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump arrow from 14.0.0 to 14.0.1 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9043:
URL: https://github.com/apache/iceberg/pull/9043

   Bumps `arrow` from 14.0.0 to 14.0.1.
   Updates `org.apache.arrow:arrow-memory-netty` from 14.0.0 to 14.0.1
   
   Updates `org.apache.arrow:arrow-vector` from 14.0.0 to 14.0.1
   
   Commits
   
   https://github.com/apache/arrow/commit/ba537483618196f50c67a90a473039e4d5dc35e0";>ba53748
 MINOR: [Release] Update versions for 14.0.1
   https://github.com/apache/arrow/commit/529f3768fa4fce80781cd1a3cbdcf3a826281b14";>529f376
 MINOR: [Release] Update .deb/.rpm changelogs for 14.0.1
   https://github.com/apache/arrow/commit/b84bbcac64e184a2b58661385506cff23006cc10";>b84bbca
 MINOR: [Release] Update CHANGELOG.md for 14.0.1
   https://github.com/apache/arrow/commit/f14170976372436ec1d03a724d8d3f3925484ecf";>f141709
 https://redirect.github.com/apache/arrow/issues/38607";>GH-38607: 
[Python] Disable PyExtensionType autoload (https://redirect.github.com/apache/arrow/issues/38608";>#38608)
   https://github.com/apache/arrow/commit/5a37e741987e4cba41dfdad2331a308c95b62083";>5a37e74
 https://redirect.github.com/apache/arrow/issues/38431";>GH-38431: 
[Python][CI] Update fs.type_name checks for s3fs tests (https://redirect.github.com/apache/arrow/issues/38455";>#38455)
   See full diff in https://github.com/apache/arrow/compare/go/v14.0.0...go/v14.0.1";>compare 
view
   
   
   
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump software.amazon.awssdk:bom from 2.21.15 to 2.21.21 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9044:
URL: https://github.com/apache/iceberg/pull/9044

   Bumps software.amazon.awssdk:bom from 2.21.15 to 2.21.21.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=software.amazon.awssdk:bom&package-manager=gradle&previous-version=2.21.15&new-version=2.21.21)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump orc from 1.9.1 to 1.9.2 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9045:
URL: https://github.com/apache/iceberg/pull/9045

   Bumps `orc` from 1.9.1 to 1.9.2.
   Updates `org.apache.orc:orc-core` from 1.9.1 to 1.9.2
   
   Updates `org.apache.orc:orc-tools` from 1.9.1 to 1.9.2
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump junit from 5.10.0 to 5.10.1 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9037:
URL: https://github.com/apache/iceberg/pull/9037

   Bumps `junit` from 5.10.0 to 5.10.1.
   Updates `org.junit.jupiter:junit-jupiter` from 5.10.0 to 5.10.1
   
   Release notes
   Sourced from https://github.com/junit-team/junit5/releases";>org.junit.jupiter:junit-jupiter's
 releases.
   
   JUnit 5.10.1 = Platform 1.10.1 + Jupiter 5.10.1 + Vintage 5.10.1
   See http://junit.org/junit5/docs/5.10.1/release-notes/";>Release 
Notes.
   Full Changelog: https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1";>https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1
   
   
   
   Commits
   
   https://github.com/junit-team/junit5/commit/e5f50d8720741623915979ac154b65bcbcd6a577";>e5f50d8
 Release 5.10.1
   https://github.com/junit-team/junit5/commit/ac86d18e9b15dbebe046e82743ac7f9534a17582";>ac86d18
 Fix typo in AfterAll documentation
   https://github.com/junit-team/junit5/commit/388c5beaf42944961ab5b455c900d958a6e15588";>388c5be
 Harmonize application of method and field filters in search algorithms
   https://github.com/junit-team/junit5/commit/f82dd1e716f8717e012152b1d1d5cc0da10d33cd";>f82dd1e
 Apply field predicate before searching type hierarchy
   https://github.com/junit-team/junit5/commit/1d1eb8571552bbf28e578241965010de6c8ee779";>1d1eb85
 Polishing
   https://github.com/junit-team/junit5/commit/5ce280eff69b43759a3cb0c176207abe0a41b579";>5ce280e
 Update picocli to 4.7.5 and enable help width computation
   https://github.com/junit-team/junit5/commit/fea05c3aa80de76686f326b5ce26ddf7f153ff5a";>fea05c3
 Fix ConsoleLauncherTests and StandaloneTests
   https://github.com/junit-team/junit5/commit/c5567354c2556e772f8a0035ef7647161011d1c0";>c556735
 Use same expected files for all JDK versions
   https://github.com/junit-team/junit5/commit/808493ab09b30970b506a48fda3d616ac1ba4fff";>808493a
 Run StandaloneTests for Java 8 under Java 8
   https://github.com/junit-team/junit5/commit/9ec57661c78c3889db004ab6a89416e56a2fb2e0";>9ec5766
 Unify messages about exit codes in StandaloneTests
   Additional commits viewable in https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1";>compare 
view
   
   
   
   
   Updates `org.junit.jupiter:junit-jupiter-engine` from 5.10.0 to 5.10.1
   
   Release notes
   Sourced from https://github.com/junit-team/junit5/releases";>org.junit.jupiter:junit-jupiter-engine's
 releases.
   
   JUnit 5.10.1 = Platform 1.10.1 + Jupiter 5.10.1 + Vintage 5.10.1
   See http://junit.org/junit5/docs/5.10.1/release-notes/";>Release 
Notes.
   Full Changelog: https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1";>https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1
   
   
   
   Commits
   
   https://github.com/junit-team/junit5/commit/e5f50d8720741623915979ac154b65bcbcd6a577";>e5f50d8
 Release 5.10.1
   https://github.com/junit-team/junit5/commit/ac86d18e9b15dbebe046e82743ac7f9534a17582";>ac86d18
 Fix typo in AfterAll documentation
   https://github.com/junit-team/junit5/commit/388c5beaf42944961ab5b455c900d958a6e15588";>388c5be
 Harmonize application of method and field filters in search algorithms
   https://github.com/junit-team/junit5/commit/f82dd1e716f8717e012152b1d1d5cc0da10d33cd";>f82dd1e
 Apply field predicate before searching type hierarchy
   https://github.com/junit-team/junit5/commit/1d1eb8571552bbf28e578241965010de6c8ee779";>1d1eb85
 Polishing
   https://github.com/junit-team/junit5/commit/5ce280eff69b43759a3cb0c176207abe0a41b579";>5ce280e
 Update picocli to 4.7.5 and enable help width computation
   https://github.com/junit-team/junit5/commit/fea05c3aa80de76686f326b5ce26ddf7f153ff5a";>fea05c3
 Fix ConsoleLauncherTests and StandaloneTests
   https://github.com/junit-team/junit5/commit/c5567354c2556e772f8a0035ef7647161011d1c0";>c556735
 Use same expected files for all JDK versions
   https://github.com/junit-team/junit5/commit/808493ab09b30970b506a48fda3d616ac1ba4fff";>808493a
 Run StandaloneTests for Java 8 under Java 8
   https://github.com/junit-team/junit5/commit/9ec57661c78c3889db004ab6a89416e56a2fb2e0";>9ec5766
 Unify messages about exit codes in StandaloneTests
   Additional commits viewable in https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1";>compare 
view
   
   
   
   
   Updates `org.junit.vintage:junit-vintage-engine` from 5.10.0 to 5.10.1
   
   Release notes
   Sourced from https://github.com/junit-team/junit5/releases";>org.junit.vintage:junit-vintage-engine's
 releases.
   
   JUnit 5.10.1 = Platform 1.10.1 + Jupiter 5.10.1 + Vintage 5.10.1
   See http://junit.org/junit5/docs/5.10.1/release-notes/";>Release 
Notes.
   Full Changelog: https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1";>https://github.com/junit-team/junit5/compare/r5.10.0...r5.10.1
   
   
   
   Commits
   
   https://github.com/junit-team/junit5/commit/e5f50d8720741623915979ac154b65bcbcd6a577";>e5f50d8
 Release 5.10.1
   https://github.com/junit-team/junit5/commit/ac86d18e9b15dbebe

[PR] Build: Bump net.snowflake:snowflake-jdbc from 3.14.2 to 3.14.3 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9039:
URL: https://github.com/apache/iceberg/pull/9039

   Bumps 
[net.snowflake:snowflake-jdbc](https://github.com/snowflakedb/snowflake-jdbc) 
from 3.14.2 to 3.14.3.
   
   Release notes
   Sourced from https://github.com/snowflakedb/snowflake-jdbc/releases";>net.snowflake:snowflake-jdbc's
 releases.
   
   Release
   Please Refer to Release Notes at https://docs.snowflake.com/en/release-notes/clients-drivers/jdbc";>https://docs.snowflake.com/en/release-notes/clients-drivers/jdbc
   
   
   
   Changelog
   Sourced from https://github.com/snowflakedb/snowflake-jdbc/blob/master/CHANGELOG.rst";>net.snowflake:snowflake-jdbc's
 changelog.
   
   JDBC Driver 3.14.3
   
   ||Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.14.2
   
   ||Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.14.1
   
   ||Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.14.0
   
   ||Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.33
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.32
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.31
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.30
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.29
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.28
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.27
   
   || Please Refer to Release Notes at https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes";>https://community.snowflake.com/s/article/JDBC-Driver-Release-Notes
   
   JDBC Driver 3.13.26
   
   || Upgraded the arrow library from version 9.0.0 to 10.0.1.
   || Relocated files in META-INF/versions to META-INF/versions//net/snowflake/client/jdbc/internal.
   || Added the getNano() and getOffset() methods to the 
SnowflakeTimeWithTimezone object to return the number of nanoseconds and the 
time zone offset, respectively.
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/snowflakedb/snowflake-jdbc/commit/b5ed3866e53d9f02ffae9bbf74c0307b6f7c8bc8";>b5ed386
 Bumped up the Client PATCH version from 3.14.2 to 3.14.3 (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1553";>#1553)
   https://github.com/snowflakedb/snowflake-jdbc/commit/29771d713796b26f26354600418c0c69ce609f61";>29771d7
 SNOW-878076: Retry Strategy for JDBC (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1548";>#1548)
   https://github.com/snowflakedb/snowflake-jdbc/commit/189d0a8532e26b6162154793327924a59b3c6102";>189d0a8
 SNOW-924672: Upgrade aws-java-sdk, grpc, jackson, netty (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1545";>#1545)
   https://github.com/snowflakedb/snowflake-jdbc/commit/a9784a9792be5b9ad14e2513271a267a7ed64bf3";>a9784a9
 Add JDBC_JAR_NAME to client environment (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1547";>#1547)
   https://github.com/snowflakedb/snowflake-jdbc/commit/9fbaa7a033bd8d7df572fe87bb27135ee3041cf0";>9fbaa7a
 Fix issue with using Null as DateType (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1544";>#1544)
   https://github.com/snowflakedb/snowflake-jdbc/commit/8720b4c974ed94cdef6329adeab0a1b1ebc97fd2";>8720b4c
 [SNOW-943964] Fix GCP downscope token issue (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1539";>#1539)
   https://github.com/snowflakedb/snowflake-jdbc/commit/4453b41015035436ab752ee1e9bfde552897e500";>4453b41
 SNOW-848780: Upgrade org.bouncycastle:bc-fips to 1.0.2.4 (https://redirect.github.com/snowflakedb/snowflake-jdbc/issues/1

Re: [PR] Build: Bump com.adobe.testing:s3mock-junit5 from 2.11.0 to 3.1.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] commented on PR #8779:
URL: https://github.com/apache/iceberg/pull/8779#issuecomment-1806996532

   Superseded by #9038.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Build: Bump com.adobe.testing:s3mock-junit5 from 2.11.0 to 3.1.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] closed pull request #8779: Build: Bump 
com.adobe.testing:s3mock-junit5 from 2.11.0 to 3.1.0
URL: https://github.com/apache/iceberg/pull/8779


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump com.palantir.baseline:gradle-baseline-java from 4.42.0 to 5.31.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9041:
URL: https://github.com/apache/iceberg/pull/9041

   Bumps 
[com.palantir.baseline:gradle-baseline-java](https://github.com/palantir/gradle-baseline)
 from 4.42.0 to 5.31.0.
   
   Release notes
   Sourced from https://github.com/palantir/gradle-baseline/releases";>com.palantir.baseline:gradle-baseline-java's
 releases.
   
   5.31.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Improvement
   Variables annotated with @RegisterExtension are now exempt 
from the StrictUnusedVariable check.
   https://redirect.github.com/palantir/gradle-baseline/pull/2664";>palantir/gradle-baseline#2664
   
   
   
   5.30.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Improvement
   Upgrade error-prone to the latest release
   https://redirect.github.com/palantir/gradle-baseline/pull/2651";>palantir/gradle-baseline#2651
   
   
   
   5.29.0
   Automated release, no documented user facing changes
   5.28.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Fix
   Ensure that the baseline-exact-dependencies plugin does not eagerly 
force the creation of the compileClasspath configuration, which 
causes "'languageVersion' is final and cannot be changed any 
further." errors in Gradle >=8.3.
   https://redirect.github.com/palantir/gradle-baseline/pull/2645";>palantir/gradle-baseline#2645
   
   
   
   5.27.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Fix
   baseline-exact-dependencies is now far more lazy around 
Configuration creation in order to support Gradle 8. Fixed attempt 
to make this work that should not break --write-locks.
   https://redirect.github.com/palantir/gradle-baseline/pull/2644";>palantir/gradle-baseline#2644
   
   
   
   5.26.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Fix
   baseline-java-versions avoids 
ClassCastException when using custom JDKs under Gradle 8.
   https://redirect.github.com/palantir/gradle-baseline/pull/2641";>palantir/gradle-baseline#2641
   
   
   
   5.25.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Fix
   Revert "Lazy exact dependencies"
   https://redirect.github.com/palantir/gradle-baseline/pull/2642";>palantir/gradle-baseline#2642
   
   
   
   5.24.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Fix
   baseline-exact-dependencies is now far more lazy around 
Configuration creation in order to support Gradle 8.
   https://redirect.github.com/palantir/gradle-baseline/pull/2639";>palantir/gradle-baseline#2639
   
   
   
   5.23.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Fix
   Use a Proxy for JavaInstallationMetadata so we 
can work across Gradle 7 and 8.
   https://redirect.github.com/palantir/gradle-baseline/pull/2605";>palantir/gradle-baseline#2605
   
   
   
   5.22.0
   Automated release, no documented user facing changes
   5.21.0
   
   
   
   Type
   Description
   Link
   
   
   
   
   Improvement
   Upgrade error-prone to 2.21.1 (from 2.19.1)
   https://redirect.github.com/palantir/gradle-baseline/pull/2628";>palantir/gradle-baseline#2628
   
   
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/palantir/gradle-baseline/commit/0f613077f5496eea38c6d87ae691a000f1603f14";>0f61307
 Autorelease 5.31.0
   https://github.com/palantir/gradle-baseline/commit/e4b3f10cbbd713f3387a5bc2d1ca1c222e415eb5";>e4b3f10
 Exclude JUnit5 extensions from StrictUnusedVariable (https://redirect.github.com/palantir/gradle-baseline/issues/2664";>#2664)
   https://github.com/palantir/gradle-baseline/commit/1393a2b6febd12f5c6f5177e473acc63dc693078";>1393a2b
 Excavator:  Upgrade dependencies (https://redirect.github.com/palantir/gradle-baseline/issues/2662";>#2662)
   https://github.com/palantir/gradle-baseline/commit/fd1bd73bca505fb65183fa9a49579c303f2aacdf";>fd1bd73
 Excavator:  Upgrade dependencies (https://redirect.github.com/palantir/gradle-baseline/issues/2661";>#2661)
   https://github.com/palantir/gradle-baseline/commit/f868f31f9560518819f60a7bb7f08c9a24fb3616";>f868f31
 Excavator:  Upgrade dependencies (https://redirect.github.com/palantir/gradle-baseline/issues/2660";>#2660)
   https://github.com/palantir/gradle-baseline/commit/b97905371534bc08d67e777398fcfd18b809015e";>b979053
 Excavator:  Upgrade dependencies (https://redirect.github.com/palantir/gradle-baseline/issues/2659";>#2659)
   https://github.com/palantir/gradle-baseline/commit/385df21b91d4cc08d20320ae0c6f043c08cbeb4d";>385df21
 Excavator:  Upgrade dependencies (https://redirect.github.com/palantir/gradle-baseline/issues/2657";>#2657)
   https://github.com/palantir/gradle-baseline/commit/fdf7f0bc4f1cfd23823e3958aa455f66383f8700";>fdf7f0b
 Excavator:  Upgrade dependencies (https://redirect.github.com/palantir/gradle-baseline/issues/2656";>#2656)
   https://github.com/palantir/gradle-baseline/commit/532db6019ef09e9d9450cf6f24b7accea8fcadec";>532db60
 Excavator:  Upgrade dependencies (https://redirect.github.com

Re: [PR] Build: Bump io.netty:netty-buffer from 4.1.68.Final to 4.1.100.Final [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] commented on PR #8783:
URL: https://github.com/apache/iceberg/pull/8783#issuecomment-1806996575

   Superseded by #9040.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



Re: [PR] Build: Bump com.palantir.baseline:gradle-baseline-java from 4.42.0 to 5.30.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] closed pull request #8944: Build: Bump 
com.palantir.baseline:gradle-baseline-java from 4.42.0 to 5.30.0
URL: https://github.com/apache/iceberg/pull/8944


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Build: Bump calcite from 1.10.0 to 1.36.0 [iceberg]

2023-11-11 Thread via GitHub


dependabot[bot] opened a new pull request, #9042:
URL: https://github.com/apache/iceberg/pull/9042

   Bumps `calcite` from 1.10.0 to 1.36.0.
   Updates `org.apache.calcite:calcite-core` from 1.10.0 to 1.36.0
   
   Commits
   
   https://github.com/apache/calcite/commit/0be8eaebcf27afae9ecda8ab79db63c214426561";>0be8eae
 [CALCITE-6047] Release Calcite 1.36.0
   https://github.com/apache/calcite/commit/4c9011c388f826c36463ae7da875ddb525104376";>4c9011c
 [CALCITE-5884] ARRAY_TO_STRING function should return NULL if its 
'nullValue'...
   https://github.com/apache/calcite/commit/94dc1673da824174f9271677ead73cfae1aeb29b";>94dc167
 [CALCITE-6088] SqlItemOperator fails in RelToSqlConverter
   https://github.com/apache/calcite/commit/590ec85f0fcff7173c288c350c3f60e640976a34";>590ec85
 Site: Add Runkang He as committer
   https://github.com/apache/calcite/commit/b7acae599af0c17f67d2160109c3c9835d8a1a24";>b7acae5
 Site: Add Hongyu Guo as committer
   https://github.com/apache/calcite/commit/dd9a9ed5d23cfe1a64b3f55fc4f4a0a3ba5141fb";>dd9a9ed
 Site: Add Lei Shen as committer
   https://github.com/apache/calcite/commit/919f50d2132e06e069453179fd01fffa0c87008b";>919f50d
 [CALCITE-5863] Calcite rejects valid query with multiple ORDER BY columns 
and...
   https://github.com/apache/calcite/commit/2ddc6053b55147622f4a4642786d36403ce7f49a";>2ddc605
 [CALCITE-5826] Add FIND_IN_SET function (enabled in Hive and Spark 
libraries)
   https://github.com/apache/calcite/commit/8af1f11b95406e26594b7a79374fd0e33fafb753";>8af1f11
 [CALCITE-5984] Allow disabling field trimming in Prepare via 
`SqlToRelConve...
   https://github.com/apache/calcite/commit/620058f94bd2dbaae019b85e9de842721fd70623";>620058f
 [CALCITE-5990] Explicit cast to numeric type doesn't check overflow
   Additional commits viewable in https://github.com/apache/calcite/compare/calcite-1.10.0...calcite-1.36.0";>compare
 view
   
   
   
   
   Updates `org.apache.calcite:calcite-druid` from 1.10.0 to 1.36.0
   
   Commits
   
   https://github.com/apache/calcite/commit/0be8eaebcf27afae9ecda8ab79db63c214426561";>0be8eae
 [CALCITE-6047] Release Calcite 1.36.0
   https://github.com/apache/calcite/commit/4c9011c388f826c36463ae7da875ddb525104376";>4c9011c
 [CALCITE-5884] ARRAY_TO_STRING function should return NULL if its 
'nullValue'...
   https://github.com/apache/calcite/commit/94dc1673da824174f9271677ead73cfae1aeb29b";>94dc167
 [CALCITE-6088] SqlItemOperator fails in RelToSqlConverter
   https://github.com/apache/calcite/commit/590ec85f0fcff7173c288c350c3f60e640976a34";>590ec85
 Site: Add Runkang He as committer
   https://github.com/apache/calcite/commit/b7acae599af0c17f67d2160109c3c9835d8a1a24";>b7acae5
 Site: Add Hongyu Guo as committer
   https://github.com/apache/calcite/commit/dd9a9ed5d23cfe1a64b3f55fc4f4a0a3ba5141fb";>dd9a9ed
 Site: Add Lei Shen as committer
   https://github.com/apache/calcite/commit/919f50d2132e06e069453179fd01fffa0c87008b";>919f50d
 [CALCITE-5863] Calcite rejects valid query with multiple ORDER BY columns 
and...
   https://github.com/apache/calcite/commit/2ddc6053b55147622f4a4642786d36403ce7f49a";>2ddc605
 [CALCITE-5826] Add FIND_IN_SET function (enabled in Hive and Spark 
libraries)
   https://github.com/apache/calcite/commit/8af1f11b95406e26594b7a79374fd0e33fafb753";>8af1f11
 [CALCITE-5984] Allow disabling field trimming in Prepare via 
`SqlToRelConve...
   https://github.com/apache/calcite/commit/620058f94bd2dbaae019b85e9de842721fd70623";>620058f
 [CALCITE-5990] Explicit cast to numeric type doesn't check overflow
   Additional commits viewable in https://github.com/apache/calcite/compare/calcite-1.10.0...calcite-1.36.0";>compare
 view
   
   
   
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this 

Re: [PR] Build: Bump Apache Spark to 3.3.3 [iceberg]

2023-11-11 Thread via GitHub


wangyum closed pull request #8230: Build: Bump Apache Spark to 3.3.3
URL: https://github.com/apache/iceberg/pull/8230


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org



[PR] Implement table metadata update and table requirement validation [iceberg-python]

2023-11-11 Thread via GitHub


HonahX opened a new pull request, #139:
URL: https://github.com/apache/iceberg-python/pull/139

   Fixes: #22 
   
   This PR:
   - Implements `update_table_metadata` which applies a list of TableUpdate on 
the current metadata
   - Adds unit tests in `test_init.py`
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org