github.com/noirx94/tendermintmp@v0.0.1/CONTRIBUTING.md (about)

     1  # Contributing
     2  
     3  Thank you for your interest in contributing to Tendermint! Before
     4  contributing, it may be helpful to understand the goal of the project. The goal
     5  of Tendermint is to develop a BFT consensus engine robust enough to
     6  support permissionless value-carrying networks. While all contributions are
     7  welcome, contributors should bear this goal in mind in deciding if they should
     8  target the main Tendermint project or a potential fork. When targeting the
     9  main Tendermint project, the following process leads to the best chance of
    10  landing changes in master.
    11  
    12  All work on the code base should be motivated by a [Github
    13  Issue](https://github.com/tendermint/tendermint/issues).
    14  [Search](https://github.com/tendermint/tendermint/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)
    15  is a good place start when looking for places to contribute. If you
    16  would like to work on an issue which already exists, please indicate so
    17  by leaving a comment.
    18  
    19  All new contributions should start with a [Github
    20  Issue](https://github.com/tendermint/tendermint/issues/new/choose). The
    21  issue helps capture the problem you're trying to solve and allows for
    22  early feedback. Once the issue is created the process can proceed in different
    23  directions depending on how well defined the problem and potential
    24  solution are. If the change is simple and well understood, maintainers
    25  will indicate their support with a heartfelt emoji.
    26  
    27  If the issue would benefit from thorough discussion, maintainers may
    28  request that you create a [Request For
    29  Comment](https://github.com/tendermint/spec/tree/master/rfc). Discussion
    30  at the RFC stage will build collective understanding of the dimensions
    31  of the problems and help structure conversations around trade-offs.
    32  
    33  When the problem is well understood but the solution leads to large structural
    34  changes to the code base, these changes should be proposed in the form of an
    35  [Architectural Decision Record (ADR)](./docs/architecture/). The ADR will help
    36  build consensus on an overall strategy to ensure the code base maintains
    37  coherence in the larger context. If you are not comfortable with writing an
    38  ADR, you can open a less-formal issue and the maintainers will help you turn it
    39  into an ADR.
    40  
    41  > How to pick a number for the ADR?
    42  
    43  Find the largest existing ADR number and bump it by 1.
    44  
    45  When the problem as well as proposed solution are well understood,
    46  changes should start with a [draft
    47  pull request](https://github.blog/2019-02-14-introducing-draft-pull-requests/)
    48  against master. The draft signals that work is underway. When the work
    49  is ready for feedback, hitting "Ready for Review" will signal to the
    50  maintainers to take a look.
    51  
    52  ![Contributing flow](./docs/imgs/contributing.png)
    53  
    54  Each stage of the process is aimed at creating feedback cycles which align contributors and maintainers to make sure:
    55  
    56  - Contributors don’t waste their time implementing/proposing features which won’t land in master.
    57  - Maintainers have the necessary context in order to support and review contributions.
    58  
    59  ## Forking
    60  
    61  Please note that Go requires code to live under absolute paths, which complicates forking.
    62  While my fork lives at `https://github.com/ebuchman/tendermint`,
    63  the code should never exist at `$GOPATH/src/github.com/ebuchman/tendermint`.
    64  Instead, we use `git remote` to add the fork as a new remote for the original repo,
    65  `$GOPATH/src/github.com/tendermint/tendermint`, and do all the work there.
    66  
    67  For instance, to create a fork and work on a branch of it, I would:
    68  
    69  - Create the fork on GitHub, using the fork button.
    70  - Go to the original repo checked out locally (i.e. `$GOPATH/src/github.com/tendermint/tendermint`)
    71  - `git remote rename origin upstream`
    72  - `git remote add origin git@github.com:ebuchman/basecoin.git`
    73  
    74  Now `origin` refers to my fork and `upstream` refers to the Tendermint version.
    75  So I can `git push -u origin master` to update my fork, and make pull requests to tendermint from there.
    76  Of course, replace `ebuchman` with your git handle.
    77  
    78  To pull in updates from the origin repo, run
    79  
    80  - `git fetch upstream`
    81  - `git rebase upstream/master` (or whatever branch you want)
    82  
    83  ## Dependencies
    84  
    85  We use [go modules](https://github.com/golang/go/wiki/Modules) to manage dependencies.
    86  
    87  That said, the master branch of every Tendermint repository should just build
    88  with `go get`, which means they should be kept up-to-date with their
    89  dependencies so we can get away with telling people they can just `go get` our
    90  software.
    91  
    92  Since some dependencies are not under our control, a third party may break our
    93  build, in which case we can fall back on `go mod tidy`. Even for dependencies under our control, go helps us to
    94  keep multiple repos in sync as they evolve. Anything with an executable, such
    95  as apps, tools, and the core, should use dep.
    96  
    97  Run `go list -u -m all` to get a list of dependencies that may not be
    98  up-to-date.
    99  
   100  When updating dependencies, please only update the particular dependencies you
   101  need. Instead of running `go get -u=patch`, which will update anything,
   102  specify exactly the dependency you want to update, eg.
   103  `GO111MODULE=on go get -u github.com/tendermint/go-amino@master`.
   104  
   105  ## Protobuf
   106  
   107  We use [Protocol Buffers](https://developers.google.com/protocol-buffers) along with [gogoproto](https://github.com/gogo/protobuf) to generate code for use across Tendermint Core.
   108  
   109  For linting and checking breaking changes, we use [buf](https://buf.build/). 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`.
   110  
   111  We use [Docker](https://www.docker.com/) to generate the protobuf stubs. To generate the stubs yourself, make sure docker is running then run `make proto-gen`.
   112  
   113  ## Vagrant
   114  
   115  If you are a [Vagrant](https://www.vagrantup.com/) user, you can get started
   116  hacking Tendermint with the commands below.
   117  
   118  NOTE: In case you installed Vagrant in 2017, you might need to run
   119  `vagrant box update` to upgrade to the latest `ubuntu/xenial64`.
   120  
   121  ```sh
   122  vagrant up
   123  vagrant ssh
   124  make test
   125  ```
   126  
   127  ## Changelog
   128  
   129  Every fix, improvement, feature, or breaking change should be made in a
   130  pull-request that includes an update to the `CHANGELOG_PENDING.md` file.
   131  
   132  Changelog entries should be formatted as follows:
   133  
   134  ```md
   135  - [module] \#xxx Some description about the change (@contributor)
   136  ```
   137  
   138  Here, `module` is the part of the code that changed (typically a
   139  top-level Go package), `xxx` is the pull-request number, and `contributor`
   140  is the author/s of the change.
   141  
   142  It's also acceptable for `xxx` to refer to the relevant issue number, but pull-request
   143  numbers are preferred.
   144  Note this means pull-requests should be opened first so the changelog can then
   145  be updated with the pull-request's number.
   146  There is no need to include the full link, as this will be added
   147  automatically during release. But please include the backslash and pound, eg. `\#2313`.
   148  
   149  Changelog entries should be ordered alphabetically according to the
   150  `module`, and numerically according to the pull-request number.
   151  
   152  Changes with multiple classifications should be doubly included (eg. a bug fix
   153  that is also a breaking change should be recorded under both).
   154  
   155  Breaking changes are further subdivided according to the APIs/users they impact.
   156  Any change that effects multiple APIs/users should be recorded multiply - for
   157  instance, a change to the `Blockchain Protocol` that removes a field from the
   158  header should also be recorded under `CLI/RPC/Config` since the field will be
   159  removed from the header in RPC responses as well.
   160  
   161  ## Branching Model and Release
   162  
   163  The main development branch is master.
   164  
   165  Every release is maintained in a release branch named `vX.Y.Z`.
   166  
   167  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.
   168  
   169  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
   170  easy to reference the pull request where a change was introduced.
   171  
   172  ### Development Procedure
   173  
   174  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).
   175  
   176  To begin contributing, create a development branch either on `github.com/tendermint/tendermint`, or your fork (using `git remote add origin`).
   177  
   178  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!)
   179  
   180  Update the `UPGRADING.md` if the change you've made is breaking and the
   181  instructions should be in place for a user on how he/she can upgrade it's
   182  software (ABCI application, Tendermint-based blockchain, light client, wallet).
   183  
   184  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.
   185  
   186  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!)
   187  
   188  #### Merging Pull Requests
   189  
   190  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.
   191  
   192  Before merging a pull request:
   193  
   194  - Ensure pull branch is up-to-date with a recent `master` (GitHub won't let you merge without this!)
   195  - Run `make test` to ensure that all tests pass
   196  - [Squash](https://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git) merge pull request
   197  
   198  #### Pull Requests for Minor Releases
   199  
   200  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_.
   201  
   202  You can do this by cherry-picking your commit off master:
   203  
   204  ```sh
   205  $ git checkout rc1/v0.33.5
   206  $ git checkout -b {new branch name}
   207  $ git cherry-pick {commit SHA from master}
   208  # may need to fix conflicts, and then use git add and git cherry-pick --continue
   209  $ git push origin {new branch name}
   210  ```
   211  
   212  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.
   213  
   214  ### Git Commit Style
   215  
   216  We follow the [Go style guide on commit messages](https://tip.golang.org/doc/contribute.html#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,
   217  
   218  ```sh
   219  cmd/debug: execute p.Signal only when p is not nil
   220  
   221  [potentially longer description in the body]
   222  
   223  Fixes #nnnn
   224  ```
   225  
   226  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!
   227  
   228  ### Release Procedure
   229  
   230  #### Major Release
   231  
   232  1. Start on `master`
   233  2. Run integration tests (see `test_integrations` in Makefile)
   234  3. Prepare release in a pull request against `master` (to be squash merged):
   235     - Copy `CHANGELOG_PENDING.md` to top of `CHANGELOG.md`; if this release
   236        had release candidates, squash all the RC updates into one
   237     - Run `python ./scripts/linkify_changelog.py CHANGELOG.md` to add links for
   238       all issues
   239     - run `bash ./scripts/authors.sh` to get a list of authors since the latest
   240       release, and add the github aliases of external contributors to the top of
   241       the changelog. To lookup an alias from an email, try `bash ./scripts/authors.sh <email>`
   242     - Reset the `CHANGELOG_PENDING.md`
   243     - Bump TMVersionDefault version in  `version.go`
   244     - Bump P2P and block protocol versions in  `version.go`, if necessary
   245     - Bump ABCI protocol version in `version.go`, if necessary
   246     - Make sure all significant breaking changes are covered in `UPGRADING.md`
   247     - Add any release notes you would like to be added to the body of the release to `release_notes.md`.
   248  4. Push a tag with prepared release details (this will trigger the release `vX.X.0`)
   249     - `git tag -a vX.X.x -m 'Release vX.X.x'`
   250     - `git push origin vX.X.x`
   251  5. Update the changelog.md file on master with the releases changelog.
   252  6. Delete any RC branches and tags for this release (if applicable)
   253  
   254  #### Minor Release
   255  
   256  Minor releases are done differently from major releases: They are built off of long-lived release candidate branches, rather than from master.
   257  
   258  1. Checkout the long-lived release candidate branch: `git checkout rcX/vX.X.X`
   259  2. Run integration tests: `make test_integrations`
   260  3. Prepare the release:
   261     - copy `CHANGELOG_PENDING.md` to top of `CHANGELOG.md`
   262     - run `python ./scripts/linkify_changelog.py CHANGELOG.md` to add links for all issues
   263     - 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>`
   264     - reset the `CHANGELOG_PENDING.md`
   265     - bump P2P and block protocol versions in  `version.go`, if necessary
   266     - bump ABCI protocol version in `version.go`, if necessary
   267     - make sure all significant breaking changes are covered in `UPGRADING.md`
   268     - Add any release notes you would like to be added to the body of the release to `release_notes.md`.
   269  4. Create a release branch `release/vX.X.x` off the release candidate branch:
   270     - `git checkout -b release/vX.X.x`
   271     - `git push -u origin release/vX.X.x`
   272     - Note that all branches prefixed with `release` are protected once pushed. You will need admin help to make any changes to the branch.
   273  5. Once the release branch has been approved, make sure to pull it locally, then push a tag.
   274     - `git tag -a vX.X.x -m 'Release vX.X.x'`
   275     - `git push origin vX.X.x`
   276  6. Create a pull request back to master with the CHANGELOG & version changes from the latest release.
   277     - Remove all `R:minor` labels from the pull requests that were included in the release.
   278     - Do not merge the release branch into master.
   279  7. Delete the former long lived release candidate branch once the release has been made.
   280  8. Create a new release candidate branch to be used for the next release.
   281  
   282  #### Backport Release
   283  
   284  1. start from the existing release branch you want to backport changes to (e.g. v0.30)
   285     Branch to a release/vX.X.X branch locally (e.g. release/v0.30.7)
   286  2. Cherry pick the commit(s) that contain the changes you want to backport (usually these commits are from squash-merged PRs which were already reviewed)
   287  3. Follow steps 2 and 3 from [Major Release](#major-release)
   288  4. Push changes to release/vX.X.X branch
   289  5. Open a PR against the existing vX.X branch
   290  
   291  #### Release Candidates
   292  
   293  Before creating an official release, especially a major release, we may want to create a
   294  release candidate (RC) for our friends and partners to test out. We use git tags to
   295  create RCs, and we build them off of RC branches. RC branches typically have names formatted
   296  like `RCX/vX.X.X` (or, concretely, `RC0/v0.34.0`), while the tags themselves follow
   297  the "standard" release naming conventions, with `-rcX` at the end (`vX.X.X-rcX`).
   298  
   299  (Note that branches and tags _cannot_ have the same names, so it's important that these branches
   300  have distinct names from the tags/release names.)
   301  
   302  1. Start from the RC branch (e.g. `RC0/v0.34.0`).
   303  2. Create the new tag, specifying a name and a tag "message":  
   304     `git tag -a v0.34.0-rc0 -m "Release Candidate v0.34.0-rc0` 
   305  3. Push the tag back up to origin:  
   306     `git push origin v0.34.0-rc4`  
   307     Now the tag should be available on the repo's releases page. 
   308  4. Create a new release candidate branch for any possible updates to the RC:  
   309     `git checkout -b RC1/v0.34.0; git push origin RC1/v0.34.0`
   310  
   311  ## Testing
   312  
   313  ### Unit tests
   314  
   315  Unit tests are located in `_test.go` files as directed by [the Go testing
   316  package](https://golang.org/pkg/testing/). If you're adding or removing a
   317  function, please check there's a `TestType_Method` test for it.
   318  
   319  Run: `make test`
   320  
   321  ### Integration tests
   322  
   323  Integration tests are also located in `_test.go` files. What differentiates
   324  them is a more complicated setup, which usually involves setting up two or more
   325  components.
   326  
   327  Run: `make test_integrations`
   328  
   329  ### End-to-end tests
   330  
   331  End-to-end tests are used to verify a fully integrated Tendermint network.
   332  
   333  See [README](./test/e2e/README.md) for details.
   334  
   335  Run:
   336  
   337  ```sh
   338  cd test/e2e && \
   339    make && \
   340    ./build/runner -f networks/ci.toml
   341  ```
   342  
   343  ### Maverick
   344  
   345  **If you're changing the code in `consensus` package, please make sure to
   346  replicate all the changes in `./test/maverick/consensus`**. Maverick is a
   347  byzantine node used to assert that the validator gets punished for malicious
   348  behavior.
   349  
   350  See [README](./test/maverick/README.md) for details.
   351  
   352  ### Model-based tests (ADVANCED)
   353  
   354  *NOTE: if you're just submitting your first PR, you won't need to touch these
   355  most probably (99.9%)*.
   356  
   357  For components, that have been [formally
   358  verified](https://en.wikipedia.org/wiki/Formal_verification) using
   359  [TLA+](https://en.wikipedia.org/wiki/TLA%2B), it may be possible to generate
   360  tests using a combination of the [Apalache Model
   361  Checker](https://apalache.informal.systems/) and [tendermint-rs testgen
   362  util](https://github.com/informalsystems/tendermint-rs/tree/master/testgen).
   363  
   364  Now, I know there's a lot to take in. If you want to learn more, check out [
   365  this video](https://www.youtube.com/watch?v=aveoIMphzW8) by Andrey Kupriyanov
   366  & Igor Konnov.
   367  
   368  At the moment, we have model-based tests for the light client, located in the
   369  `./light/mbt` directory.
   370  
   371  Run: `cd light/mbt && go test`
   372  
   373  ### Fuzz tests (ADVANCED)
   374  
   375  *NOTE: if you're just submitting your first PR, you won't need to touch these
   376  most probably (99.9%)*.
   377  
   378  [Fuzz tests](https://en.wikipedia.org/wiki/Fuzzing) can be found inside the
   379  `./test/fuzz` directory. See [README.md](./test/fuzz/README.md) for details.
   380  
   381  Run: `cd test/fuzz && make fuzz-{PACKAGE-COMPONENT}`
   382  
   383  ### Jepsen tests (ADVANCED)
   384  
   385  *NOTE: if you're just submitting your first PR, you won't need to touch these
   386  most probably (99.9%)*.
   387  
   388  [Jepsen](http://jepsen.io/) tests are used to verify the
   389  [linearizability](https://jepsen.io/consistency/models/linearizable) property
   390  of the Tendermint consensus. They are located in a separate repository
   391  -> <https://github.com/tendermint/jepsen>. Please refer to its README for more
   392  information.
   393  
   394  ### RPC Testing
   395  
   396  If you contribute to the RPC endpoints it's important to document your changes in the [Openapi file](./rpc/openapi/openapi.yaml)
   397  To test your changes you should install `nodejs` and run:
   398  
   399  ```bash
   400  npm i -g dredd
   401  make build-linux build-contract-tests-hooks
   402  make contract-tests
   403  ```
   404  
   405  **WARNING: these are currently broken due to <https://github.com/apiaryio/dredd>
   406  not supporting complete OpenAPI 3**.
   407  
   408  This command will popup a network and check every endpoint against what has
   409  been documented.