Skip to content

Updated Monkier Pills to indicate new build targets. #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/development/unit-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ sidebar_label: Unit Testing
sidebar_position: 1
---

<span className="pill">.NET 6+</span>
<span className="pill">.NET 8+</span>
<br/>
<br/>

:::info
Your test projects must target .NET 6 or greater to use the test framework
Your test projects must target .NET 8 or greater to use the test framework
:::

GraphQL ASP.NET has more than `3500 unit tests and 91% code coverage`. All the internal integration tests are powered by a framework designed to quickly build a configurable, fully mocked server instance to perform a query against the runtime. It may be helpful to use and extend the framework to test your own controllers.
Expand Down
2 changes: 1 addition & 1 deletion docs/quick/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Use the menus on the left to navigate through the documentation. You do not need

## Nuget & Installation

<span className="pill">.NET Standard 2.0</span> <span className="pill">.NET 6</span> <span className="pill">.NET 7</span> <span className="pill">.NET 8</span> <br/><br/>
<span className="pill">.NET Standard 2.0</span> <span className="pill">.NET 8</span> <span className="pill">.NET 9</span> <br/><br/>

The library is available on [nuget](https://www.nuget.org/packages/GraphQL.AspNet/) and can be added to your project via the conventional means.

Expand Down
4 changes: 2 additions & 2 deletions docs/server-extensions/multipart-requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ sidebar_label: File Uploads & Batching
sidebar_position: 0
---

<span className="pill">.NET 6+</span>
<span className="pill">.NET 8+</span>

## Multipart Request Specification
GraphQL ASP.NET provides built in support for batch query processing and file uploads via an implementation of the [GraphQL Multipart Request Specification](https://github.com/jaydenseric/graphql-multipart-request-spec).

This extension requires a minimum version of `v1.2.0` of the main library and you must target .NET 6 or later. This extension will not work with the .NET standard implementation.
This extension requires a minimum version of `v1.2.0` of the main library and you must target .NET 8 or later. This extension will not work with the .NET standard implementation.

:::info
This document covers how to submit a batch query and upload files that conform to the above specification. It provides sample curl requests that would be accepted for the given sample code but does not explain in detail the various form fields required to complete a request. It is highly recommended to use a [supported client](https://github.com/jaydenseric/graphql-multipart-request-spec#client) when enabling this server extension.
Expand Down
2 changes: 1 addition & 1 deletion docs/types/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ GraphQL ASP.NET has 20 built in scalar types.
| UShort | System.UInt16 | Number |

:::info
You must target .NET 6.0 or later to use `DateOnly` and `TimeOnly`
You must target .NET 8.0 or later to use `DateOnly` and `TimeOnly`
:::

## Input Value Resolution
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function HomepageHeader() {
return (
<header className={clsx(styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title} <span className="pill-header pill-small">.NET 6+</span></h1>
<h1 className="hero__title">{siteConfig.title} <span className="pill-header pill-small">.NET 8+</span></h1>
<div className={styles.buttons} >
<div className={clsx("row", styles["main-buttons"])}>
<div>
Expand Down
Loading