Conversation
Contributor
|
Caution Review failedThe pull request is closed. 📝 WalkthroughSummary by CodeRabbit
WalkthroughThe PR updates the Go toolchain version from 1.25.5 to 1.26 across the entire project, including GitHub Actions workflows, Dockerfiles, and all go.mod files. Bytedance/sonic dependencies are updated from v1.14.2 to v1.15.0. A new load-testing script is introduced for end-to-end performance validation using Vegeta. Changes
Sequence DiagramsequenceDiagram
participant Script as Load Test Script
participant Go as Go Build
participant Mocker as Mock Provider
participant BifrostHTTP as Bifrost HTTP
participant Vegeta as Vegeta Load Gen
participant Results as Results Reporter
Script->>Go: Build bifrost-http binary
Go-->>Script: Binary ready
Script->>Mocker: Clone/update mocker repo
Mocker-->>Script: Mocker ready
Script->>Mocker: Start mock server (latency simulation)
Mocker-->>Script: Server running on port
Script->>BifrostHTTP: Start bifrost-http
BifrostHTTP->>Mocker: Ready signal detected
BifrostHTTP-->>Script: Service ready
Script->>Vegeta: Execute load test (1000 RPS, 60s)
Vegeta->>BifrostHTTP: Send requests
BifrostHTTP->>Mocker: Forward to mock provider
Mocker-->>BifrostHTTP: Mock responses
BifrostHTTP-->>Vegeta: Collect responses
Vegeta-->>Script: Binary results
Script->>Results: Parse latency data & compute statistics
Results->>Results: Generate Markdown table (min/mean/p50/p90/p95/p99/max)
Results->>Results: Generate JSON report with metadata
Results-->>Script: Results exported
Script->>Script: Cleanup processes & temporary files
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~35 minutes Poem
✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
Contributor
🧪 Test Suite AvailableThis PR can be tested by a repository admin. |
standaell1234-maker
approved these changes
Feb 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Upgrade Go version from 1.25.x to 1.26 across all GitHub workflows and project files.
Changes
.github/workflows/scripts/load-test.shType of change
Affected areas
How to test
Verify that the project builds and tests pass with Go 1.26:
Breaking changes
Security considerations
This update includes the latest Go version which may contain security improvements.
Checklist
docs/contributing/README.mdand followed the guidelines