dependabot[bot] opened a new pull request, #19919: URL: https://github.com/apache/camel/pull/19919
Bumps [io.pinecone:pinecone-client](https://github.com/pinecone-io/pinecone-java-client) from 3.1.0 to 6.0.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> <h1>v6.0.0 Release</h1> <p>This version of the Pinecone Java SDK introduces Bring Your Own Cloud (BYOC), dedicated read capacity, metadata indexing, the ability to create namespaces explicitly, enhanced namespace listing with prefix filtering, fetch and update operations by metadata filters, and support for version 2025-10 of the Pinecone API. You can read more about versioning <a href="https://docs.pinecone.io/reference/api/versioning">here</a>.</p> <h2>Features</h2> <h3>Bring Your Own Cloud (BYOC)</h3> <p>This release adds support for creating BYOC (Bring Your Own Cloud) indexes. BYOC indexes allow you to deploy Pinecone indexes in your own cloud infrastructure. You must have a BYOC environment set up with Pinecone before creating a BYOC index. The BYOC environment name is provided during BYOC onboarding.</p> <p>The following methods were added for creating BYOC indexes:</p> <ul> <li><code>createByocIndex(String indexName, String metric, int dimension, String environment)</code> - Create a BYOC index with minimal required parameters</li> <li><code>createByocIndex(String indexName, String metric, int dimension, String environment, String deletionProtection, Map<String, String> tags, BackupModelSchema schema)</code> - Create a BYOC index with all options including deletion protection, tags, and metadata schema</li> </ul> <p>Following example shows how to create BYOC indexes:</p> <pre lang="java"><code>import io.pinecone.clients.Pinecone; import org.openapitools.db_control.client.model.IndexModel; import org.openapitools.db_control.client.model.BackupModelSchema; import org.openapitools.db_control.client.model.BackupModelSchemaFieldsValue; import java.util.HashMap; import java.util.Map; <p>Pinecone pinecone = new Pinecone.Builder("PINECONE_API_KEY").build();</p> <p>String indexName = "example-index";<br /> String similarityMetric = "cosine";<br /> int dimension = 1538;<br /> String byocEnvironment = "your-byoc-environment";</p> <p>// Create BYOC index with minimal parameters<br /> IndexModel indexModel = pinecone.createByocIndex(indexName, similarityMetric, dimension, byocEnvironment);</p> <p>// Create BYOC index with metadata schema<br /> HashMap<String, String> tags = new HashMap<>();<br /> tags.put("env", "production");</p> <p>Map<String, BackupModelSchemaFieldsValue> fields = new HashMap<>();<br /> fields.put("genre", new BackupModelSchemaFieldsValue().filterable(true));<br /> fields.put("year", new BackupModelSchemaFieldsValue().filterable(true));<br /> BackupModelSchema schema = new BackupModelSchema().fields(fields);</p> <p>IndexModel indexModelWithSchema = pinecone.createByocIndex(<br /> indexName, similarityMetric, dimension, byocEnvironment, "enabled", tags, schema);<br /> </code></pre></p> <h3>Dedicated Read Capacity</h3> <!-- 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>6.0.0</h3> <ul> <li>Add support for: <ul> <li>dedicated read nodes</li> <li>byoc</li> <li>create namespace and enhance list namespaces</li> <li>update and fetch by metadata</li> <li>metadata indexing</li> </ul> </li> <li>Generate code based on 2025-10 api spec</li> </ul> <h3>5.1.0</h3> <ul> <li>Add support for models api</li> </ul> <h3>5.0.0</h3> <ul> <li>Add support for backups and restore</li> <li>Add support for list, describe, and delete namespaces</li> <li>Generate code based on 2025-04 api spec</li> <li>Automate ndjson handling</li> </ul> <h3>4.0.1</h3> <ul> <li>Create a new config per index connection</li> </ul> <h3>4.0.0</h3> <ul> <li>Add support for sparse indexes</li> <li>Generate code based on 2025-01 open-api spec</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/2fa719f38969e42008af514e033aafc29805039a"><code>2fa719f</code></a> prepare to release v6.0.0</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/c6a8fb455851066caced6d07551f86404019897b"><code>c6a8fb4</code></a> Add fetch and update by metadata (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/206">#206</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/c01528ea44ab923635f6abc2515782c0b55e767b"><code>c01528e</code></a> Add createNamespace(), and prefix + totalCount to listNamespaces() (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/205">#205</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/3e3c08604b895e304eb0ab5d57cd08e221cb7da4"><code>3e3c086</code></a> Generate core based on oas and protos (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/204">#204</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/879f11d27c5f7bca6a8ec69653ae58b45f21cd0b"><code>879f11d</code></a> Add support for Bring Your Own Cloud (BYOC) (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/203">#203</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/29fca24c2b9403013b43ed8e2ec43105d7ccea5a"><code>29fca24</code></a> Add Support for Dedicated Read Capacity (DRN) and Metadata Schema Configurati...</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/44eb18b6d8cb2a55fc2284e95d8d9ce4801304e8"><code>44eb18b</code></a> update README for breaking changes</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/1d026efde278a776c51a458615908cbfb504a604"><code>1d026ef</code></a> fix integration tests x3</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/c51e0201167329fb287378062b30cc950427f978"><code>c51e020</code></a> fix integration tests x2</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/6526f212aa622fca0da9dd1bdf449243f0639264"><code>6526f21</code></a> fix integration tests</li> <li>Additional commits viewable in <a href="https://github.com/pinecone-io/pinecone-java-client/compare/v3.1.0...v6.0.0">compare view</a></li> </ul> </details> <br /> [](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]
