Conversation
🚀 Fusion Gateway Performance ResultsSimple Composite QueryConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query fragment User on User {
id
username
name
}
fragment Review on Review {
id
body
}
fragment Product on Product {
inStock
name
price
shippingEstimate
upc
weight
}
query TestQuery {
topProducts(first: 5) {
...Product
reviews {
...Review
author {
...User
}
}
}
}Deep Recursion QueryConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query fragment User on User {
id
username
name
}
fragment Review on Review {
id
body
}
fragment Product on Product {
inStock
name
price
shippingEstimate
upc
weight
}
query TestQuery {
users {
...User
reviews {
...Review
product {
...Product
reviews {
...Review
author {
...User
reviews {
...Review
product {
...Product
}
}
}
}
}
}
}
topProducts(first: 5) {
...Product
reviews {
...Review
author {
...User
reviews {
...Review
product {
...Product
}
}
}
}
}
}Variable Batching ThroughputConstant Load (50 VUs)
📊 Response Time Metrics
Ramping Load (0→50→500→50 VUs)
📊 Response Time Metrics
Executed Query query TestQuery_8f7a46ce_2(
$__fusion_1_upc: ID!
$__fusion_2_price: Long!
$__fusion_2_weight: Long!
) {
productByUpc(upc: $__fusion_1_upc) {
inStock
shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
}
}Variables (5 sets batched in single request) [
{ "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
{ "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
{ "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
{ "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
{ "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]No baseline data available for comparison. Run 20032811931 • Commit d6e2ab4 • Mon, 08 Dec 2025 15:28:44 GMT |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8984 +/- ##
============================
============================
☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions workflow dependencies (actions and tooling versions) and extends the repo’s cspell dictionary to accommodate new CI/release terminology used by the updated pipelines.
Changes:
- Bumped multiple GitHub Actions to newer major versions across CI, coverage, website publish, benchmarks, and release workflows.
- Updated Node.js version used in workflows from 22 to 24 and refreshed a couple of global CLI tool installs (e.g., cspell, markdownlint).
- Expanded
dictionary.txtwith additional CI/release-related terms (e.g.,CODESIGN,notarytool,spctl,xcrun).
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
dictionary.txt |
Adds new accepted words to keep cspell passing with updated release/signing terminology. |
.github/workflows/release.yml |
Updates Azure login/signing actions and artifact actions; bumps Node to 24 for npm publish steps. |
.github/workflows/publish-website.yml |
Updates Docker actions and bumps Node to 24 for website build/publish. |
.github/workflows/pr-labeler.yml |
Bumps actions/labeler major version. |
.github/workflows/coverage.yml |
Updates Docker login and artifact upload/download actions. |
.github/workflows/ci.yml |
Bumps Node to 24; pins cspell and updates markdownlint-cli2; updates artifact actions. |
.github/workflows/benchmarks.yml |
Updates actions/github-script and artifact download/upload actions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Summary of the changes (Less than 80 chars)