Skip to content
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

revert: upgrade cometbft and cosmos-sdk #2956

Merged
merged 1 commit into from
Oct 2, 2024

Conversation

lumtis
Copy link
Member

@lumtis lumtis commented Oct 2, 2024

Reverts #2934

Seems there is an issue building from MacOS with the new flags added

Summary by CodeRabbit

  • New Features

    • Improved CI workflow with enhanced testing commands and failure handling.
    • Updated documentation generation script to install the latest version of zetacored before generating documentation.
  • Bug Fixes

    • Downgraded specific dependencies to ensure compatibility and address potential issues.
  • Refactor

    • Simplified sorting logic in the ChainRegistry struct for better performance and clarity.
  • Chores

    • Minor formatting adjustments and cleanup in configuration files and scripts.

Copy link
Contributor

coderabbitai bot commented Oct 2, 2024

📝 Walkthrough

Walkthrough

The pull request introduces several modifications across multiple configuration files and scripts. Key changes include updates to the CI workflow to enhance testing commands and failure handling, adjustments to the .golangci.yml file to streamline linting settings, and refinements in the Makefile to simplify build flags. Additionally, the go.mod file reflects downgraded dependency versions and new installations in the documentation generation script. A sorting logic change in the ChainRegistry struct's method further simplifies the codebase.

Changes

File Change Summary
.github/workflows/ci.yml - Updated rpcimportable job to run go test ./....
- Added conditional check in ci-ok job for job failures.
- Minor formatting adjustments.
.golangci.yml - Removed build-tags section.
- Set tests: false to exclude tests from linting.
- Adjusted formatting in linters section.
Makefile - Renamed build_ldflags to ldflags.
- Updated BUILD_FLAGS to use $(ldflags).
- Removed all_ldflags.
- Updated TEST_BUILD_FLAGS and HSM_BUILD_FLAGS.
- Modified docs-zetacored target to remove dependency on install-zetacore.
go.mod - Downgraded several dependencies (e.g., github.com/btcsuite/btcd/btcec/v2 from v2.3.4 to v2.3.2).
- Added github.com/spf13/jwalterweatherman at version v1.1.0.
scripts/gen-docs-zetacored.sh - Added command to install zetacored before generating documentation.
zetaclient/context/chain.go - Updated sorting logic in All method of ChainRegistry to use direct ID comparison.

Possibly related PRs

Suggested labels

no-changelog, ci, UPGRADE_TESTS

Suggested reviewers

  • skosito
  • kingpinXD
  • ws4charlie
  • brewmaster012
  • CryptoFewka
  • fbac

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the ci Changes to CI pipeline or github actions label Oct 2, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (7)
scripts/gen-docs-zetacored.sh (1)

Line range hint 1-45: Enhance script security, performance, and maintainability.

While the script functions as intended, there are several areas where it can be improved:

  1. Security:

    • Handle filenames with spaces and special characters to prevent unexpected behavior.
  2. Performance:

    • Combine multiple sed commands into a single operation per file.
    • Avoid creating and removing temporary .bak files for each operation.
  3. Maintainability:

    • Add comments explaining the purpose of each sed operation.
    • Implement version checks for required tools (zetacored, sed).

Consider the following improvements:

#!/bin/bash
set -euo pipefail

# Check for required tools
command -v zetacored >/dev/null 2>&1 || { echo >&2 "zetacored is required but not installed. Aborting."; exit 1; }
command -v sed >/dev/null 2>&1 || { echo >&2 "sed is required but not installed. Aborting."; exit 1; }

DIR="docs/cli/zetacored"

rm -rf "$DIR"

if ! go install ./cmd/zetacored; then
    echo "Error: Failed to install zetacored. Aborting documentation generation."
    exit 1
fi

zetacored docs --path "$DIR"

# Recursive function to process files
process_files() {
    local dir="$1"
    
    while IFS= read -r -d '' file; do
        # Combine all sed operations into a single command
        sed -i.bak -e 's/<\([^<>]*\)>/[\1]/g' \
                   -e 's/\[appd\]/zetacored/g' \
                   -e 's/(default ".*")//g' \
                   -e 's/\(\](#[^)]*\)\.md)/\1)/g' "$file"
        
        # Remove the backup file
        rm -f "$file.bak"
    done < <(find "$dir" -type f -print0)
}

# Start processing from the given directory
process_files "$DIR"

echo "Documentation generation complete."

