Skip to content

v2.2.0 Release

Compare
Choose a tag to compare
@austin-denoble austin-denoble released this 27 Mar 22:45
· 89 commits to main since this release

sourceTag added to PineconeConfiguration

The SDK now supports optionally passing a sourceTag when instantiating the Pinecone client. This tag allows requests made by the SDK to be attributed via the user-agent.

import { Pinecone } from '@pinecone-database/pinecone';
const pc = new Pinecone({ apiKey: 'my-api-key', sourceTag: 'my-source-tag' });

// Requests made from the client will now have this tag applied to the user-agent

What's Changed

  • Add sourceTag to PineconeConfiguration and additionalHeaders to data plane calls by @austin-denoble in #197

Full Changelog: v2.1.1...v2.2.0