Skip to content

build(deps): bump @pinecone-database/pinecone from 5.1.2 to 7.0.0#107

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-7.0.0
Open

build(deps): bump @pinecone-database/pinecone from 5.1.2 to 7.0.0#107
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-7.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 17, 2026

Bumps @pinecone-database/pinecone from 5.1.2 to 7.0.0.

Release notes

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

Release v7.0.0

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

Breaking Changes

Index Targeting

The preferred way to target an index has changed. You must now pass an options object to pc.index() instead of string arguments.

Old (v6):

const index = pc.index('my-index');
// or
const index = pc.index('my-index', 'https://my-index-abc123.svc.pinecone.io');

New (v7):

// Recommended: Target by host (most explicit)
const indexModel = await pc.describeIndex('my-index');
const index = pc.index({ host: indexModel.host });
// Alternative: Target by name (requires additional lookup)
const index = pc.index({ name: 'my-index' });
// Legacy string syntax still works but is deprecated
const index = pc.index('my-index'); // Will be removed in v8

Operation-Level Namespace Arguments

Many data plane operations now accept namespace as an operation-level parameter, allowing you to override the default namespace:

const index = pc.index({ host: indexModel.host });
// Override namespace per operation
await index.upsert({
namespace: 'ns1',
records: [{ id: '1', values: [0.1, 0.2] }],
});
await index.query({
namespace: 'ns2',
vector: [0.1, 0.2],
topK: 10,
});
</tr></table>

... (truncated)

Commits
  • 193d1b3 [skip ci] Publish release v7.0.0
  • 4f3cbb2 Small tweak to top-level README (#376)
  • 4e4d3a8 Refactor README.md for 2025-10, fix build-and-publish-docs workflow (#375)
  • ead0109 [2025-10][Assistant] Expose evaluate, add multimodal support in `uploadFile...
  • 536ea7e Unify operations around object shaped arguments, allow operation-level namesp...
  • a2b3d16 Update to node v20.x / typescript v5.6.3 (#372)
  • 1de20f6 Refactor RetryOnServerFailure -> createRetryingFetch, Remove strict `Vali...
  • 4f7163d Create draft release notes (#371)
  • 56dd8b5 Fix: Release workflow tagging and docs (#370)
  • 6225cfe Adjust node version in release workflow (#369)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​pinecone-database/pinecone since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Dependabot compatibility score

You can trigger a rebase of this PR 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 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [@pinecone-database/pinecone](https://github.com/pinecone-io/pinecone-ts-client) from 5.1.2 to 7.0.0.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v5.1.2...v7.0.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 17, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 17, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
leafra Error Error Feb 17, 2026 10:35pm
leafra-9rgi Error Error Feb 17, 2026 10:35pm

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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants