Bump version to 10.0.7 and add NuGet package badges#7
Conversation
Co-authored-by: KSemenenko <4385716+KSemenenko@users.noreply.github.com>
|
@copilot chedk in read my Azure Cosmos DB Setup The Cosmos adapter (ManagedCode.GraphRag.CosmosDb) targets the SQL API and works with the emulator or live accounts: Provide a connection string. Set COSMOS_EMULATOR_CONNECTION_STRING or configure options manually. |
Co-authored-by: KSemenenko <4385716+KSemenenko@users.noreply.github.com>
Fixed in c84a1a4. The code block is now properly indented (3 spaces) to align with the numbered list item, ensuring correct markdown rendering. |
There was a problem hiding this comment.
Pull request overview
This PR bumps the package version from 10.0.6 to 10.0.7 and enhances the README with NuGet package badges and CI status indicators. It also includes minor code formatting improvements applied by dotnet format.
Key Changes:
- Incremented package version to 10.0.7 across all NuGet packages
- Added shields.io badges for all 5 NuGet packages (ManagedCode.GraphRag, Neo4j, Postgres, CosmosDb, JanusGraph), GitHub Actions CI status, and MIT license
- Fixed markdown code block indentation in the Azure Cosmos DB Setup section to properly render within the numbered list
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
Directory.Build.props |
Incremented Version and PackageVersion from 10.0.6 to 10.0.7 |
README.md |
Added NuGet, CI, and license badges; fixed code block indentation in Azure Cosmos DB Setup section |
tests/ManagedCode.GraphRag.Tests/Storage/Postgres/PostgresAgtypeParameterTests.cs |
Reordered imports alphabetically (formatting) |
src/ManagedCode.GraphRag/Utils/Hashing.cs |
Expanded single-line if statement to multi-line format (formatting) |
src/ManagedCode.GraphRag.Postgres/ApacheAge/AgeConnectionManager.cs |
Condensed null check into inline throw expression (formatting) |
Comments suppressed due to low confidence (1)
src/ManagedCode.GraphRag.Postgres/ApacheAge/AgeConnectionManager.cs:158
- Poor error handling: empty catch block.
catch (PostgresException)
{
}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { | ||
| throw new AgeException("AGE extension is not installed."); | ||
| } | ||
| var result = await checkCommand.ExecuteScalarAsync(cancellationToken).ConfigureAwait(false) ?? throw new AgeException("AGE extension is not installed."); |
There was a problem hiding this comment.
This assignment to result is useless, since its value is never read.
| var result = await checkCommand.ExecuteScalarAsync(cancellationToken).ConfigureAwait(false) ?? throw new AgeException("AGE extension is not installed."); | |
| await checkCommand.ExecuteScalarAsync(cancellationToken).ConfigureAwait(false) ?? throw new AgeException("AGE extension is not installed."); |
Description
Increments package version and adds shields to README for package discoverability. Also fixes markdown formatting issues in the Azure Cosmos DB Setup section.
Related Issues
Addresses version bump and documentation enhancement request.
Proposed Changes
Directory.Build.propsBadges positioned immediately after title for visibility. Auto-update from shields.io as packages publish.
Checklist
Additional Notes
Minor formatting applied by
dotnet formatincluded for consistency.Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.