Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
66b743b
Migrate integration tests to in-process hosts via `WebApplicationFact…
Copilot May 17, 2026
1506a22
Enforce input/output kind safety for `ListOf`/`Nullable` wrappers at …
Copilot May 17, 2026
075018b
Pin CI workflows and build script to .NET SDK 10.0.300 (#578)
Copilot May 17, 2026
19d11c3
Pin CI workflows and build script to .NET SDK 10.0.301
xperiandri Jun 13, 2026
cc5fc0f
Fixed Repo Assist incorrectly encoded characters
xperiandri Jun 13, 2026
50b4569
Bump lodash and babel-cli in /samples/graphiql-client (#584)
dependabot[bot] Jun 13, 2026
d8aba70
Publish CI test results into PR discussions, harden artifact download…
Copilot Jun 13, 2026
45046d7
Fixed NuGet packaging of DesignTime DLL for F# provider
xperiandri Jun 13, 2026
e643b8d
Updated `FSharp.TypeProviders.SDK` to `8.10.0`
xperiandri Jun 13, 2026
bdd7297
fixup! Updated `FSharp.TypeProviders.SDK` to `8.10.0`
xperiandri Jun 14, 2026
15df50a
High severity vulnerability fix: upgrade `SQLitePCLRaw.lib.e_sqlite3`…
Copilot Jul 8, 2026
c1e8510
Support case-insensitive comparison with `ObjectListFilter` (#582)
Copilot Jul 9, 2026
2d94c67
`ObjectListFilter` filter values to target type coercion (#589)
xperiandri Jul 9, 2026
454a9e0
Migrated to modern `InternalsVisibleTo` syntax
xperiandri Jul 16, 2026
8e34237
Implemented support of `Guid` and value object scalars as `InputValue`
xperiandri Jul 17, 2026
78d21c1
Implemented tests for `ObjectListFilter` with empty arrays
xperiandri Aug 9, 2026
060fd26
Updated SDK to `10.0.302`
xperiandri Aug 9, 2026
d971701
Updated `Fantomas` to `7.0.5`
xperiandri Aug 9, 2026
eada5c2
Updated `FSDocs-Tools` to `22.1.0`
xperiandri Aug 9, 2026
b9ce3ad
Implemented robust interface field covariance validation & tests
xperiandri Aug 9, 2026
be74f88
Bump @protobufjs/utf8 from 1.1.0 to 1.1.1 in /samples/client-provider…
dependabot[bot] Aug 9, 2026
c072f8e
Bump brace-expansion from 1.1.14 to 1.1.18 in /samples/graphiql-clien…
dependabot[bot] Aug 10, 2026
7de55d4
Bump ws from 7.5.7 to 7.5.13 in /samples/client-provider/file-upload/…
dependabot[bot] Aug 11, 2026
28775fd
Bump websocket-driver from 0.7.0 to 0.7.5 in /samples/graphiql-client…
dependabot[bot] Aug 11, 2026
47f8300
Bump lodash from 4.17.21 to 4.18.1 in /samples/client-provider/file-u…
dependabot[bot] Aug 11, 2026
b86114c
Bump decode-uri-component from 0.2.0 to 0.2.2 in /samples/graphiql-cl…
dependabot[bot] Aug 11, 2026
ddf3b1a
Bump nanoid and shortid in /samples/client-provider/file-upload/serve…
dependabot[bot] Aug 11, 2026
9b0c55f
Bump got and nodemon in /samples/client-provider/file-upload/server (…
dependabot[bot] Aug 11, 2026
99f053d
Implemented schema validation for interfaces having implementations; …
xperiandri Aug 12, 2026
8ed90b2
fix(parser): allow zero whitespace between `}` and next definition
xperiandri Aug 12, 2026
7e51ea7
Make `__type` introspection field nullable per spec
xperiandri Aug 13, 2026
7ed1b61
Added prompts to prepare GitHub PR and issue descriptions
xperiandri Sep 14, 2026
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 .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"isRoot": true,
"tools": {
"fantomas": {
"version": "7.0.1",
"version": "7.0.5",
"commands": [
"fantomas"
],
"rollForward": false
},
"fsdocs-tool": {
"version": "20.0.1",
"version": "22.1.0",
"commands": [
"fsdocs"
],
Expand Down
24 changes: 24 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Proposed Changes

Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.

## Types of changes

What types of changes does your code introduce to FSharp.Data.GraphQL?
_Put an `x` in the boxes that apply_

- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)

## Checklist

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._

- [ ] Build and tests pass locally
- [ ] I have added tests that prove my fix is effective or that my feature works (if appropriate)
- [ ] I have added necessary documentation (if appropriate)

## Further comments

If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...
24 changes: 24 additions & 0 deletions .github/prompts/create-issue-description.prompt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
mode: agent
description: Generates a GitHub issue description for FSharp.Data.GraphQL by analyzing the current branch's changes and filling in the project's issue template.
---

Generate a GitHub issue description for the current branch by filling out the repository's issue template.

## Steps

1. Read #file:'.github/ISSUE_TEMPLATE.md' to understand the required sections and their purpose.
2. Run `git diff origin/dev...HEAD --stat` and `git log origin/dev...HEAD --oneline` to understand what was changed in the current branch.
3. For each section in the template, infer the appropriate content from the branch changes, commit messages, and modified file names.
4. Do **not** leave any template placeholder text (e.g., `Step A`, `Step B`) in the output – replace every section with concrete, specific content derived from the branch.
5. Write in clear, concise English suitable for a public GitHub issue.

## Output

A single fenced markdown code block containing the fully filled-out issue body, ready to copy and paste directly into GitHub. Do not include any explanation or commentary outside the code block.

## Notes

- If a template section is not applicable given the changes, write "N/A" rather than omitting the section.
- Base all content strictly on actual branch changes – do not speculate or invent scenarios.
- Commit messages, changed file paths, and any added or modified test cases are strong signals for identifying the change's purpose and scope.
54 changes: 54 additions & 0 deletions .github/prompts/create-pr-description.prompt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
mode: agent
description: Generates a pull request description for FSharp.Data.GraphQL by analyzing the current branch's changes and filling in the project's PR template.
---

# Create PR Description

## Context

#file:'.github/PULL_REQUEST_TEMPLATE.md'

> If the `#file:` reference above cannot be resolved, run `Get-Content .github/PULL_REQUEST_TEMPLATE.md` in PowerShell from the repository root to read the template.

