-
Notifications
You must be signed in to change notification settings - Fork 8
auto-docs: Update Go modules #324
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
Conversation
✅ Deploy Preview for docs-ui ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
📝 WalkthroughWalkthroughThe pull request updates the versions of two dependencies in the Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. ✨ Finishing Touches🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
blobl-editor/wasm/go.mod (1)
7-10: Rungo mod tidyafter version bumpsAfter updating direct dependencies,
go mod tidyoften updates the indirect set (secondrequireblock) and prunes superseded entries. Running it and committing the resulting diff keeps the module graph minimal and avoids accidental version drifts.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
blobl-editor/wasm/go.sumis excluded by!**/*.sum
📒 Files selected for processing (1)
blobl-editor/wasm/go.mod(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
- GitHub Check: Redirect rules - docs-ui
- GitHub Check: Header rules - docs-ui
- GitHub Check: Pages changed - docs-ui
- GitHub Check: build
- GitHub Check: test-bloblang-playground
🔇 Additional comments (1)
blobl-editor/wasm/go.mod (1)
7-10: Confirm WASM build compatibility with upgraded Benthos & Connect versionsWe’ve bumped:
github.com/redpanda-data/benthos/v4→ v4.55.0github.com/redpanda-data/connect/v4→ v4.61.0Even patch releases may deprecate fields or tighten validation.
go vetunder the WASM target completed without errors, but test results weren’t shown. Please verify that the WASM build still compiles and that all tests pass:cd blobl-editor/wasm # Ensure module graph is clean go mod tidy go mod verify # Compile & vet for JS/WASM GOOS=js GOARCH=wasm go vet ./... # Run tests for the WASM target GOOS=js GOARCH=wasm go test ./...• Confirm no compile or vet errors
• Confirm all unit/integration tests for the WASM target pass

This PR updates the Go modules for the Bloblang playground Wasm code.