You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@linkis.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/06/20 11:41:34 UTC

[GitHub] [linkis] dependabot[bot] opened a new pull request, #4682: Bump hazelcast from 5.1 to 5.3.0 in /linkis-engineconn-plugins/seatunnel

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

   Bumps [hazelcast](https://github.com/hazelcast/hazelcast) from 5.1 to 5.3.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/hazelcast/hazelcast/releases">hazelcast's releases</a>.</em></p>
   <blockquote>
   <h2>v5.3.0</h2>
   <p>This document lists the new features, enhancements, fixed issues and, removed or deprecated features for Hazelcast Platform 5.3.0 release. The numbers in the square brackets refer to the issues and pull requests in Hazelcast's GitHub repository.</p>
   <h2>New Features</h2>
   <ul>
   <li><strong>Connector for Kafka Connect source (BETA)</strong>: Import data from an external system directly into a Hazelcast data pipeline without the need of a Kafka cluster.</li>
   <li><strong>Connector for MongoDB (BETA)</strong>: Read and write from/to MongoDB via this connector and execute SQL queries on Mongo collections directly from Hazelcast.</li>
   <li><strong>Partition-Aware SQL Client</strong>: Send the SQL commands only to the members having the relevant data, which reduces the network hops and improves the query performances.</li>
   <li><strong>Data connection support in SQL</strong>: data connections and mappings using them can be managed using SQL commands.</li>
   </ul>
   <h2>Breaking Changes</h2>
   <ul>
   <li>Renamed the <code>DataLinkFactory</code> interface as <code>DataConnection</code>. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/24224">#24224</a></li>
   <li>Removed the <code>TO_ROW</code> function as it is obsolete, you can use <code>CAST (udtObj AS JSON)</code> instead. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23808">#23808</a></li>
   <li>SQL mappings for internal maps (<code>__sql.catalog</code> and <code>__jet.*</code>) cannot be created anymore. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/24282">#24282</a></li>
   <li>Changed the default cloud coordinator URL from <code>coordinator.hazelcast.cloud</code> to <code>api.viridian.hazelcast.com</code>.
   The default configuration now connects to <a href="https://viridian.hazelcast.com/sign-in?next=/">https://viridian.hazelcast.com/sign-in?next=/</a> instead of Hazelcast Cloud.
   If you want to continue accessing your Hazelcast Cloud clusters, you need to set the <code>hazelcast.client.cloud.url</code> property to <code>https://coordinator.hazelcast.cloud</code> in your configuration. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23290">#23290</a></li>
   </ul>
   <h2>Enhancements</h2>
   <h3>Cloud</h3>
   <ul>
   <li>Hazelcast was sending requests to Kubernetes API when deploying an application with embedded Hazelcast and <code>service-dns</code> (DNS lookup mode) specified to a Kubernetes cluster.
   This was causing the requests to be unsuccessful and the application not to start. This mechanism has been improved by creating Kubernetes client only for the DNS lookup mode. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23883">#23883</a></li>
   <li>When advanced networking is enabled, the Kubernetes discovery plugin might have been discovering several endpoints (per each port)
   for each member's pod. The discovery plugin now matches only the private IP per endpoint, ignoring the port values. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23766">#23766</a></li>
   <li>Added support of link:<a href="https://aws.amazon.com/about-aws/whats-new/2022/10/amazon-machine-images-support-instance-metadata-service-version-2-default/#:~:text=Posted%20On%3A%20Oct%203%2C%202022,depth%20against%20unauthorized%20metadata%20access.%5BIMDSv2%5E%5D">https://aws.amazon.com/about-aws/whats-new/2022/10/amazon-machine-images-support-instance-metadata-service-version-2-default/#:~:text=Posted%20On%3A%20Oct%203%2C%202022,depth%20against%20unauthorized%20metadata%20access.[IMDSv2^]</a> for Hazelcast's AWS Discovery plugin. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23545">#23545</a></li>
   <li>Added the support of discovering ECS and EC2 members on AWS. See xref:deploy:deploying-on-aws.adoc[Deploying a Cluster on Amazon AWS]. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/22411">#22411</a></li>
   </ul>
   <h3>Storage</h3>
   <ul>
   <li>Added support of generating suggested Data Definition Language (DDL) for a map with High-Density Memory Store and having no indexes. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/24054">#24054</a></li>
   <li>Disk tier option of Tiered Storage is now disabled by default. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23747">#23747</a></li>
   </ul>
   <p>NOTE: Tiered Storage feature is still in BETA stage.</p>
   <h3>Distribution</h3>
   <ul>
   <li>Hazelcast no longer depends on JRuby; the JRuby <code>ScriptFactory</code> dependency must be explicitly added to the application. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23355">#23355</a></li>
   <li>Added the Kafka Connect extension to the distribution. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23312">#23312</a></li>
   <li>Shaded dependencies for Hazelcast Platform have been combined in a dedicated package (<code>com.hazelcast.shaded</code>). <a href="https://redirect.github.com/hazelcast/hazelcast/issues/23124">#23124</a></li>
   </ul>
   <h3>Networking</h3>
   <ul>
   <li>Added socket options for per-socket keep-alive configuration: <code>keep-count</code>, <code>keep-idle-seconds</code>, and <code>keep-interval-seconds</code>.
   You can set these options using either the advanced network configurations or Hazelcast system properties.
   See Configuring TCP Keep-Alive. <a href="https://redirect.github.com/hazelcast/hazelcast/issues/24050">#24050</a></li>
   </ul>
   <h3>SQL Engine</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/a3ae01dcbfa32e3b314047506dadf837d54e8e2a"><code>a3ae01d</code></a> Upgrade version to 5.3.0</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/dc39625f173a315683ddcd5a7c6ee3446b5d7f1f"><code>dc39625</code></a> 5.3.0 release notes fix (<a href="https://redirect.github.com/hazelcast/hazelcast/issues/24591">#24591</a>)</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/c20c94b2a4ff74bd33ddd249f80f9c2939882246"><code>c20c94b</code></a> Update release_notes.txt</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/465d6b24789a67b53a4b30fd482f8d0083bd6c12"><code>465d6b2</code></a> Update release_notes.txt</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/ac5e0e389fa72a78adb646aadf1fe4d351610875"><code>ac5e0e3</code></a> Prepare release 5.3.0</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/9d9d7aa16a1c2e0656b28c894546383b11a39735"><code>9d9d7aa</code></a> Disallow adding listener to completed jobs [HZ-2254] (<a href="https://redirect.github.com/hazelcast/hazelcast/issues/24197">#24197</a>)</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/4a03057f8b4ecf0b624b09fde99e1f739ecd6dc1"><code>4a03057</code></a> Fix nightly MySql data connection test (<a href="https://redirect.github.com/hazelcast/hazelcast/issues/24556">#24556</a>)</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/77461f6990498fe855097b04ad96bb263726ad33"><code>77461f6</code></a> Increase timeout in GenericMapStoreIntegrationTest#testClear [HZ-2430] (<a href="https://redirect.github.com/hazelcast/hazelcast/issues/24551">#24551</a>)</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/e1727aa388f2b2fe27b4c6ce63074a7770d4dcce"><code>e1727aa</code></a> Tweak stream-to-stream fault tolerance stress test timeout and events count (...</li>
   <li><a href="https://github.com/hazelcast/hazelcast/commit/f1f6e5efe9ebf76a9ebc02b791d7bd77a4854426"><code>f1f6e5e</code></a> Prevent data connection creation with a wrong type (<a href="https://redirect.github.com/hazelcast/hazelcast/issues/24500">#24500</a>)</li>
   <li>Additional commits viewable in <a href="https://github.com/hazelcast/hazelcast/compare/v5.1...v5.3.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.hazelcast:hazelcast&package-manager=maven&previous-version=5.1&new-version=5.3.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)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   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 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)
   You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts).
   
   </details>


-- 
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: notifications-unsubscribe@linkis.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@linkis.apache.org
For additional commands, e-mail: notifications-help@linkis.apache.org


[GitHub] [linkis] casionone closed pull request #4682: Bump hazelcast from 5.1 to 5.3.0 in /linkis-engineconn-plugins/seatunnel

Posted by "casionone (via GitHub)" <gi...@apache.org>.
casionone closed pull request #4682: Bump hazelcast from 5.1 to 5.3.0 in /linkis-engineconn-plugins/seatunnel
URL: https://github.com/apache/linkis/pull/4682


-- 
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: notifications-unsubscribe@linkis.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@linkis.apache.org
For additional commands, e-mail: notifications-help@linkis.apache.org


[GitHub] [linkis] dependabot[bot] commented on pull request #4682: Bump hazelcast from 5.1 to 5.3.0 in /linkis-engineconn-plugins/seatunnel

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #4682:
URL: https://github.com/apache/linkis/pull/4682#issuecomment-1606546451

   OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts on 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: notifications-unsubscribe@linkis.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@linkis.apache.org
For additional commands, e-mail: notifications-help@linkis.apache.org


[GitHub] [linkis] aiceflower commented on pull request #4682: Bump hazelcast from 5.1 to 5.3.0 in /linkis-engineconn-plugins/seatunnel

Posted by "aiceflower (via GitHub)" <gi...@apache.org>.
aiceflower commented on PR #4682:
URL: https://github.com/apache/linkis/pull/4682#issuecomment-1606546037

   Have been upgraded


-- 
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: notifications-unsubscribe@linkis.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@linkis.apache.org
For additional commands, e-mail: notifications-help@linkis.apache.org