## Task

Analyze the current branch's git diff and commit history relative to the remote base branch (`origin/dev`), then produce a fully filled-in PR description that conforms to the project's `PULL_REQUEST_TEMPLATE.md`.

## Steps

1. Read `#file:'.github/PULL_REQUEST_TEMPLATE.md'` to identify the exact section structure, checkbox labels, and required ordering.
2. Run `git diff origin/dev...HEAD --stat`, `git diff origin/dev...HEAD`, and `git log origin/dev...HEAD --oneline` to determine exactly what changed in the current branch.
3. Fill `## Proposed Changes` with a concise 3–6 sentence summary of the concrete behavior, API, test, or documentation changes visible in the diff.
4. Set `## Types of changes` checkboxes strictly from evidence in commits and diff:
- mark bugfix only when existing behavior is corrected
- mark new feature only when new user-facing capability is introduced
- mark breaking change only when existing public behavior or API compatibility is intentionally broken
5. Evaluate `## Checklist` strictly from branch evidence:
- mark test-related items only if tests were added or updated in the diff
- mark documentation-related items only if docs or XML comments were changed
- if build/test execution is not visible from evidence, leave relevant items unchecked and add a brief inline note
6. Replace all placeholder/template text with branch-specific content and include `## Further comments` only when the change is large or architecturally significant.

## Guidelines

- Be factual and precise – base every statement on the actual diff and commits, not assumptions.
- Keep the **Proposed Changes** section concise but informative (3–6 sentences max).
- For checklist items that cannot be determined from the diff alone, leave them unchecked and add a short inline note.
- Do not invent issue numbers or links unless they appear in commit messages or branch names.
- Use plain English; avoid vague filler phrases like "various improvements".
- Do not start the summary with "This branch adds".
- Use only en dashes (`–`) for dashes; never use em dashes (`—`).
- Always wrap names and versions into backticks (for example, `ObjectListFilter`) when referring to them in the description.
- Preserve all original template headings, checkbox syntax, and section order exactly.

## Output

A single fenced markdown code block containing the fully filled-out PR description, ready to copy and paste directly into GitHub. Do not escape any markdown syntax inside the block. Match the structure of `PULL_REQUEST_TEMPLATE.md` exactly:

- `## Proposed Changes` – narrative paragraph(s)
- `## Types of changes` – checkboxes with `x` placed in the correct box(es)
- `## Checklist` – checkboxes filled based on evidence from the diff
- `## Further comments` – include only when the change warrants extra explanation; omit the section entirely otherwise

Do not include any explanation or commentary outside the code block.
2 changes: 1 addition & 1 deletion .github/workflows/publish-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DOTNET_SDK_VERSION: 10.0.202
DOTNET_SDK_VERSION: 10.0.302

jobs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
SLEEP_DURATION: 60
DOTNET_SDK_VERSION: 10.0.202
DOTNET_SDK_VERSION: 10.0.302

jobs:
publish:
Expand Down
61 changes: 61 additions & 0 deletions .github/workflows/publish-test-results.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Publish Test Results

on:
workflow_run:
workflows: ["Build and Test"]
types:
- completed

permissions: {}

jobs:
test-results:
if: github.event.workflow_run.conclusion != 'skipped' && github.event.workflow_run.event == 'pull_request'
name: Test Results
runs-on: ubuntu-latest

permissions:
actions: read
checks: write
pull-requests: write

steps:
- name: Download event file
uses: dawidd6/action-download-artifact@v6
with:
run_id: ${{ github.event.workflow_run.id }}
path: artifacts
name: EventFile

- name: Download test results
uses: dawidd6/action-download-artifact@v6
with:
run_id: ${{ github.event.workflow_run.id }}
path: test-results
name: ^test-results-.*
name_is_regexp: true
if_no_artifact_found: warn

- name: Resolve event file path
id: event_file
shell: pwsh
run: |
$eventFilePath =
Get-ChildItem -Path artifacts -Filter event.json -Recurse |
Select-Object -First 1 -ExpandProperty FullName

if ($null -eq $eventFilePath) {
throw "event.json file was not found in downloaded artifacts"
}

"path=$eventFilePath" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append

- name: Publish test results
if: ${{ hashFiles('test-results/**/*.trx') != '' }}
uses: EnricoMi/publish-unit-test-result-action@v2
with:
commit: ${{ github.event.workflow_run.head_sha }}
comment_mode: always
event_file: ${{ steps.event_file.outputs.path }}
event_name: ${{ github.event.workflow_run.event }}
files: "test-results/**/*.trx"
26 changes: 25 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,31 @@ env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true

permissions: {}

jobs:
event_file:
if: github.event_name == 'pull_request'
name: Publish event file
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Upload event file
uses: actions/upload-artifact@v4
with:
name: EventFile
path: ${{ github.event_path }}

build:
permissions:
contents: read

strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-latest, macOS-latest]
dotnet: [10.0.202]
dotnet: [10.0.302]
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -50,3 +67,10 @@ jobs:

- name: Build and run integration tests
run: dotnet run --project build/Build.fsproj --launch-profile BuildAndTest

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.os }}
path: test-results
Loading
Loading