Skip to content

chore(deps): bump pinecone from 8.0.0 to 8.1.0#342

Merged
mergify[bot] merged 1 commit intomainfrom
dependabot/pip/pinecone-8.1.0
Apr 2, 2026
Merged

chore(deps): bump pinecone from 8.0.0 to 8.1.0#342
mergify[bot] merged 1 commit intomainfrom
dependabot/pip/pinecone-8.1.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps pinecone from 8.0.0 to 8.1.0.

Release notes

Sourced from pinecone's releases.

v8.1.0

This release adds support for creating and configuring index read_capacity for BYOC indexes:

import pinecone
from pinecone import ByocSpec
pc = pinecone.Pinecone(api_key="YOUR_API_KEY")
Create a BYOC index with OnDemand read capacity
pc.create_index(
name="my-byoc-index",
dimension=1536,
spec=ByocSpec(
environment="my-byoc-env",
read_capacity={"mode": "OnDemand"},
)
)
Create a BYOC index with Dedicated read capacity
pc.create_index(
name="my-byoc-index",
dimension=1536,
spec=ByocSpec(
environment="my-byoc-env",
read_capacity={
"mode": "Dedicated",
"dedicated": {
"node_type": "b1",
"scaling": "Manual",
"manual": {"replicas": 2},
},
},
)
)

The following user-facing types have been added or updated to support this:

  • ByocSpec — now accepts optional read_capacity and schema fields
  • ReadCapacityDict — union alias for the two read capacity modes below
  • ReadCapacityOnDemandDict{"mode": "OnDemand"}
  • ReadCapacityDedicatedDict{"mode": "Dedicated", "dedicated": ReadCapacityDedicatedConfigDict}
  • ReadCapacityDedicatedConfigDict{"node_type": str, "scaling": str, "manual": ScalingConfigManualDict}
  • ScalingConfigManualDict{"shards": int, "replicas": int}
  • MetadataSchemaFieldConfig{"filterable": bool}, used with the schema field on ByocSpec

All of the above are exported from the top-level pinecone module.

Support for scan_factor and max_candidates has been added to Index.query() and Index.query_namespaces():

</tr></table> 

... (truncated)

Commits
  • 4a2e17e [skip ci] Bump version to v8.1.0
  • 4ed1cbc Implement scan_factor and max_candidates for query (#617)
  • 8a2d2e5 Regenerate code from 2025-10, implement schema/read_capacity in `BYOCSp...
  • 72f958f Remove files no longer needed at project root
  • ddb74e2 [skip ci] Bump version to v8.0.1
  • e2361fd Add disableIntegrationTests option to release workflow (#613)
  • eaa2e88 Bump protobuf to 6.31.1+ to address CVE-2025-4565 (#611)
  • 5afab96 Fix README CI/CD badge (#608)
  • 876fdff feat: add Protocol definitions for adapter layer (#604)
  • c6d7044 fix: prevent logging sensitive API key data in test (#603)
  • 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 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)

Bumps [pinecone](https://github.com/pinecone-io/pinecone-python-client) from 8.0.0 to 8.1.0.
- [Release notes](https://github.com/pinecone-io/pinecone-python-client/releases)
- [Commits](pinecone-io/pinecone-python-client@v8.0.0...v8.1.0)

---
updated-dependencies:
- dependency-name: pinecone
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Dependabot dependency checking python Python dependency checked by Dependabot labels Apr 2, 2026
@github-actions github-actions bot requested a review from lpm0073 April 2, 2026 03:17
@mergify mergify bot merged commit c060663 into main Apr 2, 2026
3 checks passed
@dependabot dependabot bot deleted the dependabot/pip/pinecone-8.1.0 branch April 2, 2026 03:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependabot dependency checking python Python dependency checked by Dependabot

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant