-
Notifications
You must be signed in to change notification settings - Fork 0
- Release v2.1.0 #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the Schemio library to version 2.1.0, adding support for Pre and Post transform hooks across all packages while maintaining compatibility with multiple .NET target frameworks.
- Updated version numbers from 2.0.1 to 2.1.0 across all project files
- Enhanced package descriptions to better describe Schemio as a data aggregation library
- Added release notes documenting the new Pre and Post transform hooks feature
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/Schemio.SQL/Schemio.SQL.csproj | Version bump, enhanced description, added release notes, and updated package tags |
| src/Schemio.EntityFramework/Schemio.EntityFramework.csproj | Version bump, enhanced description, added release notes, and updated package tags |
| src/Schemio.Core/Schemio.Core.csproj | Version bump, enhanced description, streamlined release notes, and updated package tags |
| src/Schemio.API/Schemio.API.csproj | Version bump, corrected title, enhanced description, added release notes, and updated package tags |
| README.md | Updated version reference in header from v2.0.1 to v2.1.0 |
| GitVersion.yml | Updated next-version from 2.0.1 to 2.1.0 |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
src/Schemio.SQL/Schemio.SQL.csproj
Outdated
| <PackageProjectUrl>https://github.com/CodeShayk/Schemio/wiki</PackageProjectUrl> | ||
| <Copyright>Copyright (c) 2025 Code Shayk</Copyright> | ||
| <Description>.Net Library to hydrate data entities by object graph using schema paths (supports XPath & JSONPath). Supports Dapper for querying SQL database. </Description> | ||
| <Description>Schemio is a powerful .NET library designed to aggregate data from heterogeneous data stores using a schema-driven approach. It enables developers to hydrate complex object graphs by fetching data from multiple sources (SQL databases, Web APIs, NoSQL stores) using XPath and JSONPath schema mappings.This package provides support for Entity Framework for querying database.This package provides support for Dapper to query SQL database. </Description> |
Copilot
AI
Aug 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description contains multiple sentences without proper spacing. Add spaces after periods: 'schema mappings. This package provides support...' and 'querying database. This package provides support...'
| <Description>Schemio is a powerful .NET library designed to aggregate data from heterogeneous data stores using a schema-driven approach. It enables developers to hydrate complex object graphs by fetching data from multiple sources (SQL databases, Web APIs, NoSQL stores) using XPath and JSONPath schema mappings.This package provides support for Entity Framework for querying database.This package provides support for Dapper to query SQL database. </Description> | |
| <Description>Schemio is a powerful .NET library designed to aggregate data from heterogeneous data stores using a schema-driven approach. It enables developers to hydrate complex object graphs by fetching data from multiple sources (SQL databases, Web APIs, NoSQL stores) using XPath and JSONPath schema mappings. This package provides support for Entity Framework for querying database. This package provides support for Dapper to query SQL database. </Description> |
Co-authored-by: Copilot <[email protected]> Signed-off-by: Najaf Shaikh <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Najaf Shaikh <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Najaf Shaikh <[email protected]>
Release Notes
Changes in Schemio.Core - Targets .Net Framework 4.6.2; .Net Standards 2.0 & 2.1; .Net 9.0.
Changes in Schemio.SQL - Targets .Net Framework 4.6.2; .Net Standards 2.1; .Net 9.0.
Changes in Schemio.EntityFramework - Targets .Net 9.0.
Changes in Schemio.API - Targets .Net Framework 4.6.2; .Net Standards 2.0 & 2.1; .Net 9.0.
Developer Guide
Important: Please see Developer Guide here for more details.