Skip to content

Commit

Permalink
Update packages (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
sungam3r authored Jun 27, 2022
1 parent 07e3883 commit d503781
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:
- ubuntu-latest
- windows-latest
graphqlversion:
- 5.0.0
- 5.1.1
- 5.2.0
- 5.3.1
steps:
- name: Checkout source
uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<IsPackable>true</IsPackable>
<!--<TreatWarningsAsErrors>true</TreatWarningsAsErrors>-->
<GraphQLTestVersion>5.2.0</GraphQLTestVersion>
</PropertyGroup>

</Project>
8 changes: 4 additions & 4 deletions src/GraphQL.Relay.StarWars/GraphQL.Relay.StarWars.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GraphQL.MicrosoftDI" Version="5.2.0" />
<PackageReference Include="GraphQL.SystemTextJson" Version="5.2.0" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="6.0.0" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="6.0.0" />
<PackageReference Include="GraphQL.MicrosoftDI" Version="5.3.1" />
<PackageReference Include="GraphQL.SystemTextJson" Version="5.3.1" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="6.1.0" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/GraphQL.Relay.StarWars/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void ConfigureServices(IServiceCollection services)
.AddSingleton<ResponseCache>();

services.AddGraphQL(b => b
.AddMetrics(true)
.AddApolloTracing(true)
.AddHttpMiddleware<StarWarsSchema>()
.AddSchema<StarWarsSchema>()
.AddSystemTextJson()
Expand Down
3 changes: 2 additions & 1 deletion src/GraphQL.Relay.Test/GraphQL.Relay.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Tests.props" />

<PropertyGroup>
<TargetFramework>net6</TargetFramework>
<GraphQLTestVersion>5.1.1</GraphQLTestVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/GraphQL.Relay.Todo/GraphQL.Relay.Todo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GraphQL.MicrosoftDI" Version="5.2.0" />
<PackageReference Include="GraphQL.SystemTextJson" Version="5.2.0" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="6.0.0" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="6.0.0" />
<PackageReference Include="GraphQL.MicrosoftDI" Version="5.3.1" />
<PackageReference Include="GraphQL.SystemTextJson" Version="5.3.1" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="6.1.0" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="6.1.0" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.6" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/GraphQL.Relay.Todo/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class Startup
public void ConfigureServices(IServiceCollection services)
{
services.AddGraphQL(b => b
.AddMetrics(true)
.AddApolloTracing(true)
.AddHttpMiddleware<TodoSchema>()
.AddSchema<TodoSchema>()
.AddSystemTextJson()
Expand Down
2 changes: 1 addition & 1 deletion src/GraphQL.Relay/GraphQL.Relay.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GraphQL" Version="5.2.0" />
<PackageReference Include="GraphQL" Version="5.1.1" />
</ItemGroup>

</Project>

0 comments on commit d503781

Please sign in to comment.