You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 KiB

Contributing

Thank you for your interest in contributing to Tendermint! Before contributing, it may be helpful to understand the goal of the project. The goal of Tendermint is to develop a BFT consensus engine robust enough to support permissionless value-carrying networks. While all contributions are welcome, contributors should bear this goal in mind in deciding if they should target the main Tendermint project or a potential fork. When targeting the main Tendermint project, the following process leads to the best chance of landing changes in master.

All work on the code base should be motivated by a Github Issue. Search is a good place start when looking for places to contribute. If you would like to work on an issue which already exists, please indicate so by leaving a comment.

All new contributions should start with a Github Issue. The issue helps capture the problem you're trying to solve and allows for early feedback. Once the issue is created the process can proceed in different directions depending on how well defined the problem and potential solution are. If the change is simple and well understood, maintainers will indicate their support with a heartfelt emoji.

If the issue would benefit from thorough discussion, maintainers may request that you create a Request For Comment. Discussion at the RFC stage will build collective understanding of the dimensions of the problems and help structure conversations around trade-offs.

When the problem is well understood but the solution leads to large structural changes to the code base, these changes should be proposed in the form of an Architectural Decision Record (ADR). The ADR will help build consensus on an overall strategy to ensure the code base maintains coherence in the larger context. If you are not comfortable with writing an ADR, you can open a less-formal issue and the maintainers will help you turn it into an ADR.

How to pick a number for the ADR?

Find the largest existing ADR number and bump it by 1.

When the problem as well as proposed solution are well understood, changes should start with a draft pull request against master. The draft signals that work is underway. When the work is ready for feedback, hitting "Ready for Review" will signal to the maintainers to take a look.

Contributing flow

Each stage of the process is aimed at creating feedback cycles which align contributors and maintainers to make sure:

  • Contributors don’t waste their time implementing/proposing features which won’t land in master.
  • Maintainers have the necessary context in order to support and review contributions.

Forking

Please note that Go requires code to live under absolute paths, which complicates forking. While my fork lives at https://github.com/ebuchman/tendermint, the code should never exist at $GOPATH/src/github.com/ebuchman/tendermint. Instead, we use git remote to add the fork as a new remote for the original repo, $GOPATH/src/github.com/tendermint/tendermint, and do all the work there.

For instance, to create a fork and work on a branch of it, I would:

  • Create the fork on GitHub, using the fork button.
  • Go to the original repo checked out locally (i.e. $GOPATH/src/github.com/tendermint/tendermint)
  • git remote rename origin upstream
  • git remote add origin git@github.com:ebuchman/basecoin.git

Now origin refers to my fork and upstream refers to the Tendermint version. So I can git push -u origin master to update my fork, and make pull requests to tendermint from there. Of course, replace ebuchman with your git handle.

To pull in updates from the origin repo, run

  • git fetch upstream
  • git rebase upstream/master (or whatever branch you want)

Dependencies

We use go modules to manage dependencies.

That said, the master branch of every Tendermint repository should just build with go get, which means they should be kept up-to-date with their dependencies so we can get away with telling people they can just go get our software.

Since some dependencies are not under our control, a third party may break our build, in which case we can fall back on go mod tidy. Even for dependencies under our control, go helps us to keep multiple repos in sync as they evolve. Anything with an executable, such as apps, tools, and the core, should use dep.

Run go list -u -m all to get a list of dependencies that may not be up-to-date.

When updating dependencies, please only update the particular dependencies you need. Instead of running go get -u=patch, which will update anything, specify exactly the dependency you want to update, eg. GO111MODULE=on go get -u github.com/tendermint/go-amino@master.

Protobuf

We use Protocol Buffers along with gogoproto to generate code for use across Tendermint Core.

For linting, checking breaking changes and generating proto stubs, we use buf. If you would like to run linting and check if the changes you have made are breaking then you will need to have docker running locally. Then the linting cmd will be make proto-lint and the breaking changes check will be make proto-check-breaking.

There are two ways to generate your proto stubs.

  1. Use Docker, pull an image that will generate your proto stubs with no need to install anything. make proto-gen-docker
  2. Run make proto-gen after installing buf and gogoproto, you can do this by running make protobuf.

Installation Instructions

