SphinxConnector.NET 6.1 has been released

by Dennis 9. July 2026 11:02

We're pleased to announce that SphinxConnector.NET 6.1 is now available via NuGet! You can also download a build from our site, but that only contains a version for .NET Framework 4.6.2. and higher.

This release adds support for authenticated connections to Sphinx and Manticore Search. Please note that with Sphinx, only SHA1 hashed passwords (mysql_native_auth) are supported in this release.

We’ve also added the ability to configure the logger provider and set the license key during the FulltextStore initialization call:

var fulltextStore = new FulltextStore().Initialize(c => c.SetLicense("Your license key").
                                                          SetLoggerProvider(new ConsoleLoggerProvider()));

This should make for some nicer setup during container registration of the fluent API classes.

Additionally, you can now set the license key via an environment variable called SPHINXCONNECTOR_LICENSE_KEY for scenarios where you the retrieve the key from a vault of some kind, e.g. for containerized setups.

For a full list of changes, please refer to the version history.

Tags:

Announcements | SphinxConnector.NET