Skip to content

Bump @pinecone-database/pinecone from 6.1.4 to 7.0.0 - #10

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-7.0.0
Closed

Bump @pinecone-database/pinecone from 6.1.4 to 7.0.0#10
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-7.0.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps @pinecone-database/pinecone from 6.1.4 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

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 6.1.4 to 7.0.0.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v6.1.4...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 @github

dependabot Bot commented on behalf of github Feb 3, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@wpak-ai wpak-ai closed this Feb 12, 2026
@dependabot @github

dependabot Bot commented on behalf of github Feb 12, 2026

Copy link
Copy Markdown
Contributor Author

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
dependabot Bot deleted the dependabot/npm_and_yarn/pinecone-database/pinecone-7.0.0 branch February 12, 2026 02:09
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.

1 participant