Skip to content

Migrated website to nextjs#9096

Merged
michaelstaib merged 12 commits intomainfrom
mst/nextjs-migration-2
Feb 17, 2026
Merged

Migrated website to nextjs#9096
michaelstaib merged 12 commits intomainfrom
mst/nextjs-migration-2

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

Comment thread website/app/blog/[...slug]/page.tsx Outdated
Comment thread website/app/docs/[...slug]/page.tsx Outdated
Comment thread website/lib/basic-page-view.tsx Outdated
<SiteLayout>
<SEO title={title} />
<Container>
<Article className="text-2">
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why suddenly className?

@tobias-tengler
Copy link
Copy Markdown
Member

Blogs are missing sidebar / aside and tags:
Before
CleanShot 2026-02-07 at 11 05 28@2x
After
CleanShot 2026-02-07 at 11 05 09@2x

@tobias-tengler
Copy link
Copy Markdown
Member

favicon is missing and title is not updated
CleanShot 2026-02-07 at 11 07 41@2x

@tobias-tengler
Copy link
Copy Markdown
Member

sidebar and aside missing on all pages below Company

@tobias-tengler
Copy link
Copy Markdown
Member

The Upcoming public workshop section is missing:
https://chillicream.com/services/training

(It looks super ugly how it is today though)

@tobias-tengler
Copy link
Copy Markdown
Member

Latest blog post is missing in platform popover
Before
CleanShot 2026-02-07 at 11 10 21@2x

After
CleanShot 2026-02-07 at 11 10 38@2x

It also changed the icons for whatever reason...

@tobias-tengler
Copy link
Copy Markdown
Member

tobias-tengler commented Feb 7, 2026

  • Last update at is missing at bottom of doc pages
  • Clicking on links inside of docs is very jittery (using npx serve on the build output)
  • Preview and outdated version warnings are not being shown
  • Tabs inside mdx are not rendered at all or rendered incorrectly

@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 7, 2026
@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 7, 2026
@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 9, 2026
@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 9, 2026
@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 9, 2026
@github-actions github-actions Bot added 📚 documentation This issue is about working on our documentation. 🧰 maintenance labels Feb 17, 2026
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2901.67 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.77ms 15.28ms 171.95ms 17.01ms 30.70ms 35.82ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3225.11 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.80ms 66.32ms 302.06ms 69.12ms 130.56ms 147.34ms

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 Query

Constant Load (50 VUs)

Requests/sec Error Rate
746.47 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.97ms 62.41ms 355.07ms 65.44ms 80.43ms 88.93ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
825.21 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.83ms 251.73ms 692.61ms 260.91ms 529.83ms 567.20ms

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 Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23823.31 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.69ms 51.35ms 2.05ms 3.92ms 4.80ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18881.37 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.30ms 107.46ms 11.27ms 23.15ms 27.94ms

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 22111379275 • Commit a724b0a • Tue, 17 Feb 2026 19:08:48 GMT

@michaelstaib michaelstaib merged commit b72f5ba into main Feb 17, 2026
7 of 9 checks passed
@michaelstaib michaelstaib deleted the mst/nextjs-migration-2 branch February 17, 2026 19:59
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2965.18 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.72ms 14.74ms 171.82ms 16.64ms 30.77ms 36.34ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3214.78 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.73ms 65.69ms 297.32ms 69.30ms 131.21ms 148.77ms

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 Query

Constant Load (50 VUs)

Requests/sec Error Rate
750.52 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.66ms 62.25ms 334.99ms 65.07ms 80.72ms 88.95ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
831.53 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.80ms 253.48ms 732.87ms 258.93ms 513.95ms 555.91ms

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 Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23893.05 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.69ms 43.48ms 2.04ms 3.92ms 4.78ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18809.59 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.20ms 114.53ms 11.25ms 23.07ms 28.13ms

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 22113586840 • Commit bd17bff • Tue, 17 Feb 2026 20:17:58 GMT

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

📚 documentation This issue is about working on our documentation. 🧰 maintenance 🌶️ website

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants