openllmetry-js icon indicating copy to clipboard operation
openllmetry-js copied to clipboard

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

Open dependabot[bot] opened this issue 9 months ago • 1 comments

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

Release notes

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

Release v5.1.1

Fixes an issue where the typing for the upsertRecords method did not accept _id as an object argument. The _id and _score values are now properly returned from the searchRecords method instead of mapped values.

What's Changed

Full Changelog: https://github.com/pinecone-io/pinecone-ts-client/compare/v5.1.0...v5.1.1

Release v5.1.0

Features

Indexes with Integrated Inference

This release adds a new createIndexForModel method as well as upsertRecords, and searchRecords methods. Together these methods provide a way for you to easily store your data and let us manage the process of creating embeddings. To learn about available models, see the Model Gallery.

import { Pinecone } from '@pinecone-database/pinecone';

// 1. Instantiate the Pinecone client const pc = new Pinecone();

// 2. Create an index configured for use with a particular model await pc.createIndexForModel({ name: 'my-integrated-index', cloud: 'aws', region: 'us-east-1', embed: { model: 'multilingual-e5-large', fieldMap: { text: 'chunk_text' }, }, waitUntilReady: true, });

// 3. Instantiate an Index client with a namespace const namespace = pc.index('my-integrated-index').namespace('my-namespace');

// 4. Upsert records await namespace.upsertRecords([ { id: 'rec1', chunk_text: "Apple's first product, the Apple I, was released in 1976 and was hand-built by co-founder Steve Wozniak.", category: 'product', }, { id: 'rec2', chunk_text: 'Apples are a great source of dietary fiber, which supports digestion and helps maintain a healthy gut.', category: 'nutrition', </tr></table>

... (truncated)

Commits
  • e5b39d7 [skip ci] Publish release v5.1.1
  • 7468566 Fix _id and _score in records APIs (#334)
  • cec0392 [skip ci] Publish release v5.1.0
  • fe8bc96 Implement additional Assistant features (#333)
  • d43ed0b Implement integrated inference (#331)
  • 6af331e [skip ci] Publish release v5.0.2
  • 61b923b remove unneeded check from integration test
  • ae7d691 export additional Embedding types, reduce retry time for integration assertWi...
  • e137e4c [skip ci] Publish release v5.0.1
  • dc46f52 Remove EmbeddingsList custom class (#330)
  • 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[bot] avatar Mar 10 '25 13:03 dependabot[bot]

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

dependabot[bot] avatar Mar 10 '25 13:03 dependabot[bot]

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

dependabot[bot] avatar Jul 26 '25 08:07 dependabot[bot]