Upgrade packages - #121
Merged
Merged
Conversation
Adapt to breaking API changes introduced by the dependency updates: - YesSql 6.0: switch ISession.SaveAsync calls to the new (obj, checkConcurrency, collection, CancellationToken) signature, passing CancellationToken.None to preserve existing behavior. - GitHub.Copilot.SDK 1.0.8: update PermissionsApi.SetAllowAllAsync to the new mode-based overload (PermissionsAllowAllMode.On). - OllamaSharp 5.4.30: strip its Roslyn source generator, which targets a newer compiler than the pinned SDK provides (CS9057), via a shared Directory.Build.targets step since it flows transitively into hosts. - Update YesSql store mock setups/callbacks to the 4-parameter SaveAsync. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Rename changelog files to drop the 'v' prefix (v1.0.0.md -> 1.0.0.md, v1.1.0.md -> 1.1.0.md) and update the sidebar and changelog index links. - Document the dependency baseline upgrade in the active 1.1.0 changelog. - Add AGENTS.md and expand .github/copilot-instructions.md with changelog conventions: no 'v' prefix, and document all upcoming changes in the next planned release notes (1.1.0.md) going forward. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Rename versioned_docs/version-1.0 changelog v1.0.0.md to 1.0.0.md and update the version-1.0 sidebar and changelog index references for consistency with the current changelog naming convention. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
This pull request upgrades the CrestApps.Core framework and its dependencies to new major and minor versions, adapts the codebase to breaking changes in those dependencies (notably YesSql and the GitHub Copilot SDK), and clarifies project guidance and changelog conventions. It also addresses a build issue with OllamaSharp analyzers and improves documentation for contributors and automated agents.
Dependency upgrades and compatibility fixes:
ISession.SaveAsyncto the new signature required by YesSql 6.0, adding required parameters (bool,string, andCancellationToken). [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]PermissionsApi.SetAllowAllAsyncto use the new mode-based API in the GitHub Copilot SDK 1.0.8.OllamaSharp.SourceGeneratorsanalyzer, preventing build failures with the current .NET SDK.Documentation and changelog improvements:
vprefix), the process for documenting in-development releases, and how to register new changelog files in the documentation sidebar and index. [1] [2] [3]v1.1.0.mdto1.1.0.mdand updated all sidebar and index links accordingly. [1] [2] [3]AGENTS.md, referencing.github/copilot-instructions.mdfor project rules and conventions.These changes modernize the codebase, ensure compatibility with upstream dependencies, and improve clarity for both human and automated contributors.