Skip to content

Commit 8de8ed5

Browse files
arjunpatel7claude
andcommitted
Release 1.2.1
Corrects three claims about unsupported features in the full-text-search skill. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent 17ca1a8 commit 8de8ed5

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.cursor-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pinecone",
33
"description": "Pinecone vector database integration for Cursor. Create and manage indexes, upsert data, and run semantic searches via the Pinecone MCP server. Build document Q&A assistants with citations, or get started fast with /pinecone-quickstart. Great for semantic search, RAG, and agentic AI apps.",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"author": {
66
"name": "Pinecone"
77
},

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [1.2.1] - 2026-09-09
4+
5+
### Fixed
6+
- **Fuzzy and regex search were wrongly listed as unsupported.** Both work in
7+
full-text search, under `type: "query_string"` only: fuzzy as `term~N` (edit
8+
distance 0-2; a bare `~` picks a distance from term length) and regex as
9+
`field:/pattern/`, matched against analyzed tokens rather than raw field text.
10+
Under `type: "text"` the `~` and `/.../` characters are treated as literals.
11+
Both operators are now in the query-syntax table in the querying reference.
12+
- **Bulk import from object storage was wrongly listed as unsupported.** Pinecone
13+
supports it for document-shaped indexes using JSON Lines files. This skill does
14+
not implement it; the skill now says so and points at `documents.upsert` /
15+
`documents.batch_upsert` for ingestion here.
16+
17+
The two remaining platform limitations are unchanged and still accurate: indexes
18+
holding a `full_text_search` field cannot be created in CMEK-enabled projects,
19+
and backup and restore are not yet supported.
20+
321
## [1.2.0] - 2026-09-03
422

523
### Changed

0 commit comments

Comments
 (0)