Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pinecone-client from 2.2.4 to 3.0.3 #469

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 19, 2024

Bumps pinecone-client from 2.2.4 to 3.0.3.

Release notes

Sourced from pinecone-client's releases.

v3.0.3 Release

Fixes

Chores

New Contributors

Full Changelog: pinecone-io/pinecone-python-client@v3.0.2...v3.0.3

Release v3.0.2

Fixes

Create indexes using source_collection option in PodSpec

This release resolves a bug when passing source_collection as part of the PodSpec. This option is used when creating a new index from vector data stored in a collection. The value of this field should be a collection you have created previously from an index and that shows with pc.list_collections(). Currently collections and pod-based indexes are not portable across environments.

from pinecone import Pinecone
pc = Pinecone(api_key='YOUR_API_KEY')
pc.create_index(
name='my-index',
dimension=1536,
metric='cosine',
spec=PodSpec(
environment='us-east1-gcp',
source_collection='collection-2024jan16',
)
)

Pass optional GRPCClientConfig when using PineconeGRPC

This could be considered as a fix for a UX bug or a micro-feature, depending on your perspective. In 3.0.2 we updated the pc.Index helper method that is used to build instances of the GRPCIndex class. It now accepts an optional keyword param grpc_config. Before this fix, you would need to import GRPCIndex and instantiate GRPCIndex yourself in order to pass this configuration and customize some settings, which was a bit clunky.

from pinecone.grpc import PineconeGRPC, GRPCClientConfig
pc = PineconeGRPC(api_key='YOUR_API_KEY')
grpc_config = GRPCClientConfig(
timeout=10,
secure=True,
reuse_channel=True
</tr></table>

... (truncated)

Commits
  • 26b7c10 [skip ci] Bump version to v3.0.3
  • 14f6384 upsert_from_dataframe: Hide all progressbars if !show_progress (#310)
  • 886f932 Update generated openapi code (#309)
  • 2c887bb Update github actions dependencies to fix warnings (#308)
  • 3297661 Add cleanup script and workflow
  • b8c12eb Support overriding additional_headers with PINECONE_ADDITIONAL_HEADERS en...
  • 921e0b4 gRPC: parse_query_response: Skip parsing empty Usage (#301)
  • 61c19ad [skip ci] Bump version to v3.0.2
  • 45c18e9 Optional configs to pass additional_headers/additional_metadata to indexe...
  • 995c0a1 Integration tests for collections (#299)
  • 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 19, 2024
Bumps [pinecone-client](https://github.com/pinecone-io/pinecone-python-client) from 2.2.4 to 3.0.3.
- [Release notes](https://github.com/pinecone-io/pinecone-python-client/releases)
- [Changelog](https://github.com/pinecone-io/pinecone-python-client/blob/main/CHANGELOG.md)
- [Commits](pinecone-io/pinecone-python-client@v2.2.4...v3.0.3)

---
updated-dependencies:
- dependency-name: pinecone-client
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/pinecone-client-3.0.3 branch from 37ae873 to c62115c Compare February 20, 2024 12:04
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 27, 2024

Superseded by #479.

@dependabot dependabot bot closed this Feb 27, 2024
@dependabot dependabot bot deleted the dependabot/pip/pinecone-client-3.0.3 branch February 27, 2024 05:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants