Migrate vector store connector docs from Microsoft.SemanticKernel.Connectors.* to CommunityToolkit.VectorData.* - #429
Merged
westey-m merged 8 commits intoJul 24, 2026
Conversation
…rData.* - Replace Microsoft.SemanticKernel.Connectors.* with CommunityToolkit.VectorData.* for all vector store connectors - Update using directives for connector-specific namespaces - Remove unused 'using Microsoft.SemanticKernel;' from IServiceCollection-only examples - Update text descriptions from 'provided by Semantic Kernel' to 'provided by the connector package' - Update supported-languages.md vector store connector package table
Contributor
…le connector - elasticsearch-connector.md: restore `using Microsoft.SemanticKernel;` in both IServiceCollection blocks - mongodb-connector.md: change CommunityToolkit.VectorData.MongoDB to MongoDB.VectorData (package and namespace) - redis-connector.md: add `using Microsoft.Extensions.DependencyInjection;` to simple IServiceCollection block - volatile-connector.md: update C# section to use CommunityToolkit.VectorData.InMemory (InMemoryVectorStore, AddInMemoryVectorStore, VectorStoreCollection) - supported-languages.md: change MongoDB package to MongoDB.VectorData
Contributor
|
Learn Build status updates of commit 4cdb692: ✅ Validation status: passed
For more details, please refer to the build report. |
Contributor
|
Learn Build status updates of commit e86996a: ✅ Validation status: passed
For more details, please refer to the build report. |
Contributor
|
Learn Build status updates of commit 3c6b050: ✅ Validation status: passed
For more details, please refer to the build report. |
…ctor, update Pinecone connector - Remove --prerelease flag from all CommunityToolkit.VectorData.* package installs (13 files) - Revert mongodb-connector.md to pre-PR state (MongoDB.VectorData package not yet released) - Remove .NET connector sections from pinecone-connector.md (Pinecone archived their .NET SDK) - Remove Pinecone from .NET package list in supported-languages.md
Contributor
|
Learn Build status updates of commit 79733d7: ✅ Validation status: passed
For more details, please refer to the build report. |
Co-authored-by: Adam Sitnik <adam.sitnik@gmail.com>
Contributor
|
Learn Build status updates of commit 12a788e: ✅ Validation status: passed
For more details, please refer to the build report. |
adamsitnik
commented
Jul 22, 2026
Contributor
|
Learn Build status updates of commit 1e45d7c: ✅ Validation status: passed
For more details, please refer to the build report. |
Contributor
|
Learn Build status updates of commit 32a632d: ✅ Validation status: passed
For more details, please refer to the build report. |
westey-m
approved these changes
Jul 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Vector store connectors have moved from
Microsoft.SemanticKernel.Connectors.*packages to community-maintainedCommunityToolkit.VectorData.*packages. Updates all C# documentation across the vector store connector section to reflect this.