-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
build(deps): bump x/tx #22327
build(deps): bump x/tx #22327
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ require ( | |
cosmossdk.io/schema v0.3.1-0.20240930054013-7c6e0388a3f9 // indirect | ||
cosmossdk.io/store v1.1.1-0.20240418092142-896cdf1971bc // indirect | ||
cosmossdk.io/x/staking v0.0.0-00010101000000-000000000000 // indirect | ||
cosmossdk.io/x/tx v0.13.3 // indirect | ||
cosmossdk.io/x/tx v1.0.0-alpha.1 // indirect | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Inconsistent versions of Several modules are still using older versions of
🔗 Analysis chainVerify impact of major version update for cosmossdk.io/x/tx The update to
To ensure consistency across the project, run the following command: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check for consistency of cosmossdk.io/x/tx version across all go.mod files
find . -name go.mod -exec grep -H "cosmossdk.io/x/tx" {} \;
Length of output: 3602 |
||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect | ||
github.com/99designs/keyring v1.2.2 // indirect | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ require ( | |
cosmossdk.io/schema v0.3.1-0.20240930054013-7c6e0388a3f9 // indirect | ||
cosmossdk.io/x/bank v0.0.0-20240226161501-23359a0b6d91 // indirect | ||
cosmossdk.io/x/staking v0.0.0-00010101000000-000000000000 // indirect | ||
cosmossdk.io/x/tx v0.13.3 // indirect | ||
cosmossdk.io/x/tx v1.0.0-alpha.1 // indirect | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Inconsistent versions of cosmossdk.io/x/tx across modules Multiple
This inconsistency may lead to dependency conflicts and unexpected behavior. Please ensure all modules are updated to use a single, consistent version of 🔗 Analysis chainSignificant version update for cosmossdk.io/x/tx The update from v0.13.3 to v1.0.0-alpha.1 for
Please provide more context on:
Additionally, run the following script to check for any other modules that might be affected by this update: This will help ensure consistency across the project and identify any modules that might need similar updates. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check for other modules using cosmossdk.io/x/tx
rg -g 'go.mod' 'cosmossdk.io/x/tx' --no-filename | sort | uniq
Length of output: 498 Script: #!/bin/bash
# List all go.mod files and the versions of cosmossdk.io/x/tx they reference
rg -l 'cosmossdk.io/x/tx' --glob 'go.mod' | while read -r file; do
echo "File: $file"
rg 'cosmossdk.io/x/tx' "$file"
echo ""
done
Length of output: 6598 |
||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect | ||
github.com/99designs/keyring v1.2.2 // indirect | ||
|
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.
💡 Codebase verification
Invalid version
v1.0.0-alpha.1
forcosmossdk.io/x/tx
and presence of deprecated usagesv1.0.0-alpha.1
forcosmossdk.io/x/tx
was not found.tx
module were detected, which may lead to compatibility issues.🔗 Analysis chain
Significant version update for
cosmossdk.io/x/tx
The
cosmossdk.io/x/tx
dependency has been updated from v0.13.5 to v1.0.0-alpha.1. This is a major version change and indicates a significant update in the transaction module.To ensure compatibility and assess the impact of this change, please run the following verification script:
This script will help identify any breaking changes, usage of new features, and potential deprecation warnings related to the tx module update.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 5414