Skip to content

chore(deps-dev): bump @pinecone-database/pinecone from 8.2.0 to 9.0.0 - #21

Merged
PunGrumpy merged 2 commits into
mainfrom
dependabot/bun/pinecone-database/pinecone-9.0.0
Sep 18, 2026
Merged

PunGrumpy merged 2 commits into
mainfrom
dependabot/bun/pinecone-database/pinecone-9.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 17, 2026 •

Copy link
Copy Markdown
Contributor

Bumps @pinecone-database/pinecone from 8.2.0 to 9.0.0.

Release notes

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

Release v9.0.0

Pinecone TypeScript SDK v9.0.0

v9 brings schema-based document operations into the main client, adds recurring backup schedules, and targets Pinecone API version 2026-07. It requires Node.js 22 or later.

Classic vector methods such as index.upsert, query, and fetch remain available, and deprecated flat control methods retain supported v8 request shapes. Review the breaking changes below for response-type changes, preview migration, and index-configuration restrictions. The v9 migration guide provides the detailed upgrade reference.

What's new

Work with schema-based documents through the main client

Search documents by vector similarity or full text, return selected fields, and update records by ID or filter through the main client. Use pc.indexes.create to define searchable fields in schema.fields, then access documents through pc.index('my-index').namespace('my-namespace').documents. The accessor provides upsert, search, fetch, update, delete, and list.

For example, create a full-text index and search product descriptions:

import { Pinecone } from '@pinecone-database/pinecone';
const pc = new Pinecone();
await pc.indexes.create({
name: 'product-documents',
schema: {
fields: {
description: { type: 'string', fullTextSearch: {} },
},
},
waitUntilReady: true,
});
const documents = pc.index('product-documents').namespace('catalog').documents;
await documents.upsert({
documents: [
{ _id: 'shoe-1', description: 'Waterproof hiking shoes' },
{ _id: 'shoe-2', description: 'Lightweight running shoes' },
],
});
// Newly written documents may take a moment to become searchable.
const results = await documents.search({
scoreBy: [{ type: 'text', fields: ['description'], query: 'hiking shoes' }],
topK: 5,
includeFields: ['description'],
});
console.log(results.matches);

Document operations replace the pc.preview document methods. Classic vector indexes continue using vector methods, and integrated-embedding indexes use upsertRecords and searchRecords.

Schedule recurring backups

... (truncated)

Commits
  • fca1f72 [skip ci] Publish release v9.0.0
  • 2d60e31 fix: grant release workflow pull request read permission
  • 9a34bfe Merge pull request #172 from pinecone-io/codex/document-search-guides
  • f171d4d Merge remote-tracking branch 'origin/main'
  • 4447b8d docs: cover document search and backup schedules
  • bb6e99f Add TypeScript SDK public sync script
  • 3b783ba Merge pull request #171 from pinecone-io/codex/land-legacy-compatibility
  • cefaf20 Merge legacy capacity and named option fixes into release candidate
  • bfe8c3e Merge pull request #164 from pinecone-io/codex/issue-157
  • f350d60 Merge pull request #143 from pinecone-io/codex/legacy-index-response
  • 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 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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 17, 2026
@vercel

vercel Bot commented Sep 17, 2026 •

Copy link
Copy Markdown

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

Project Deployment Actions Updated
vecstore-sdk Ready Ready Preview Sep 18, 2026 6:30pm UTC

@changeset-bot

changeset-bot Bot commented Sep 17, 2026 •

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 1771f1e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai

coderabbitai Bot commented Sep 17, 2026 •

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Advanced

Run ID: 7d52617b-3342-4bb3-b31c-a79c17b871b6

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@PunGrumpy

Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot @github

dependabot Bot commented on behalf of github Sep 18, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot encountered an unknown error. Because of this, Dependabot cannot update this pull request.

@PunGrumpy
PunGrumpy force-pushed the dependabot/bun/pinecone-database/pinecone-9.0.0 branch from 6d49ede to a8aac3f Compare September 18, 2026 18:27
@socket-security

socket-security Bot commented Sep 18, 2026 •

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​pinecone-database/​pinecone@​8.2.0 ⏵ 9.0.075 +210010091 -4100

View full report

@pkg-pr-new

pkg-pr-new Bot commented Sep 18, 2026 •

Copy link
Copy Markdown

Open in StackBlitz

npm i https://pkg.pr.new/vecstore-sdk@21

commit: 1771f1e

dependabot Bot and others added 2 commits September 19, 2026 01:29
Bumps [@pinecone-database/pinecone](https://github.com/pinecone-io/pinecone-ts-client) from 8.2.0 to 9.0.0.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v8.2.0...v9.0.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@PunGrumpy PunGrumpy added the skip-changeset The pull request needs no release note label Sep 18, 2026
@PunGrumpy
PunGrumpy force-pushed the dependabot/bun/pinecone-database/pinecone-9.0.0 branch from a8aac3f to 1771f1e Compare September 18, 2026 18:29
@PunGrumpy
PunGrumpy merged commit 2cc7631 into main Sep 18, 2026
13 checks passed
@dependabot
dependabot Bot deleted the dependabot/bun/pinecone-database/pinecone-9.0.0 branch September 18, 2026 18:30

This branch was successfully deployed

1 active deployment
Preview — 1771f1e2 Deployed Sep 18, 2026 by vercel[bot]
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 skip-changeset The pull request needs no release note

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant