Skip to content

Commit

Permalink
Update Hot Chocolate implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
glen-84 committed Oct 17, 2024
1 parent 21aebc7 commit 7c59b31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions implementations/hotchocolate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0
FROM mcr.microsoft.com/dotnet/sdk:8.0

WORKDIR /server

RUN dotnet new web
RUN dotnet add package HotChocolate.AspNetCore --version 13.0.0-preview.80
RUN dotnet add package HotChocolate.AspNetCore --version 14.0.0
COPY Program.cs .
6 changes: 3 additions & 3 deletions implementations/hotchocolate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ul>
<li><b>60</b> audits in total</li>
<li><span style="font-family: monospace">✅</span> <b>58</b> pass</li>
<li><span style="font-family: monospace">️</span> <b>2</b> warnings (optional)</li>
<li><span style="font-family: monospace">️</span> <b>2</b> warnings (optional)</li>
</ul>

<h2>Passing</h2>
Expand Down Expand Up @@ -83,7 +83,7 @@ The server <i>SHOULD</i> support these, but is not required.
"transfer-encoding": "chunked",
"server": "Kestrel",
"date": "<timestamp>",
"content-type": "application/graphql-response+json;charset=utf-8"
"content-type": "application/graphql-response+json; charset=utf-8"
},
"body": {
"data": {
Expand All @@ -104,7 +104,7 @@ The server <i>SHOULD</i> support these, but is not required.
"transfer-encoding": "chunked",
"server": "Kestrel",
"date": "<timestamp>",
"content-type": "application/graphql-response+json;charset=utf-8"
"content-type": "application/graphql-response+json; charset=utf-8"
},
"body": {
"data": {
Expand Down

0 comments on commit 7c59b31

Please sign in to comment.