This refactored version addresses the identified issues and improves overall script quality.

zetaclient/context/chain.go (1)

68-68: Approve the simplification with a suggestion for using the standard library.

The simplification of the sorting logic is commendable, improving both readability and potentially performance. However, the use of the experimental slices package from golang.org/x/exp might raise concerns in a production environment.

Consider using the standard library's sort.Slice function for improved stability:

sort.Slice(items, func(i, j int) bool { return items[i].ID() < items[j].ID() })

This alternative maintains the simplicity of the current implementation while leveraging the stable standard library.

Makefile (1)

Line range hint 17-32: Simplification of build flags may impact build process

The changes to the build flags and variable definitions have simplified the Makefile, but they may have unintended consequences:

  1. The removal of -extldflags=-Wl,--allow-multiple-definition from BUILD_FLAGS could potentially lead to linking errors if there are multiple definitions of symbols in the codebase.
  2. The simplification of TEST_BUILD_FLAGS and HSM_BUILD_FLAGS by removing the -ldflags option might affect the build process for tests and HSM-related builds.

Please verify that these changes do not introduce any build issues, especially for tests and HSM-related builds. Consider running a comprehensive test suite to ensure all builds complete successfully with these new flag configurations.

go.mod (4)

Line range hint 1-5: Consider aligning Go version with toolchain version

The Go version (1.22.2) and the toolchain version (1.22.5) are mismatched. It is recommended to align these versions to ensure consistency across development environments and avoid potential compatibility issues.

Consider updating the Go version to match the toolchain:

-go 1.22.2
+go 1.22.5

205-205: Note the changes in indirect dependencies

Several indirect dependencies have been updated or downgraded. Most notably:

  • github.com/klauspost/compress: v1.17.2 -> v1.16.7

While changes to indirect dependencies are generally less critical, the downgrade of klauspost/compress might affect compression performance in the project.

Consider monitoring the project's performance, particularly in areas that involve data compression, to ensure that this downgrade doesn't negatively impact your application.

Also applies to: 263-263


Line range hint 371-385: Ensure maintenance of forked dependencies

The go.mod file includes several replace directives, particularly for ZetaChain maintained forks:

replace (
	github.com/bnb-chain/tss-lib => github.com/zeta-chain/tss-lib v0.0.0-20240916163010-2e6b438bd901
	github.com/ethereum/go-ethereum => github.com/zeta-chain/go-ethereum v1.10.26-spc
	github.com/libp2p/go-libp2p => github.com/zeta-chain/go-libp2p v0.0.0-20240710192637-567fbaacc2b4
	gitlab.com/thorchain/tss/go-tss => github.com/zeta-chain/go-tss v0.0.0-20240916173049-89fee4b0ae7f
)

While these forks are likely necessary for project-specific modifications, they can lead to divergence from upstream packages over time.

To mitigate potential issues:

  1. Implement a regular schedule for syncing these forks with their upstream repositories.
  2. Document the reasons for each fork and the specific modifications made.
  3. Consider contributing non-project-specific improvements back to the original repositories when possible.
  4. Set up automated checks to alert when significant updates occur in the original repositories that might need to be incorporated into the forks.

Line range hint 1-385: Summary of go.mod changes and recommendations

This update to go.mod primarily involves downgrading several dependencies to resolve build issues. While this addresses the immediate problem, it introduces potential risks:

  1. Security: Downgraded versions might reintroduce resolved vulnerabilities.
  2. Performance: Some changes, like downgrading klauspost/compress, might affect performance.
  3. Maintenance: The use of forked dependencies requires ongoing synchronization with upstream repositories.

To ensure long-term stability and security:

  1. Implement a comprehensive test suite to verify that the downgrades haven't reintroduced bugs or vulnerabilities.
  2. Set up automated dependency scanning to alert on known security issues.
  3. Establish a clear timeline and process for re-upgrading these dependencies once the build issues are resolved.
  4. Regularly review and update forked dependencies to minimize divergence from upstream.

These steps will help balance the immediate need to fix build issues with the long-term health and security of the project.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 5d981aa and 9b401f2.

⛔ Files ignored due to path filters (1)
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (7)
  • .github/workflows/ci.yml (1 hunks)
  • .golangci.yml (0 hunks)
  • Makefile (3 hunks)
  • contrib/rpcimportable/test.sh (0 hunks)
  • go.mod (12 hunks)
  • scripts/gen-docs-zetacored.sh (1 hunks)
  • zetaclient/context/chain.go (1 hunks)
