Merged
Conversation
Nshai
approved these changes
Mar 30, 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.
DataFuse v3.0.0 Release Notes
Release Date: March 30, 2026
DataFuse v3.0.0 is a major release that introduces the new MongoDB adapter, transform hooks, query result caching, and multi-target framework support. This release also completes the project rebrand from Schemio to DataFuse, which includes breaking namespace and package changes.
New Features
MongoDB Adapter
New
DataFuse.Adapters.MongoDBpackage for aggregating data from MongoDB collections alongside SQL, REST API, and Entity Framework sources..WithEngine(c => new DataFuse.Adapters.MongoDB.QueryEngine(mongoDatabase))Transform Hooks
Pre and post transformation hooks provide fine-grained control over the data transformation pipeline.
context.Cancel()context.Repeat()Query Result Caching
New
CacheResultAttributeallows marking expensive query results for automatic caching to improve performance.Multi-Target Framework Support
All packages (except EntityFramework) now target multiple frameworks:
netstandard2.1net8.0net9.0net10.0DataFuse.Adapters.EntityFrameworktargetsnet10.0only (EF Core 10.0 dependency).Breaking Changes
Project Rename (Schemio to DataFuse)
All namespaces, packages, and registration APIs have been renamed:
Schemio.Core(contracts)DataFuse.Adapters.AbstractionSchemio.Core(impl)DataFuse.IntegrationSchemio.SQLDataFuse.Adapters.SQLSchemio.EntityFrameworkDataFuse.Adapters.EntityFrameworkSchemio.APIDataFuse.Adapters.WebAPIDI Registration
Interface Renames
ISchemioOptions→IDataFuseOptionsSchemioOptionsBuilder→DataFuseOptionsBuilderNuGet Package Names
All package IDs have changed. Update your package references:
Schemio.CoreDataFuse.Adapters.AbstractionSchemio.CoreDataFuse.IntegrationSchemio.SQLDataFuse.Adapters.SQLSchemio.EntityFrameworkDataFuse.Adapters.EntityFrameworkSchemio.APIDataFuse.Adapters.WebAPIMigration Guide
DataFuse.*package namesusingstatements fromSchemio.*namespaces toDataFuse.*UseSchemio()toUseDataFuse()andSchemioOptionsBuildertoDataFuseOptionsBuildernetstandard2.1,net8.0,net9.0, andnet10.0Packages
DataFuse.Adapters.AbstractionDataFuse.IntegrationDataFuse.Adapters.SQLDataFuse.Adapters.EntityFrameworkDataFuse.Adapters.WebAPIDataFuse.Adapters.MongoDBRepository