From 27f129f9ef49d2e49b0fae20292ab36963cd016a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E5=AE=A6=E6=88=90?= Date: Mon, 20 Jul 2026 23:33:00 +0800 Subject: [PATCH 1/2] fix: pin wallet connector frontend dependencies --- connector-wallet/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connector-wallet/package.json b/connector-wallet/package.json index 06a11b72..58bf766f 100644 --- a/connector-wallet/package.json +++ b/connector-wallet/package.json @@ -49,9 +49,9 @@ "vite-plugin-dts": "^3.9.1" }, "dependencies": { - "@rainbow-me/rainbowkit": "^2.2.0", + "@rainbow-me/rainbowkit": "2.2.8", "@tanstack/react-query": "^5.59.15", "viem": "2.x", - "wagmi": "^2.12.19" + "wagmi": "2.15.0" } } From c75901faa4839352a69f05a60f0e3a6a2be4ffa9 Mon Sep 17 00:00:00 2001 From: LinkinStars Date: Thu, 23 Jul 2026 02:27:33 +0000 Subject: [PATCH 2/2] chore: Sync Plugin Info --- plugins_desc.json | 60 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/plugins_desc.json b/plugins_desc.json index b959d8e4..45638e40 100644 --- a/plugins_desc.json +++ b/plugins_desc.json @@ -150,10 +150,40 @@ "desc": "Get user info from WeCom and sync to User Center", "link": "https://github.com/apache/answer-plugins/tree/main/user-center-wecom" }, + { + "name": "ChromaDB Vector Search", + "desc": "Use ChromaDB for semantic/vector search", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-chromadb" + }, + { + "name": "Elasticsearch Vector Search", + "desc": "Use Elasticsearch with dense_vector fields for semantic/vector search", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-elasticsearch" + }, { "name": "In-Memory Vector Search", "desc": "Lightweight in-memory vector search for development and testing (no external dependencies)", "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-memory" + }, + { + "name": "Milvus Vector Search", + "desc": "Use Milvus for semantic/vector search", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-milvus" + }, + { + "name": "PostgreSQL pgvector Search", + "desc": "Use PostgreSQL with pgvector extension for semantic/vector search", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-pgvector" + }, + { + "name": "Qdrant Vector Search", + "desc": "Use Qdrant for semantic/vector search", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-qdrant" + }, + { + "name": "Weaviate Vector Search", + "desc": "Use Weaviate for semantic/vector search with built-in vector indexing", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-weaviate" } ], "zh_CN": [ @@ -307,10 +337,40 @@ "desc": "从企业微信获取用户信息并同步到用户中心", "link": "https://github.com/apache/answer-plugins/tree/main/user-center-wecom" }, + { + "name": "ChromaDB 向量搜索", + "desc": "使用 ChromaDB 进行语义/向量搜索", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-chromadb" + }, + { + "name": "Elasticsearch 向量搜索", + "desc": "使用 Elasticsearch dense_vector 字段进行语义/向量搜索", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-elasticsearch" + }, { "name": "内存向量搜索", "desc": "轻量级内存向量搜索,适用于开发和测试(无外部依赖)", "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-memory" + }, + { + "name": "Milvus 向量搜索", + "desc": "使用 Milvus 进行语义/向量搜索", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-milvus" + }, + { + "name": "PostgreSQL pgvector 搜索", + "desc": "使用 PostgreSQL pgvector 扩展进行语义/向量搜索", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-pgvector" + }, + { + "name": "Qdrant 向量搜索", + "desc": "使用 Qdrant 进行语义/向量搜索", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-qdrant" + }, + { + "name": "Weaviate 向量搜索", + "desc": "使用 Weaviate 进行语义/向量搜索,支持内置向量索引", + "link": "https://github.com/apache/answer-plugins/tree/main/vector-search-weaviate" } ] }