chore(BaiduOrc): bump Newtonsoft.Json version to latest#681
Conversation
|
🧙 Sourcery has finished reviewing your pull request! Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Pull Request Overview
This PR updates the Newtonsoft.Json dependency in the BootstrapBlazor.BaiduOcr component to address issue #680 by explicitly adding the package reference with version 13.*.
- Adds explicit
Newtonsoft.Jsonpackage reference to ensure dependency availability - Uses wildcard versioning to allow minor version updates within the v13 major version
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <ItemGroup> | ||
| <PackageReference Include="Baidu.AI" Version="4.15.16" /> | ||
| <PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" /> | ||
| <PackageReference Include="Newtonsoft.Json" Version="13.*" /> |
There was a problem hiding this comment.
Using wildcard versioning for Newtonsoft.Json (13.*) may lead to unpredictable builds and potential compatibility issues. Consider using a specific version like 13.0.3 for consistency with other similar projects in the codebase (e.g., BootstrapBlazor.OCR and BootstrapBlazor.OpenAI.GPT3). This ensures reproducible builds and prevents unexpected breaking changes from minor version updates.
| <PackageReference Include="Newtonsoft.Json" Version="13.*" /> | |
| <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
Link issues
fixes #680
Summary By Copilot
Regression?
Risk
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Enhancements: