Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-reportgenerator-globaltool": {
"version": "5.5.9",
"version": "5.5.10",
"commands": [
"reportgenerator"
],
Expand Down
10 changes: 5 additions & 5 deletions GraphHealthChecks.Tests/GraphHealthChecks.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="16.0.0"/>
<PackageReference Include="HotChocolate.AspNetCore.Authorization" Version="16.0.0"/>
<PackageReference Include="HotChocolate.AspNetCore" Version="16.0.9"/>
<PackageReference Include="HotChocolate.AspNetCore.Authorization" Version="16.0.9"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1"/>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.7"/>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.8"/>
<PackageReference Include="NSubstitute" Version="5.3.0"/>
<PackageReference Include="System.Text.Json" Version="10.0.7"/>
<PackageReference Include="System.Text.Json" Version="10.0.8"/>
<PackageReference Include="xunit" Version="2.9.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="10.0.0">
<PackageReference Include="coverlet.msbuild" Version="10.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions GraphHealthChecks/GraphHealthChecks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageId>$(MSBuildProjectName)</PackageId>
<Version>6.0.0</Version>
<Version>6.0.1</Version>
<Authors>Adamos Fiakkas</Authors>
<Description>Graph Health Checks for HotChocolate</Description>
<Copyright>Adamos Fiakkas</Copyright>
Expand All @@ -22,8 +22,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.7"/>
<PackageReference Include="HotChocolate.Types" Version="16.0.0"/>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.8"/>
<PackageReference Include="HotChocolate.Types" Version="16.0.9"/>
</ItemGroup>

<ItemGroup>
Expand Down
21 changes: 9 additions & 12 deletions GraphHealthChecks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,19 @@ The purpose of this middleware is to provide feedback regarding the health of th
### Current Releases

| HotChocolate Version | GraphHealthChecks Version | .NET Version |
|----------------------|---------------------------|---------------|
| -------------------- | ------------------------- | ------------- |
| 16.0.9 or higher | 6.0.1 | .NET 8, 9, 10 |
| 16.0.0 or higher | 6.0.0 | .NET 8, 9, 10 |
| 15.1.11 or higher | 5.0.0 | .NET 8, 9, 10 |
| 15.0.3 or higher | 4.0.1 | .NET 8, 9 |
| 15.0.3 or higher | 4.0.0 | .NET 8, 9 |
| 14.3.0 or higher | 3.3.0 | .NET 8, 9 |
| 14.2.0 or higher | 3.2.0 | .NET 8, 9 |
| 14.1.0 or higher | 3.1.0 | .NET 8, 9 |
| 14.0.0 or higher | 3.0.0 | .NET 8 |

### Past Releases

| HotChocolate Version | Last GraphHealthChecks Version | .NET Version |
|----------------------|--------------------------------|--------------|
| 13.7.0 or higher | 2.0.1 | .NET 6, 8 |
| 13.3.3 or higher | 1.0.2 | .NET 6, 7 |
| HotChocolate Version | Last GraphHealthChecks Version | .NET Version |
| -------------------- | ------------------------------ | ------------- |
| 15.1.11 or higher | 5.0.0 | .NET 8, 9, 10 |
| 15.0.3 or higher | 4.0.1 | .NET 8, 9 |
| 14.3.0 or higher | 3.3.0 | .NET 8, 9 |
| 13.7.0 or higher | 2.0.1 | .NET 6, 8 |
| 13.3.3 or higher | 1.0.2 | .NET 6, 7 |

📝For more information please visit https://www.nuget.org/packages/GraphHealthChecks/#versions-body-tab

Expand Down
2 changes: 1 addition & 1 deletion NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

In one Go!

```powershell
```bash
dotnet test /p:CollectCoverage=true /p:Threshold=80 /p:CoverletOutputFormat=cobertura /p:CoverletOutput='../coverage.cobertura.xml'
dotnet reportgenerator -reports:./coverage.cobertura.net10.0.xml -targetdir:./TestResults -reporttypes:Html
```
Expand Down
21 changes: 9 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,19 @@ The purpose of this middleware is to provide feedback regarding the health of th
### Current Releases

| HotChocolate Version | GraphHealthChecks Version | .NET Version |
|----------------------|---------------------------|---------------|
| -------------------- | ------------------------- | ------------- |
| 16.0.9 or higher | 6.0.1 | .NET 8, 9, 10 |
| 16.0.0 or higher | 6.0.0 | .NET 8, 9, 10 |
| 15.1.11 or higher | 5.0.0 | .NET 8, 9, 10 |
| 15.0.3 or higher | 4.0.1 | .NET 8, 9 |
| 15.0.3 or higher | 4.0.0 | .NET 8, 9 |
| 14.3.0 or higher | 3.3.0 | .NET 8, 9 |
| 14.2.0 or higher | 3.2.0 | .NET 8, 9 |
| 14.1.0 or higher | 3.1.0 | .NET 8, 9 |
| 14.0.0 or higher | 3.0.0 | .NET 8 |

### Past Releases

| HotChocolate Version | Last GraphHealthChecks Version | .NET Version |
|----------------------|--------------------------------|--------------|
| 13.7.0 or higher | 2.0.1 | .NET 6, 8 |
| 13.3.3 or higher | 1.0.2 | .NET 6, 7 |
| HotChocolate Version | Last GraphHealthChecks Version | .NET Version |
| -------------------- | ------------------------------ | ------------- |
| 15.1.11 or higher | 5.0.0 | .NET 8, 9, 10 |
| 15.0.3 or higher | 4.0.1 | .NET 8, 9 |
| 14.3.0 or higher | 3.3.0 | .NET 8, 9 |
| 13.7.0 or higher | 2.0.1 | .NET 6, 8 |
| 13.3.3 or higher | 1.0.2 | .NET 6, 7 |

📝For more information please visit https://www.nuget.org/packages/GraphHealthChecks/#versions-body-tab

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "10.0.100",
"version": "10.0.200",
"rollForward": "latestFeature"
}
}
Loading