Skip to content

chore(deps): bump @pinecone-database/pinecone from 8.0.0 to 8.1.0 - #241

Merged
jonathanMLDev merged 1 commit into
mainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-8.1.0
Jul 30, 2026
Merged

chore(deps): bump @pinecone-database/pinecone from 8.0.0 to 8.1.0#241
jonathanMLDev merged 1 commit into
mainfrom
dependabot/npm_and_yarn/pinecone-database/pinecone-8.1.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Release notes

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

Release v8.1.0

Preview: list and update for schema-based index documents (alpha)

⚠️ Alpha surface — all pc.preview.* APIs target the 2026-01.alpha API version and are not covered by the SDK's backward-compatibility guarantee. Signatures may change before these operations graduate to stable.

This release rounds out the document operations on pc.preview.index(...) introduced in v8.0.0 with two new methods — listDocuments and updateDocuments — and adds an n-gram (substring) tokenizer option to full-text search fields.

Listing documents

listDocuments returns document IDs for a namespace, with support for prefix filtering, a result limit, and cursor-based pagination.

const index = pc.preview.index('my-schema-index');
// List document IDs (supports prefix, limit, and pagination)
const page = await index.listDocuments('my-namespace', { prefix: 'doc-', limit: 50 });
// { documents: [{ _id: 'doc-1' }, ...], pagination: { next: '...' }, namespace, usage }
// Fetch the next page using the returned cursor
const next = await index.listDocuments('my-namespace', {
paginationToken: page.pagination?.next,
});

Updating documents

updateDocuments applies partial updates to existing documents by _id. Set new field values inline, or remove fields via _remove_fields. Unmentioned fields are left unchanged, and updates to a nonexistent document are accepted as a no-op.

await index.updateDocuments('my-namespace', {
  documents: [
    { _id: 'doc-1', content: 'Updated content' },  // set a new value
    { _id: 'doc-2', _remove_fields: ['category'] }, // remove a field
  ],
});

n-gram tokenizer for full-text search

Full-text search string fields now accept an ngram (substring) tokenizer in their fullTextSearch configuration, enabling substring matching. Note that ngram cannot be combined with stemming or stopWords.

await pc.preview.indexes.create({
  name: 'my-schema-index',
  schema: {
    fields: {
      chunk_text: {
        type: 'string',
        fullTextSearch: {
          ngram: { minGram: 2, maxGram: 5 },
</tr></table> 

... (truncated)

Commits

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 8.0.0 to 8.1.0.
- [Release notes](https://github.com/pinecone-io/pinecone-ts-client/releases)
- [Commits](pinecone-io/pinecone-ts-client@v8.0.0...v8.1.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 27, 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.

@jonathanMLDev
jonathanMLDev merged commit b174368 into main Jul 30, 2026
9 checks passed
@jonathanMLDev
jonathanMLDev deleted the dependabot/npm_and_yarn/pinecone-database/pinecone-8.1.0 branch July 30, 2026 17:57
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