[PR #18804] [CLOSED] chore(deps): bump pinecone from 6.0.2 to 7.3.0 in /backend #47999

Closed
opened 2026-04-29 23:27:38 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/18804
Author: @dependabot[bot]
Created: 11/1/2025
Status: Closed

Base: devHead: dependabot/pip/backend/dev/pinecone-7.3.0


📝 Commits (1)

  • e24f034 chore(deps): bump pinecone from 6.0.2 to 7.3.0 in /backend

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 backend/requirements.txt (+1 -1)

📄 Description

Bumps pinecone from 6.0.2 to 7.3.0.

Release notes

Sourced from pinecone's releases.

v7.3.0

This minor release includes the ability to interact with the Admin API and adds support for working with index namespaces via gRPC. Previously, namespace support was available only through REST.

Admin api

This release introduces an Admin class that provides support for performing CRUD operations on projects and API keys using REST.

Projects

from pinecone import Admin

Use service account credentials

admin = Admin(client_id='foo', client_secret='bar')

Example: Create a project

project = admin.project.create( name="example-project", max_pods=5 ) print(f"Project {project.id} was created")

Example: Rename a project

project = admin.project.get(name='example-project') admin.project.update( project_id=project.id, name='my-awesome-project' )

Example: Enable CMEK on all projects

project_list = admin.projects.list() for proj in project_list_response.data: admin.projects.update( project_id=proj.id, force_encryption_with_cmek=True )

Example: Set pod quota to 0 for all projects

project_list = admin.projects.list() for proj in project_list_response.data: admin.projects.update(project_id=proj.id, max_pods=0)

Delete the project

admin.project.delete(project_id=project.id)

API Keys

</tr></table> 

... (truncated)

Commits
  • 7f96c60 [skip ci] Bump version to v7.3.0
  • 64ca705 Add support for list, describe, and delete namespaces in grpc (#517)
  • 31af542 Implement Admin API (#512)
  • 193c99e [skip ci] Bump version to v7.2.0
  • 28c142a Add embed to Index configure calls (#515)
  • dfd0125 Fix release workflow (#516)
  • 8553b93 Add describe, delete, and list namespaces (REST) (#507)
  • 965d353 [skip ci] Bump version to v7.1.0
  • 5e5ef37 Remove Github username from index_name for integration tests (#514)
  • 2fe971e Fix race condition in integration test cleanup (#513)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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 <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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/18804 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/1/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `dependabot/pip/backend/dev/pinecone-7.3.0` --- ### 📝 Commits (1) - [`e24f034`](https://github.com/open-webui/open-webui/commit/e24f034007147548f1d608ea106f84bb15bd3ab9) chore(deps): bump pinecone from 6.0.2 to 7.3.0 in /backend ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `backend/requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [pinecone](https://github.com/pinecone-io/pinecone-python-client) from 6.0.2 to 7.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pinecone-io/pinecone-python-client/releases">pinecone's releases</a>.</em></p> <blockquote> <h2>v7.3.0</h2> <p>This minor release includes the ability to interact with the Admin API and adds support for working with index namespaces via gRPC. Previously, namespace support was available only through REST.</p> <h2>Admin api</h2> <p>This release introduces an Admin class that provides support for performing CRUD operations on projects and API keys using REST.</p> <h3>Projects</h3> <pre lang="python"><code>from pinecone import Admin <h1>Use service account credentials</h1> <p>admin = Admin(client_id='foo', client_secret='bar')</p> <h1>Example: Create a project</h1> <p>project = admin.project.create( name=&quot;example-project&quot;, max_pods=5 ) print(f&quot;Project {project.id} was created&quot;)</p> <h1>Example: Rename a project</h1> <p>project = admin.project.get(name='example-project') admin.project.update( project_id=project.id, name='my-awesome-project' )</p> <h1>Example: Enable CMEK on all projects</h1> <p>project_list = admin.projects.list() for proj in project_list_response.data: admin.projects.update( project_id=proj.id, force_encryption_with_cmek=True )</p> <h1>Example: Set pod quota to 0 for all projects</h1> <p>project_list = admin.projects.list() for proj in project_list_response.data: admin.projects.update(project_id=proj.id, max_pods=0)</p> <h1>Delete the project</h1> <p>admin.project.delete(project_id=project.id)</p> <p></code></pre></p> <h3>API Keys</h3> <pre lang="python"><code>&lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/7f96c600bc7510a70bd6af5c3e65a4a146cde2a8"><code>7f96c60</code></a> [skip ci] Bump version to v7.3.0</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/64ca7057e7fd4e38269da35807aed479565f60f9"><code>64ca705</code></a> Add support for list, describe, and delete namespaces in grpc (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/517">#517</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/31af542b232471c04f83525032d547a052a39718"><code>31af542</code></a> Implement Admin API (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/512">#512</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/193c99ec16798342faec538504ee120acb282786"><code>193c99e</code></a> [skip ci] Bump version to v7.2.0</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/28c142a4ad5624c9252e8ebd28ea0ba094ba822a"><code>28c142a</code></a> Add <code>embed</code> to Index <code>configure</code> calls (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/515">#515</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/dfd01253344453540fae372beda354d589124709"><code>dfd0125</code></a> Fix release workflow (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/516">#516</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/8553b93462a79c6d8c7ef7f3411c6021d8d7a46d"><code>8553b93</code></a> Add describe, delete, and list namespaces (REST) (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/507">#507</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/965d35320c5c3f9095fff213fe52c0ed442cd540"><code>965d353</code></a> [skip ci] Bump version to v7.1.0</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/5e5ef3784d8d1c58c5ff0cce07fa0a9812ad0ef9"><code>5e5ef37</code></a> Remove Github username from index_name for integration tests (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/514">#514</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-python-client/commit/2fe971e826c5f9e29e825274bae5afa4136c1e1b"><code>2fe971e</code></a> Fix race condition in integration test cleanup (<a href="https://redirect.github.com/pinecone-io/pinecone-python-client/issues/513">#513</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pinecone-io/pinecone-python-client/compare/v6.0.2...v7.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pinecone&package-manager=pip&previous-version=6.0.2&new-version=7.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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-29 23:27:38 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#47999