💤 Files with no reviewable changes (2)
  • .golangci.yml
  • contrib/rpcimportable/test.sh
🧰 Additional context used
📓 Path-based instructions (2)
scripts/gen-docs-zetacored.sh (1)

Pattern **/*.sh: Review the shell scripts, point out issues relative to security, performance, and maintainability.

zetaclient/context/chain.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

🔇 Additional comments (2)
Makefile (1)

Line range hint 1-499: Comprehensive testing required for build process changes

The changes in this Makefile appear to be reverting some previous modifications, potentially addressing the reported issues with the make command. While these simplifications may resolve the immediate build problems, they could also introduce new challenges or regressions in other areas of the build process.

To ensure the integrity of the build process across all use cases, please run the following comprehensive test suite:

Please review the output of these tests carefully to ensure that all build processes complete successfully and that no regressions have been introduced by these changes.

go.mod (1)

13-13: Verify security implications of dependency downgrades

Several major dependencies have been downgraded:

  • github.com/btcsuite/btcd/btcec/v2: v2.3.4 -> v2.3.2
  • github.com/cometbft/cometbft: v0.37.11 -> v0.37.4
  • github.com/cosmos/cosmos-sdk: v0.47.14 -> v0.47.10
  • github.com/fatih/color: v1.14.1 -> v1.13.0

While these downgrades align with the PR objective to resolve build issues, it's crucial to ensure that they don't reintroduce any known vulnerabilities or bugs that were fixed in the newer versions.

Please run the following script to check for any known vulnerabilities in the downgraded versions:

This script will search for security-related issues in the GitHub repositories of the downgraded dependencies. Review any returned URLs for potential security implications.

Also applies to: 19-19, 22-22, 28-28

✅ Verification successful

Dependency downgrades do not introduce known vulnerabilities

After verifying the downgraded dependencies, no known security vulnerabilities were found in the specified versions:

  • github.com/btcsuite/btcd/btcec/v2: v2.3.2
  • github.com/cometbft/cometbft: v0.37.4
  • github.com/cosmos/cosmos-sdk: v0.47.10
  • github.com/fatih/color: v1.13.0
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for known vulnerabilities in downgraded dependencies
echo "Checking for vulnerabilities in btcd/btcec v2.3.2"
gh api -X GET search/issues -f q="repo:btcsuite/btcd is:issue label:security merged:>2022-01-01" --jq '.items[].html_url'

echo "Checking for vulnerabilities in cometbft v0.37.4"
gh api -X GET search/issues -f q="repo:cometbft/cometbft is:issue label:security merged:>2022-01-01" --jq '.items[].html_url'

echo "Checking for vulnerabilities in cosmos-sdk v0.47.10"
gh api -X GET search/issues -f q="repo:cosmos/cosmos-sdk is:issue label:security merged:>2022-01-01" --jq '.items[].html_url'

echo "Checking for vulnerabilities in fatih/color v1.13.0"
gh api -X GET search/issues -f q="repo:fatih/color is:issue label:security merged:>2022-01-01" --jq '.items[].html_url'

Length of output: 943

scripts/gen-docs-zetacored.sh Show resolved Hide resolved
.github/workflows/ci.yml Show resolved Hide resolved
Makefile Show resolved Hide resolved
Copy link

codecov bot commented Oct 2, 2024

Codecov Report

Attention: Patch coverage is 0% with 1 line in your changes missing coverage. Please review.

Project coverage is 66.39%. Comparing base (5d981aa) to head (9b401f2).
Report is 1 commits behind head on develop.

Files with missing lines Patch % Lines
zetaclient/context/chain.go 0.00% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff            @@
##           develop    #2956   +/-   ##
========================================
  Coverage    66.39%   66.39%           
========================================
  Files          389      389           
  Lines        21758    21758           
========================================
  Hits         14447    14447           
  Misses        6584     6584           
  Partials       727      727           
Files with missing lines Coverage Δ
zetaclient/context/chain.go 76.82% <0.00%> (ø)

@lumtis lumtis added this pull request to the merge queue Oct 2, 2024
Merged via the queue into develop with commit f0ed61d Oct 2, 2024
38 of 40 checks passed
@lumtis lumtis deleted the revert-2934-upgrade-cosmossdk-cometbft branch October 2, 2024 14:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ci Changes to CI pipeline or github actions no-changelog Skip changelog CI check
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants