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

   Bumps 
[io.pinecone:pinecone-client](https://github.com/pinecone-io/pinecone-java-client)
 from 1.2.2 to 2.1.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pinecone-io/pinecone-java-client/releases";>io.pinecone:pinecone-client's
 releases</a>.</em></p>
   <blockquote>
   <h2>v2.1.0 Release</h2>
   <h3>Added: Support to disable TLS for data plane operations</h3>
   <p>This release adds the support for users to disable TLS verification for 
data plane operations. Users can disable it by setting <code>enableTLS</code> 
parameter of <code>PineconeConfig</code> class to <code>false</code>. We do not 
recommend going to production with TLS verification disabled. Following example 
shows how to disable TLS verification:</p>
   <pre lang="java"><code>import io.pinecone.clients.Index;
   import io.pinecone.configs.PineconeConfig;
   import io.pinecone.configs.PineconeConnection;
   import io.pinecone.unsigned_indices_model.QueryResponseWithUnsignedIndices;
   import io.pinecone.proto.UpsertResponse;
   import java.util.Arrays;
   <p>public class DisableTLSExample {<br />
   public static void main(String[] args) {<br />
   PineconeConfig config = new PineconeConfig(&quot;api&quot;);<br />
   config.setHost(&quot;localhost:5081&quot;);<br />
   config.setTLSEnabled(false);<br />
   PineconeConnection connection = new PineconeConnection(config);<br />
   Index index = new Index(connection, &quot;example-index&quot;);</p>
   <pre><code>    // Data plane operations
       // 1. Upsert data
       UpsertResponse upsertResponse = index.upsert(&amp;quot;v1&amp;quot;, 
Arrays.asList(1f, 2f, 3f));
       // 2. Query data
       QueryResponseWithUnsignedIndices queryResponse = 
index.queryByVectorId(1, &amp;quot;v1&amp;quot;, true, true);
   }
   </code></pre>
   <p>}<br />
   </code></pre></p>
   <h2>What's Changed</h2>
   <ul>
   <li>Change &quot;client&quot; to &quot;SDK&quot; by <a 
href="https://github.com/jseldess";><code>@​jseldess</code></a> in <a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/149";>pinecone-io/pinecone-java-client#149</a></li>
   <li>Updating issue templates by <a 
href="https://github.com/anawishnoff";><code>@​anawishnoff</code></a> in <a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/148";>pinecone-io/pinecone-java-client#148</a></li>
   <li>Add support for disabling TLS by <a 
href="https://github.com/rohanshah18";><code>@​rohanshah18</code></a> in <a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/150";>pinecone-io/pinecone-java-client#150</a></li>
   <li>Prep for release v2.1.0 and add proxy config &amp; disabling TLS 
examples to README by <a 
href="https://github.com/rohanshah18";><code>@​rohanshah18</code></a> in <a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/152";>pinecone-io/pinecone-java-client#152</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/jseldess";><code>@​jseldess</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/149";>pinecone-io/pinecone-java-client#149</a></li>
   <li><a href="https://github.com/anawishnoff";><code>@​anawishnoff</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/148";>pinecone-io/pinecone-java-client#148</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/pinecone-io/pinecone-java-client/compare/v2.0.0...v2.1.0";>https://github.com/pinecone-io/pinecone-java-client/compare/v2.0.0...v2.1.0</a></p>
   <h2>v2.0.0 Release</h2>
   <h3>Added: API versioning</h3>
   <p>This updated release of the Pinecone Java SDK depends on API version 
<code>2024-07</code>. This v2 SDK release line should continue to receive fixes 
as long as the <code>2024-07</code> API version is in support.</p>
   <h3>Added:  Deletion Protection</h3>
   <p>Use deletion protection to prevent your most important indexes from 
accidentally being deleted. This feature is available for both serverless and 
pod indexes.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/pinecone-io/pinecone-java-client/blob/main/CHANGELOG.md";>io.pinecone:pinecone-client's
 changelog</a>.</em></p>
   <blockquote>
   <h3>2.1.0</h3>
   <ul>
   <li>Add support to disable TLS for data plane operations</li>
   </ul>
   <h3>2.0.0</h3>
   <ul>
   <li>Add deletion protection</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/27ea4884b27aeb81c85a8cecc0a4c2e8f288680c";><code>27ea488</code></a>
 Prep for release v2.1.0 and add proxy config &amp; disabling TLS examples to 
READ...</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/c75a0dfe47bc90fe22aae171be4ec00a96e2300a";><code>c75a0df</code></a>
 Add support for disabling TLS (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/150";>#150</a>)</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/987154c8d916efb0dde4e00602b2287d0b9b3c32";><code>987154c</code></a>
 Updating issue templates (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/148";>#148</a>)</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/f4e025f4b67bbbaa0a748c4d145ebaaac71360cb";><code>f4e025f</code></a>
 Change &quot;client&quot; to &quot;SDK&quot; (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/149";>#149</a>)</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/e5f79bb81e1d1748f4f6ff13c66d10442440c309";><code>e5f79bb</code></a>
 Clean up README (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/146";>#146</a>)</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/c50d9a62f4ccd2e6f7c6b25b93c70fe5aac14794";><code>c50d9a6</code></a>
 Prepare for v2.0.0 release and update README + add migration guide (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/145";>#145</a>)</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/ebb0fc95cb34ebea23f0e300affd4e013cba9fb7";><code>ebb0fc9</code></a>
 Update generated code for fixing Collection Model's dimension error (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/144";>#144</a>)</li>
   <li><a 
href="https://github.com/pinecone-io/pinecone-java-client/commit/ddc00b8f87cc2b8cd1c46323158e1048b23aec82";><code>ddc00b8</code></a>
 Release candidate/2024 07 (<a 
href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/142";>#142</a>)</li>
   <li>See full diff in <a 
href="https://github.com/pinecone-io/pinecone-java-client/compare/v1.2.2...v2.1.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.pinecone:pinecone-client&package-manager=maven&previous-version=1.2.2&new-version=2.1.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 show <dependency name> 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)
   
   
   </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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to