Skip to content

chore(deps-dev): bump @pinecone-database/pinecone from 2.2.2 to 5.0.0 in /packages/instrumentation-pinecone #536

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2025

Bumps @pinecone-database/pinecone from 2.2.2 to 5.0.0.

Release notes

Sourced from @​pinecone-database/pinecone's releases.

Release v5.0.0

This version of the Pinecone Node SDK depends on version 2025-01 of the Pinecone API. You can read more about versioning here. This v3 SDK release line should continue to receive fixes as long as the 2025-01 API version is in support.

Features

Sparse index support

You can now work with sparse-only indexes. These indexes enable direct indexing and retrieval of sparse vectors, supporting traditional methods like BM25 and learned sparse models such as pinecone-sparse-english-v0. You can read more about getting started with sparse-only indexes here.

The following example demonstrates creating a new sparse-only index, and upserting some arbitrary sparse vector data:

import { Pinecone } from '@pinecone-database/pinecone';
const pc = new Pinecone();
// create a sparse serverless index
await pc.createIndex({
name: 'sample-index',
vectorType: 'sparse',
spec: {
serverless: {
cloud: 'aws',
region: 'us-east-1',
},
},
});
// upsert sparse vectors to the index
const index = pc.index('sample-index');
const sparseVectors = [
{
id: '1',
sparseValues: { indices: [0, 1], values: [0.236, 0.34] },
},
{
id: '2',
sparseValues: { indices: [0, 1], values: [0.345, 0.98] },
},
];
await index.upsertVectors(sparseVectors);

Assistant support

Support has been added for working with Pinecone Assistants. Pinecone Assistant is a service that allows you to upload documents, ask questions, and receive responses that reference your documents. This is known as retrieval-augmented generation (RAG).

const pc = new Pinecone();
// create an assistant
await pc.createAssistant({
</tr></table>

... (truncated)

Commits
  • 98368be [skip ci] Publish release v5.0.0
  • 50ea583 tweak describeFile test to reduce flakiness
  • b99f71a update README CI badge
  • 6d2671b Merge release-candidate/2025-01 -> main for v5.0.0 (#329)
  • d522c80 fix release-rc workflow
  • 63bba87 [skip ci] Publish release v4.1.0
  • fa0fc61 Add sleep to codegen script (#321)
  • 0d0a220 Build out index tags tests a bit more (#319)
  • f71419d Add retries to configureIndex and update operations (#318)
  • 4516c53 Small fix in deleteAll documentation regardning namespaces (#314)
  • 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)

Bumps [@pinecone-database/pinecone](https://github.com/pinecone-io/pinecone-ts-client) from 2.2.2 to 5.0.0.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v2.2.2...v5.0.0)

---
updated-dependencies:
- dependency-name: "@pinecone-database/pinecone"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 17, 2025

The following labels could not be found: instrumentation-pinecone.

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 24, 2025

Superseded by #548.

@dependabot dependabot bot closed this Feb 24, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/packages/instrumentation-pinecone/pinecone-database/pinecone-5.0.0 branch February 24, 2025 14:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants