-
Notifications
You must be signed in to change notification settings - Fork 8
auto-docs: Update Go modules #299
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. |
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 📝 WalkthroughWalkthroughThe Sequence Diagram(s)No sequence diagram is generated as the changes are limited to dependency version updates and do not modify control flow or introduce new features. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. 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: 1
📜 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(3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: build
🔇 Additional comments (1)
blobl-editor/wasm/go.mod (1)
71-71: Approve indirect dependency patch updates
Theperiod,x/crypto,x/sync, andx/textversions have been updated at patch/minor levels transitively. These align with the Benthos bump and do not require further changes.Also applies to: 94-94, 96-96, 98-98
|
|
||
| require ( | ||
| github.com/redpanda-data/benthos/v4 v4.52.0 | ||
| github.com/redpanda-data/benthos/v4 v4.53.0 |
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.
💡 Verification agent
🧩 Analysis chain
Verify direct Benthos upgrade to v4.53.0
This bump may include new features or breaking changes. Ensure all Benthos client calls remain compatible and run the module’s tests.
🏁 Script executed:
#!/bin/bash
set -e
cd blobl-editor/wasm
go mod tidy
go test ./...Length of output: 7382
Run WASM-targeted tests for Benthos v4.53.0
The default go test ./... on linux/amd64 fails due to syscall/js build constraints. After bumping to github.com/redpanda-data/benthos/v4 v4.53.0, verify compatibility and rebuild the WASM module:
• cd into the WASM module
cd blobl-editor/wasm• Tidy dependencies and run tests under the JS/WASM target
go mod tidy
GOOS=js GOARCH=wasm go test ./...Ensure all tests pass and update any Benthos client calls for breaking-change fixes.
🤖 Prompt for AI Agents
In blobl-editor/wasm/go.mod at line 8, after upgrading Benthos to v4.53.0, run
the WASM-targeted tests using the commands "go mod tidy" and "GOOS=js
GOARCH=wasm go test ./..." inside the wasm directory. Verify all tests pass and
update any Benthos client calls to accommodate breaking changes or new features
introduced in v4.53.0.
99c1b65 to
52ca1d1
Compare
This PR updates the Go modules for the Bloblang playground Wasm code.