Skip to content

Commit 0bf3439

Browse files
committed
- Bumped HotChocolate version to the latest for v11: v11.3.8
- Updated Nuget Packages - Tests run successfully - Update Nuget version to deploy latest (last) version compatible with v11; v12 is being released today (09/28/2021)
1 parent 7e51426 commit 0bf3439

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

GraphQL.AzureFunctionsProxy.Tests/GraphQL.AzureFunctionsProxy.Tests.csproj

+8-7
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="HotChocolate.AspNetCore" Version="11.0.7" />
11-
<PackageReference Include="HotChocolate.Data" Version="11.0.7" />
1210
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
1311
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
14-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.2" />
12+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.12" />
1513
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.10" />
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
17-
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
18-
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
19-
<PackageReference Include="coverlet.collector" Version="1.3.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
15+
<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
16+
<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
17+
<PackageReference Include="coverlet.collector" Version="3.1.0">
18+
<PrivateAssets>all</PrivateAssets>
19+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20+
</PackageReference>
2021
</ItemGroup>
2122

2223
<ItemGroup>

GraphQL.AzureFunctionsProxy/GraphQL.AzureFunctionsProxy.csproj

+8-7
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
<Version>11.0.7.1</Version>
5+
<Version>11.3.8.1</Version>
66
<Authors>BBernard / CajunCoding</Authors>
77
<Company>CajunCoding</Company>
88
<Description>This is a extension package for HotChocolate GraphQL framework to enable execution within AzureFunctions using the new v11 API. Provides very easy integration with Azure Functions with maximum support for out-of-the-box HotChocolate functionality.</Description>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/cajuncoding/HotChocolate.AzureFunctionsProxy</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/cajuncoding/HotChocolate.AzureFunctionsProxy</RepositoryUrl>
1212
<PackageTags>graphql, graph-ql, hotchocolate, azure, functions, serverless</PackageTags>
13-
<PackageReleaseNotes>- Added support for download of the Schema (?SDL)
14-
- Added support for functioning Playground (when configured correctly in the Azure Function HttpTrigger &amp; Route Binding)
15-
- Bumped to HC v11.0.7
13+
<PackageReleaseNotes>- Bumped to HC v11.3.8
14+
- Update Nuget package for deployment of latest (last) version compatible with v11; v12 is being released today (09/28/2021)
1615

1716
Prior Releases Notes:
18-
- Added ConfigureAwait(false) to all awaits for performance.
17+
- Bumped to HC v11.0.7
18+
- Added support for download of the Schema (?SDL)
19+
- Added support for functioning Playground (when configured correctly in the Azure Function HttpTrigger &amp; Route Binding)- Added ConfigureAwait(false) to all awaits for performance.
1920
- Bumped to HC v11.0.4
2021
- Bump to HotChocolate v11.0.1 which now resolves a bug that we helped identify with interfaces in the initial release of v11.0.0.
2122
- Updated to support namespace changes in HotChocolate v11 rc.03 with synced version here as v11.0.0.3. Bumped HotChocolate version to v11-rc.03.
@@ -31,8 +32,8 @@ Prior Releases Notes:
3132
</ItemGroup>
3233

3334
<ItemGroup>
34-
<PackageReference Include="HotChocolate.AspNetCore" Version="11.0.7" />
35-
<PackageReference Include="HotChocolate.Data" Version="11.0.7" />
35+
<PackageReference Include="HotChocolate.AspNetCore" Version="11.3.8" />
36+
<PackageReference Include="HotChocolate.Data" Version="11.3.8" />
3637
</ItemGroup>
3738

3839
</Project>

PureCodeFirst-AzureFunctions-v11/StarWars-AzureFunctions.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
<RootNamespace>StarWars_AzureFunctions</RootNamespace>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="HotChocolate.AspNetCore" Version="11.0.7" />
9-
<PackageReference Include="HotChocolate.Data" Version="11.0.7" />
108
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
11-
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.11" />
9+
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.13" />
1210
</ItemGroup>
1311
<ItemGroup>
1412
<ProjectReference Include="..\GraphQL.AzureFunctionsProxy\GraphQL.AzureFunctionsProxy.csproj" />

0 commit comments

Comments
 (0)