coronasafe / ayushma

Empowering Nurses with Multilingual ICU Protocols. Leveraging the rapid advancements in AI technology, created multilingual interfaces that assist nurses in rapidly upgrading their knowledge about ICU protocols.
https://ayushma-api.ohc.network
MIT License
7 stars 8 forks source link

Bump pinecone-client from 2.2.4 to 3.2.1 #492

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps pinecone-client from 2.2.4 to 3.2.1.

Release notes

Sourced from pinecone-client's releases.

Release v3.2.1

What's Changed

Source tag

The SDK now optionally allows setting a source tag when constructing a Pinecone client. The source tag allows requests to be associated with the source tag provided.

from pinecone import Pinecone

pc = Pinecone(api_key='your-key', source_tag='foo')

requests initiated from pc connection are associated with source tag "foo"

or

from pinecone.grpc import PineconeGRPC

pc = PineconeGRPC(api_key='your-key', source_tag='foo')

New Contributors

Full Changelog: https://github.com/pinecone-io/pinecone-python-client/compare/v3.2.0...v3.2.1

Release v3.2.0

Feature: Proxy Configuration

In #321 and #325 we implemented four new optional configuration properties that are relevant for users who need to work with proxies:

  • proxy_url: The location of your proxy. This could be an http or https url depending on your proxy setup.
  • proxy_headers: This param accepts a dictionary which can be used to pass any custom headers required by your proxy. If your proxy is protected by authentication, this is how you can pass basic auth headers with a digest of your username and password.
  • ssl_ca_certs: By default the client will perform SSL certificate verification using the CA bundle maintained by Mozilla in the certifi package. If your proxy is using self-signed certs, use this param to specify the path to the certificate (PEM format) we should use to verify your requests.
  • ssl_verify: SSL verification is enabled by default, but it can be disabled to aid in troubleshooting.
from pinecone import Pinecone
import urllib3 import make_headers

pc = Pinecone( api_key="YOUR_API_KEY", proxy_url='https://your-proxy.com', proxy_headers=make_headers(proxy_basic_auth='username:password'), ssl_ca_certs='path/to/cert-bundle.pem' )

pc.list_indexes()

Migration from pre-3.0 clients

... (truncated)

Commits
  • 58ea88c [skip ci] Bump version to v3.2.1
  • 4fd2d20 Allow clients to tag requests with a source_tag (#324)
  • ed8c2ab [skip ci] Bump version to v3.2.0
  • 6fa0447 Revise proxy configuration, add integration testing (#325)
  • a201cb6 [Fix] Configuring SSL proxy via openapi_config object (#321)
  • b02388e Update README.md (#323)
  • 8f2c370 [skip ci] Bump version to v3.1.0
  • 2ca1eb9 List vector ids by prefix (#307)
  • 1235fbd Fix minor README docs issues in client reference (#316)
  • e257894 Sync models from pinecone-protos (#315)
  • 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 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[bot] commented 1 month ago

Superseded by #496.