To install protoc, download an appropriate release (https://github.com/protocolbuffers/protobuf) and then move the provided binaries into your PATH (follow instructions in README included with the download).

To install gogoproto, do the following:

go get github.com/gogo/protobuf/gogoproto
cd $GOPATH/pkg/mod/github.com/gogo/protobuf@v1.3.1 # or wherever go get installs things
make install

You should now be able to run make proto-gen from inside the root Tendermint directory to generate new files from proto files.

Visual Studio Code

If you are a VS Code user, you may want to add the following to your .vscode/settings.json:

{	
  "protoc": {	
    "options": [	
      "--proto_path=${workspaceRoot}/proto",	
      "--proto_path=${workspaceRoot}/third_party/proto"	
    ]	
  }	
}

Changelog

Every fix, improvement, feature, or breaking change should be made in a pull-request that includes an update to the CHANGELOG_PENDING.md file.

Changelog entries should be formatted as follows:

- [module] \#xxx Some description about the change (@contributor)

Here, module is the part of the code that changed (typically a top-level Go package), xxx is the pull-request number, and contributor is the author/s of the change.

It's also acceptable for xxx to refer to the relevant issue number, but pull-request numbers are preferred. Note this means pull-requests should be opened first so the changelog can then be updated with the pull-request's number. There is no need to include the full link, as this will be added automatically during release. But please include the backslash and pound, eg. \#2313.

Changelog entries should be ordered alphabetically according to the module, and numerically according to the pull-request number.

Changes with multiple classifications should be doubly included (eg. a bug fix that is also a breaking change should be recorded under both).

Breaking changes are further subdivided according to the APIs/users they impact. Any change that effects multiple APIs/users should be recorded multiply - for instance, a change to the Blockchain Protocol that removes a field from the header should also be recorded under CLI/RPC/Config since the field will be removed from the header in RPC responses as well.

Branching Model and Release

The main development branch is master.

Every release is maintained in a release branch named vX.Y.Z.

Pending minor releases have long-lived release candidate ("RC") branches. Minor release changes should be merged to these long-lived RC branches at the same time that the changes are merged to master.

Note all pull requests should be squash merged except for merging to a release branch (named vX.Y). This keeps the commit history clean and makes it easy to reference the pull request where a change was introduced.

Development Procedure

The latest state of development is on master, which must never fail make test. Never force push master, unless fixing broken git history (which we rarely do anyways).

To begin contributing, create a development branch either on github.com/tendermint/tendermint, or your fork (using git remote add origin).

Make changes, and before submitting a pull request, update the CHANGELOG_PENDING.md to record your change. Also, run either git rebase or git merge on top of the latest master. (Since pull requests are squash-merged, either is fine!)

Update the UPGRADING.md if the change you've made is breaking and the instructions should be in place for a user on how he/she can upgrade it's software (ABCI application, Tendermint-based blockchain, light client, wallet).

Once you have submitted a pull request label the pull request with either R:minor, if the change should be included in the next minor release, or R:major, if the change is meant for a major release.

Sometimes (often!) pull requests get out-of-date with master, as other people merge different pull requests to master. It is our convention that pull request authors are responsible for updating their branches with master. (This also means that you shouldn't update someone else's branch for them; even if it seems like you're doing them a favor, you may be interfering with their git flow in some way!)

Merging Pull Requests

It is also our convention that authors merge their own pull requests, when possible. External contributors may not have the necessary permissions to do this, in which case, a member of the core team will merge the pull request once it's been approved.

Before merging a pull request:

  • Ensure pull branch is up-to-date with a recent master (GitHub won't let you merge without this!)
  • Run make test to ensure that all tests pass
  • Squash merge pull request

Pull Requests for Minor Releases

If your change should be included in a minor release, please also open a PR against the long-lived minor release candidate branch (e.g., rc1/v0.33.5) immediately after your change has been merged to master.

You can do this by cherry-picking your commit off master:

$ git checkout rc1/v0.33.5
$ git checkout -b {new branch name}
$ git cherry-pick {commit SHA from master}
# may need to fix conflicts, and then use git add and git cherry-pick --continue
$ git push origin {new branch name}

After this, you can open a PR. Please note in the PR body if there were merge conflicts so that reviewers can be sure to take a thorough look.

Git Commit Style

We follow the Go style guide on commit messages. Write concise commits that start with the package name and have a description that finishes the sentence "This change modifies Tendermint to...". For example,

cmd/debug: execute p.Signal only when p is not nil

[potentially longer description in the body]

Fixes #nnnn

Each PR should have one commit once it lands on master; this can be accomplished by using the "squash and merge" button on Github. Be sure to edit your commit message, though!

Release Procedure

Major Release

This major release process assumes that this release was preceded by release candidates. If there were no release candidates, and you'd like to cut a major release directly from master, see below.

  1. Start on the latest RC branch (RCx/vX.X.0).
  2. Run integration tests.
  3. Branch off of the RC branch (git checkout -b release-prep) and prepare the release:
    • "Squash" changes from the changelog entries for the RCs into a single entry, and add all changes included in CHANGELOG_PENDING.md. (Squashing includes both combining all entries, as well as removing or simplifying any intra-RC changes. It may also help to alphabetize the entries by package name.)
    • Run python ./scripts/linkify_changelog.py CHANGELOG.md to add links for all PRs
    • Ensure that UPGRADING.md is up-to-date and includes notes on any breaking changes or other upgrading flows.
    • Bump P2P and block protocol versions in version.go, if necessary
    • Bump ABCI protocol version in version.go, if necessary
    • Add any release notes you would like to be added to the body of the release to release_notes.md.
  4. Open a PR with these changes against the RC branch (RCx/vX.X.0).
  5. Once these changes are on the RC branch, branch off of the RC branch again to create a release branch:
    • git checkout RCx/vX.X.0
    • git checkout -b release/vX.X.0
  6. Push a tag with prepared release details. This will trigger the actual release vX.X.0.
    • git tag -a vX.X.0 -m 'Release vX.X.0'
    • git push origin vX.X.0
  7. Make sure that master is updated with the latest CHANGELOG.md, CHANGELOG_PENDING.md, and UPGRADING.md.
  8. Create the long-lived minor release branch RC0/vX.X.1 for the next point release on this new major release series.
Major Release (from master)
  1. Start on master
  2. Run integration tests (see test_integrations in Makefile)
  3. Prepare release in a pull request against master (to be squash merged):
    • Copy CHANGELOG_PENDING.md to top of CHANGELOG.md; if this release had release candidates, squash all the RC updates into one
    • Run python ./scripts/linkify_changelog.py CHANGELOG.md to add links for all issues
    • Run bash ./scripts/authors.sh to get a list of authors since the latest release, and add the github aliases of external contributors to the top of the changelog. To lookup an alias from an email, try bash ./scripts/authors.sh <email>
    • Reset the CHANGELOG_PENDING.md
    • Bump P2P and block protocol versions in version.go, if necessary
    • Bump ABCI protocol version in version.go, if necessary
    • Make sure all significant breaking changes are covered in UPGRADING.md
    • Add any release notes you would like to be added to the body of the release to release_notes.md.
  4. Push a tag with prepared release details (this will trigger the release vX.X.0)
    • git tag -a vX.X.x -m 'Release vX.X.x'
    • git push origin vX.X.x
  5. Update the CHANGELOG.md file on master with the releases changelog.
  6. Delete any RC branches and tags for this release (if applicable)

Minor Release (Point Releases)

Minor releases are done differently from major releases: They are built off of long-lived backport branches, rather than from master. Each release "line" (e.g. 0.34 or 0.33) has its own long-lived backport branch, and the backport branches have names like v0.34.x or v0.33.x (literally, x; it is not a placeholder in this case).

As non-breaking changes land on master, they should also be backported (cherry-picked) to these backport branches.

Minor releases don't have release candidates by default, although any tricky changes may merit a release candidate.

To create a minor release:

  1. Checkout the long-lived backport branch: git checkout vX.X.x
  2. Run integration tests: make test_integrations
  3. Check out a new branch and prepare the release:
    • Copy CHANGELOG_PENDING.md to top of CHANGELOG.md
    • Run python ./scripts/linkify_changelog.py CHANGELOG.md to add links for all issues
    • Run bash ./scripts/authors.sh to get a list of authors since the latest release, and add the GitHub aliases of external contributors to the top of the CHANGELOG. To lookup an alias from an email, try bash ./scripts/authors.sh <email>
    • Reset the CHANGELOG_PENDING.md
    • Bump the ABCI version number, if necessary. (Note that ABCI follows semver, and that ABCI versions are the only versions which can change during minor releases, and only field additions are valid minor changes.)
    • Add any release notes you would like to be added to the body of the release to release_notes.md.
  4. Open a PR with these changes that will land them back on vX.X.x
  5. Once this change has landed on the backport branch, make sure to pull it locally, then push a tag.
    • git tag -a vX.X.x -m 'Release vX.X.x'
    • git push origin vX.X.x
  6. Create a pull request back to master with the CHANGELOG & version changes from the latest release.
    • Remove all R:minor labels from the pull requests that were included in the release.
    • Do not merge the backport branch into master.

Release Candidates

Before creating an official release, especially a major release, we may want to create a release candidate (RC) for our friends and partners to test out. We use git tags to create RCs, and we build them off of RC branches. RC branches typically have names formatted like RCX/vX.X.X (or, concretely, RC0/v0.34.0), while the tags themselves follow the "standard" release naming conventions, with -rcX at the end (vX.X.X-rcX).

(Note that branches and tags cannot have the same names, so it's important that these branches have distinct names from the tags/release names.)

  1. Start from the RC branch (e.g. RC0/v0.34.0).
  2. Create the new tag, specifying a name and a tag "message":
    git tag -a v0.34.0-rc0 -m "Release Candidate v0.34.0-rc0
  3. Push the tag back up to origin:
    git push origin v0.34.0-rc4
    Now the tag should be available on the repo's releases page.
  4. Create a new release candidate branch for any possible updates to the RC:
    git checkout -b RC1/v0.34.0; git push origin RC1/v0.34.0

Testing

All repos should be hooked up to CircleCI.

If they have .go files in the root directory, they will be automatically tested by circle using go test -v -race ./.... If not, they will need a circle.yml. Ideally, every repo has a Makefile that defines make test and includes its continuous integration status using a badge in the README.md.

RPC Testing

If you contribute to the RPC endpoints it's important to document your changes in the Openapi file To test your changes you should install nodejs and run:

npm i -g dredd
make build-linux build-contract-tests-hooks
make contract-tests

This command will popup a network and check every endpoint against what has been documented