![]() |
VOOZH | about |
dotnet add package Azure.Search.Documents --version 12.0.0
NuGet\Install-Package Azure.Search.Documents -Version 12.0.0
<PackageReference Include="Azure.Search.Documents" Version="12.0.0" />
<PackageVersion Include="Azure.Search.Documents" Version="12.0.0" />Directory.Packages.props
<PackageReference Include="Azure.Search.Documents" />Project file
paket add Azure.Search.Documents --version 12.0.0
#r "nuget: Azure.Search.Documents, 12.0.0"
#:package Azure.Search.Documents@12.0.0
#addin nuget:?package=Azure.Search.Documents&version=12.0.0Install as a Cake Addin
#tool nuget:?package=Azure.Search.Documents&version=12.0.0Install as a Cake Tool
Azure AI Search (formerly known as "Azure Cognitive Search") is an AI-powered information retrieval platform that helps developers build rich search experiences and generative AI apps that combine large language models with enterprise data.
The Azure AI Search service is well suited for the following application scenarios:
Use the Azure.Search.Documents client library to:
Source code | Package (NuGet) | API reference documentation | REST API documentation | Product documentation | Samples
Install the Azure AI Search client library for .NET with NuGet:
dotnet add package Azure.Search.Documents
You need an Azure subscription and a search service to use this package.
To create a new search service, you can use the Azure portal, Azure PowerShell, or the Azure CLI. Here's an example using the Azure CLI to create a free instance for getting started:
az search service create --name <mysearch> --resource-group <mysearch-rg> --sku free --location westus
See choosing a pricing tier for more information about available options.
To interact with the search service, you'll need to create an instance of the appropriate client class: SearchClient for searching indexed documents, SearchIndexClient for managing indexes, or SearchIndexerClient for crawling data sources and loading search documents into an index. To instantiate a client object, you'll need an endpoint and Azure roles or an API key. You can refer to the documentation for more information on supported authenticating approaches with the search service.
An API key can be an easier approach to start with because it doesn't require pre-existing role assignments.
You can get the endpoint and an API key from the search service in the Azure portal. Please refer the documentation for instructions on how to get an API key.
Alternatively, you can use the following Azure CLI command to retrieve the API key from the search service:
az search admin-key show --service-name <mysearch> --resource-group <mysearch-rg>
There are two types of keys used to access your search service: admin (read-write) and query (read-only) keys. Restricting access and operations in client apps is essential to safeguarding the search assets on your service. Always use a query key rather than an admin key for any query originating from a client app.
Note: The example Azure CLI snippet above retrieves an admin key so it's easier to get started exploring APIs, but it should be managed carefully.
To instantiate the SearchClient, you'll need the endpoint, API key and index name:
string indexName = "nycjobs";
// Get the service endpoint and API key from the environment
Uri endpoint = new Uri(Environment.GetEnvironmentVariable("SEARCH_ENDPOINT"));
string key = Environment.GetEnvironmentVariable("SEARCH_API_KEY");
// Create a client
AzureKeyCredential credential = new AzureKeyCredential(key);
SearchClient client = new SearchClient(endpoint, indexName, credential);
You can also create a SearchClient, SearchIndexClient, or SearchIndexerClient using Microsoft Entra ID authentication. Your user or service principal must be assigned the "Search Index Data Reader" role.
Using the DefaultAzureCredential you can authenticate a service using Managed Identity or a service principal, authenticate as a developer working on an application, and more all without changing code. Please refer the documentation for instructions on how to connect to Azure AI Search using Azure role-based access control (Azure RBAC).
Before you can use the DefaultAzureCredential, or any credential type from Azure.Identity, you'll first need to install the Azure.Identity package.
To use DefaultAzureCredential with a client ID and secret, you'll need to set the AZURE_TENANT_ID, AZURE_CLIENT_ID, and AZURE_CLIENT_SECRET environment variables; alternatively, you can pass those values
to the ClientSecretCredential also in Azure.Identity.
Make sure you use the right namespace for DefaultAzureCredential at the top of your source file:
using Azure.Identity;
Then you can create an instance of DefaultAzureCredential and pass it to a new instance of your client:
string indexName = "nycjobs";
// Get the service endpoint from the environment
Uri endpoint = new Uri(Environment.GetEnvironmentVariable("SEARCH_ENDPOINT"));
DefaultAzureCredential credential = new DefaultAzureCredential();
// Create a client
SearchClient client = new SearchClient(endpoint, indexName, credential);
To inject Azure AI Search clients as dependencies in an ASP.NET Core app, first install the package Microsoft.Extensions.Azure.
Then register the clients in your service registration code (for example, in Program.cs with WebApplicationBuilder, or in Startup.ConfigureServices for earlier hosting patterns):
public void ConfigureServices(IServiceCollection services)
{
services.AddAzureClients(builder =>
{
builder.AddSearchClient(Configuration.GetSection("SearchClient"));
builder.AddSearchIndexClient(Configuration.GetSection("SearchIndexClient"));
builder.AddSearchIndexerClient(Configuration.GetSection("SearchIndexerClient"));
builder.AddKnowledgeBaseRetrievalClient(Configuration.GetSection("KnowledgeBaseRetrievalClient"));
});
services.AddControllers();
}
To use the preceding code, add this to your configuration:
{
"SearchClient": {
"endpoint": "https://<resource-name>.search.windows.net",
"indexname": "nycjobs"
},
"SearchIndexClient": {
"endpoint": "https://<resource-name>.search.windows.net"
},
"SearchIndexerClient": {
"endpoint": "https://<resource-name>.search.windows.net"
},
"KnowledgeBaseRetrievalClient": {
"endpoint": "https://<resource-name>.search.windows.net",
"knowledgeBaseName": "<knowledge-base-name>"
}
}
When you use configuration-based registration, each configuration section maps to a strongly-typed settings class.
These classes (SearchClientSettings, SearchIndexClientSettings, SearchIndexerClientSettings, and KnowledgeBaseRetrievalClientSettings) are used to create the corresponding clients.
Credentials are provided separately (for example, through user secrets or environment variables as described below).
You'll also need to provide your resource key to authenticate the client, but you shouldn't be putting that information in the configuration. Instead, when in development, use User-Secrets. Add the following to secrets.json:
{
"SearchClient": {
"credential": { "key": "<you resource key>" }
}
}
When running in production, it's preferable to use environment variables:
SEARCH__CREDENTIAL__KEY="..."
Or use other secure ways of storing secrets like Azure Key Vault.
For more details about Dependency Injection in ASP.NET Core apps, see Dependency injection with the Azure SDK for .NET.
An Azure AI Search service contains one or more indexes that provide persistent storage of searchable data in the form of JSON documents. (If you're brand new to search, you can make a very rough analogy between indexes and database tables.) The Azure.Search.Documents client library exposes operations on these resources through four main client types.
SearchClient helps with:
SearchIndexClient allows you to:
SearchIndexerClient allows you to:
ChatCompletionSkill, ContentUnderstandingSkill, and DocumentIntelligenceLayoutSkillKnowledgeBaseRetrievalClient helps you:
Azure AI Search provides two powerful features:
Semantic ranking enhances the quality of search results for text-based queries. By enabling semantic ranking on your search service, you can improve the relevance of search results in two ways:
To learn more about semantic ranking, you can refer to the sample.
Additionally, for more comprehensive information about semantic ranking, including its concepts and usage, you can refer to the documentation. The documentation provides in-depth explanations and guidance on leveraging the power of semantic ranking in Azure AI Search.
Vector search is an information retrieval technique that uses numeric representations of searchable documents and query strings. By searching for numeric representations of content that are most similar to the numeric query, vector search can find relevant matches, even if the exact terms of the query are not present in the index. Moreover, vector search can be applied to various types of content, including images and videos and translated text, not just same-language text.
The SDK supports image-based vector search queries through VectorizableImageBinaryQuery and VectorizableImageUrlQuery.
To learn how to index vector fields and perform vector search, you can refer to the sample. This sample provides detailed guidance on indexing vector fields and demonstrates how to perform vector search.
Additionally, for more comprehensive information about vector search, including its concepts and usage, you can refer to the documentation. The documentation provides in-depth explanations and guidance on leveraging the power of vector search in Azure AI Search.
The Azure.Search.Documents client library (v11) provides APIs for data plane operations. The
previous Microsoft.Azure.Search client library (v10) is now retired. It has many similar looking APIs, so please be careful to avoid confusion when
exploring online resources. A good rule of thumb is to check for the namespace
using Azure.Search.Documents; when you're looking for API reference.
We guarantee that all client instance methods are thread-safe and independent of each other (guideline). This ensures that the recommendation of reusing client instances is always safe, even across threads.
Client options | Accessing the response | Long-running operations | Handling failures | Diagnostics | Mocking | Client lifetime
The following examples all use a simple Hotel data set that you can import into your own index from the Azure portal. These are just a few of the basics - please check out our Samples for much more.
Let's start by importing our namespaces.
using Azure.Search.Documents;
using Azure.Search.Documents.Indexes;
using Azure.Core.GeoJson;
We'll then create a SearchClient to access our hotels search index.
// Get the service endpoint and API key from the environment
Uri endpoint = new Uri(Environment.GetEnvironmentVariable("SEARCH_ENDPOINT"));
string key = Environment.GetEnvironmentVariable("SEARCH_API_KEY");
string indexName = "hotels";
// Create a client
AzureKeyCredential credential = new AzureKeyCredential(key);
SearchClient client = new SearchClient(endpoint, indexName, credential);
There are two ways to interact with the data returned from a search query. Let's explore them with a search for a "luxury" hotel.
We can decorate our own C# types with attributes from System.Text.Json:
public class Hotel
{
[JsonPropertyName("HotelId")]
[SimpleField(IsKey = true, IsFilterable = true, IsSortable = true)]
public string Id { get; set; }
[JsonPropertyName("HotelName")]
[SearchableField(IsFilterable = true, IsSortable = true)]
public string Name { get; set; }
[SimpleField(IsFilterable = true, IsSortable = true)]
public GeoPoint GeoLocation { get; set; }
// Complex fields are included automatically in an index if not ignored.
public HotelAddress Address { get; set; }
}
public class HotelAddress
{
public string StreetAddress { get; set; }
[SimpleField(IsFilterable = true, IsSortable = true, IsFacetable = true)]
public string City { get; set; }
[SimpleField(IsFilterable = true, IsSortable = true, IsFacetable = true)]
public string StateProvince { get; set; }
[SimpleField(IsFilterable = true, IsSortable = true, IsFacetable = true)]
public string Country { get; set; }
[SimpleField(IsFilterable = true, IsSortable = true, IsFacetable = true)]
public string PostalCode { get; set; }
}
Then we use them as the type parameter when querying to return strongly-typed search results:
SearchResults<Hotel> response = client.Search<Hotel>("luxury");
foreach (SearchResult<Hotel> result in response.GetResults())
{
Hotel doc = result.Document;
Console.WriteLine($"{doc.Id}: {doc.Name}");
}
If you're working with a search index and know the schema, creating C# types is recommended.
SearchDocument like a dictionary for search resultsIf you don't have your own type for search results, SearchDocument can be
used instead. Here we perform the search, enumerate over the results, and
extract data using SearchDocument's dictionary indexer.
SearchResults<SearchDocument> response = client.Search<SearchDocument>("luxury");
foreach (SearchResult<SearchDocument> result in response.GetResults())
{
SearchDocument doc = result.Document;
string id = (string)doc["HotelId"];
string name = (string)doc["HotelName"];
Console.WriteLine($"{id}: {name}");
}
The SearchOptions provide powerful control over the behavior of our queries.
Let's search for the top 5 luxury hotels with a good rating.
int stars = 4;
SearchOptions options = new SearchOptions
{
// Filter to only Rating greater than or equal our preference
Filter = SearchFilter.Create($"Rating ge {stars}"),
Size = 5, // Take only 5 results
OrderBy = { "Rating desc" } // Sort by Rating from high to low
};
SearchResults<Hotel> response = client.Search<Hotel>("luxury", options);
// ...
You can use the SearchIndexClient to create a search index. Fields can be
defined from a model class using FieldBuilder. Indexes can also define
suggesters, lexical analyzers, and more.
Using the Hotel sample above,
which defines both simple and complex fields:
Uri endpoint = new Uri(Environment.GetEnvironmentVariable("SEARCH_ENDPOINT"));
string key = Environment.GetEnvironmentVariable("SEARCH_API_KEY");
// Create a service client
AzureKeyCredential credential = new AzureKeyCredential(key);
SearchIndexClient client = new SearchIndexClient(endpoint, credential);
// Create the index using FieldBuilder.
SearchIndex index = new SearchIndex("hotels")
{
Fields = new FieldBuilder().Build(typeof(Hotel)),
Suggesters =
{
// Suggest query terms from the HotelName field.
new SearchSuggester("sg", "HotelName")
}
};
client.CreateIndex(index);
In scenarios when the model is not known or cannot be modified, you can
also create fields explicitly using convenient SimpleField,
SearchableField, or ComplexField classes:
// Create the index using field definitions.
SearchIndex index = new SearchIndex("hotels")
{
Fields =
{
new SimpleField("HotelId", SearchFieldDataType.String) { IsKey = true, IsFilterable = true, IsSortable = true },
new SearchableField("HotelName") { IsFilterable = true, IsSortable = true },
new SearchableField("Description") { AnalyzerName = LexicalAnalyzerName.EnLucene },
new SearchableField("Tags", collection: true) { IsFilterable = true, IsFacetable = true },
new ComplexField("Address")
{
Fields =
{
new SearchableField("StreetAddress"),
new SearchableField("City") { IsFilterable = true, IsSortable = true, IsFacetable = true },
new SearchableField("StateProvince") { IsFilterable = true, IsSortable = true, IsFacetable = true },
new SearchableField("Country") { IsFilterable = true, IsSortable = true, IsFacetable = true },
new SearchableField("PostalCode") { IsFilterable = true, IsSortable = true, IsFacetable = true }
}
}
},
Suggesters =
{
// Suggest query terms from the hotelName field.
new SearchSuggester("sg", "HotelName")
}
};
client.CreateIndex(index);
You can Upload, Merge, MergeOrUpload, and Delete multiple documents from
an index in a single batched request. There are
a few special rules for merging
to be aware of.
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(new Hotel { Id = "783", Name = "Upload Inn" }),
IndexDocumentsAction.Merge(new Hotel { Id = "12", Name = "Renovated Ranch" }));
IndexDocumentsOptions options = new IndexDocumentsOptions { ThrowOnAnyError = true };
client.IndexDocuments(batch, options);
The request will succeed even if any of the individual actions fail and
return an IndexDocumentsResult for inspection. There's also a ThrowOnAnyError
option if you only care about success or failure of the whole batch.
In addition to querying for documents using keywords and optional filters, you can retrieve a specific document from your index if you already know the key. You could get the key from a query, for example, and want to show more information about it or navigate your customer to that document.
Hotel doc = client.GetDocument<Hotel>("1");
Console.WriteLine($"{doc.Id}: {doc.Name}");
All of the examples so far have been using synchronous APIs, but we provide full
support for async APIs as well. You'll generally just add an Async suffix to
the name of the method and await it.
SearchResults<Hotel> searchResponse = await client.SearchAsync<Hotel>("luxury");
await foreach (SearchResult<Hotel> result in searchResponse.GetResultsAsync())
{
Hotel doc = result.Document;
Console.WriteLine($"{doc.Id}: {doc.Name}");
}
Use KnowledgeBaseRetrievalClient to retrieve grounded responses from a knowledge base, and use SearchIndexClient for knowledge source and knowledge base CRUD operations:
To authenticate in a National Cloud, you will need to make the following additions to your client configuration:
AuthorityHost in the credential options or via the AZURE_AUTHORITY_HOST environment variableAudience in SearchClientOptions// Create a SearchClient that will authenticate through AAD in the China national cloud
string indexName = "nycjobs";
Uri endpoint = new Uri(Environment.GetEnvironmentVariable("SEARCH_ENDPOINT"));
SearchClient client = new SearchClient(endpoint, indexName,
new DefaultAzureCredential(
new DefaultAzureCredentialOptions()
{
AuthorityHost = AzureAuthorityHosts.AzureChina
}),
new SearchClientOptions()
{
Audience = SearchAudience.AzureChina
});
Any Azure.Search.Documents operation that fails will throw a
RequestFailedException with
helpful Status codes. Many of these errors are recoverable.
try
{
return client.GetDocument<Hotel>("12345");
}
catch (RequestFailedException ex) when (ex.Status == 404)
{
Console.WriteLine("We couldn't find the hotel you are looking for!");
Console.WriteLine("Please try selecting another.");
return null;
}
You can also easily enable console logging if you want to dig deeper into the requests you're making against the service.
See our troubleshooting guide for details on how to diagnose various failure scenarios.
VectorizableImageBinaryQuery and VectorizableImageUrlQuerySee our Search CONTRIBUTING.md for details on building, testing, and contributing to this library.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit cla.microsoft.com.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact with any additional questions or comments.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Azure.Search.Documents:
| Package | Downloads |
|---|---|
|
Hilma.Common
Shared entities and contracts for Hilma Domain |
|
|
Telerik.Sitefinity.ServicesImpl
Sitefinity CMS ServicesImpl libraries. |
|
|
Microsoft.KernelMemory.MemoryDb.AzureAISearch
Azure AI Search connector for Microsoft Kernel Memory, to store and search memory using Azure AI Search vector indexing and semantic features. |
|
|
Indigina.Data
This NuGet package contains Data Access Layer for Indigina projects. |
|
|
Microsoft.SemanticKernel.Connectors.AzureAISearch
Azure AI Search provider for Microsoft.Extensions.VectorData by Semantic Kernel |
Showing the top 20 popular GitHub repositories that depend on Azure.Search.Documents:
| Repository | Stars |
|---|---|
|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
|
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
|
|
|
microsoft/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
|
|
|
danielgerlag/workflow-core
Lightweight workflow engine for .NET Standard
|
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
|
microsoft/mcp
Catalog of official Microsoft MCP (Model Context Protocol) server implementations for AI-powered data access and tool integration
|
|
|
dotnet/extensions
This repository contains a suite of libraries that provide facilities commonly needed when creating production-ready applications.
|
|
|
microsoft/Generative-AI-for-beginners-dotnet
Five lessons, learn how to really apply AI to your .NET Applications
|
|
|
Squidex/squidex
Headless CMS and Content Managment Hub
|
|
|
microsoft/kernel-memory
Research project. A Memory solution for users, teams, and applications.
|
|
|
statiqdev/Statiq
Statiq is a flexible static site generator written in .NET.
|
|
|
NuGet/NuGetGallery
NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
|
|
|
Azure/azure-mcp
The Azure MCP Server, bringing the power of Azure to your agents.
|
|
|
Azure-Samples/azure-search-openai-demo-csharp
A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
|
|
|
microsoft/copilot-camp
Hands-on labs for extending Microsoft 365 Copilot and building custom engine agents
|
|
| MicrosoftLearning/mslearn-openai | |
|
azuredevcollege/trainingdays
Azure Developer College's application development training days content.
|
|
|
microsoft/Document-Knowledge-Mining-Solution-Accelerator
Solution accelerator built on Azure OpenAI Service and Azure AI Document Intelligence to process and extract summaries, entities, and metadata from unstructured, multi-modal documents and enable searching and chatting over this data.
|
|
| AzureCosmosDB/data-migration-desktop-tool | |
|
POPWorldMedia/POPForums
A forum application running on ASP.NET Core, available in seven languages.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 12.1.0-beta.1 | 1,751 | 5/28/2026 |
| 12.0.0 | 244,412 | 5/1/2026 |
| 11.8.0-beta.1 | 293,502 | 11/14/2025 |
| 11.7.0 | 2,799,014 | 10/9/2025 |
| 11.7.0-beta.7 | 294,020 | 9/5/2025 |
| 11.7.0-beta.6 | 75,108 | 8/12/2025 |
| 11.7.0-beta.5 | 99,682 | 6/17/2025 |
| 11.7.0-beta.4 | 224,855 | 5/14/2025 |
| 11.7.0-beta.3 | 116,914 | 3/25/2025 |
| 11.7.0-beta.2 | 633,147 | 11/26/2024 |
| 11.7.0-beta.1 | 121,933 | 9/24/2024 |
| 11.6.1 | 1,866,550 | 6/17/2025 |
| 11.6.0 | 7,143,005 | 7/17/2024 |
| 11.6.0-beta.4 | 992,384 | 5/6/2024 |
| 11.6.0-beta.3 | 381,334 | 3/6/2024 |
| 11.6.0-beta.2 | 81,221 | 2/5/2024 |
| 11.6.0-beta.1 | 281,578 | 1/17/2024 |
| 11.5.1 | 4,698,689 | 11/29/2023 |
| 11.5.0 | 426,604 | 11/10/2023 |
| 11.5.0-beta.5 | 288,861 | 10/9/2023 |