Skip to content

chore(deps): bump @pinecone-database/pinecone from 7.2.0 to 8.0.0#155

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

chore(deps): bump @pinecone-database/pinecone from 7.2.0 to 8.0.0#155
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-8.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown

Bumps @pinecone-database/pinecone from 7.2.0 to 8.0.0.

Release notes

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

Release v8.0.0

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

Breaking Changes

Assistant file operations are now asynchronous

The 2026-04 API made all file mutation operations asynchronous. uploadFile and deleteFile now return an OperationModel that tracks the in-progress operation rather than resolving once the file is ready.

uploadFile return type changed

uploadFile previously returned an AssistantFileModel describing the created file. It now returns an OperationModel.

Before (v7):

const file = await assistant.uploadFile({ path: 'report.pdf' });
console.log(file.id);     // file ID, immediately usable
console.log(file.status); // 'Processing' | 'Available' | 'Failed'

After (v8):

const operation = await assistant.uploadFile({ path: 'report.pdf' });
console.log(operation.id);     // operation ID — use this to poll
console.log(operation.fileId); // the file ID being created
console.log(operation.status); // 'Processing' | 'Completed' | 'Failed'
// Poll until the file is ready
let op = operation;
while (op.status === 'Processing') {
await new Promise((r) => setTimeout(r, 2000));
op = await assistant.describeOperation({ operationId: operation.id });
}

deleteFile signature and return type changed

deleteFile previously accepted { fileId: string } and returned void. It now accepts a bare fileId: string and returns an OperationModel.

Before (v7):

await assistant.deleteFile({ fileId: 'abc123' });

After (v8):

const operation = await assistant.deleteFile('abc123');
console.log(operation.status); // 'Processing' | 'Completed' | 'Failed'

... (truncated)

Commits
  • fbb8eec [skip ci] Publish release v8.0.0
  • 94b918f Align user-facing wrapper with regenerated 2026-04 core (#390)
  • b09ba32 Regenerate client core off of 2026-04 (#387)
  • 5dabac1 fix(deps): bump minimatch from 3.1.2 to 3.1.5 via overrides (#386)
  • abc3c5a FTS Preview Part 2: collections, document upsert, search, fetch, and `d...
  • 779860d FTS Preview Implementation (#384)
  • See full diff 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 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 7.2.0 to 8.0.0.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v7.2.0...v8.0.0)

---
updated-dependencies:
- dependency-name: "@pinecone-database/pinecone"
  dependency-version: 8.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 Jul 1, 2026

Copy link
Copy Markdown
Author

Labels

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

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

@vercel

vercel Bot commented Jul 1, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
supercli Ready Ready Preview, Comment Jul 1, 2026 6:36pm
supercli-client Ready Ready Preview, Comment Jul 1, 2026 6:36pm
supercli-docs Ready Ready Preview, Comment Jul 1, 2026 6:36pm

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