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.

343 lines
14 KiB

6 years ago
6 years ago
6 years ago
proto: update proto generation to use buf (#7975) * Hard-code go_package option for .proto files Signed-off-by: Thane Thomson <connect@thanethomson.com> * Automatically relocate generated ABCI types after proto-gen Signed-off-by: Thane Thomson <connect@thanethomson.com> * Skip building gogoproto (i.e. only build our types) Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unnecessary proto generation scripts Signed-off-by: Thane Thomson <connect@thanethomson.com> * Upgrade buf config from v1beta1 to v1 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add simple proto generation script Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace buf-based protobuf generation with simple protoc-based approach Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove custom buf-based Docker image generation config and Dockerfile Signed-off-by: Thane Thomson <connect@thanethomson.com> * Adopt Cosmos SDK's approach to Protobuf linting and breakage checking in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * Suppress command echo when running proto checks Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix proto-check workflow YAML indentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore proto-format target Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace custom BASH script with make equivalent Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove proto linting/breaking changes CI checks after discussion today Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove dangling reference to CI workflow that no longer exists Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update contributing guidelines relating to protos Signed-off-by: Thane Thomson <connect@thanethomson.com> * Use buf instead for generating protos Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unused buf config for gogoprotobuf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add reminder for if we migrate fully to buf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore protopackage script for #8065 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix permissions on protopackage script Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update contributing guidelines to show building of protos using buf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix breaking changes check and add disclaimer Signed-off-by: Thane Thomson <connect@thanethomson.com> * Expand on contributing guidelines for clarity Signed-off-by: Thane Thomson <connect@thanethomson.com> * Re-remove old proto workflows Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add buf-based proto linting workflow in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * Superficially reorder proto targets Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix proto lints Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix GA workflow YAML indentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Temporarily use forked version of mlc Use forked version of markdown-link-check until https://github.com/gaurav-nelson/github-action-markdown-link-check/pull/126 lands. Signed-off-by: Thane Thomson <connect@thanethomson.com> * Temporarily disable markdown link checker Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove gogo protos - superseded by version from buf registry Signed-off-by: Thane Thomson <connect@thanethomson.com>
2 years ago
proto: update proto generation to use buf (#7975) * Hard-code go_package option for .proto files Signed-off-by: Thane Thomson <connect@thanethomson.com> * Automatically relocate generated ABCI types after proto-gen Signed-off-by: Thane Thomson <connect@thanethomson.com> * Skip building gogoproto (i.e. only build our types) Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unnecessary proto generation scripts Signed-off-by: Thane Thomson <connect@thanethomson.com> * Upgrade buf config from v1beta1 to v1 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add simple proto generation script Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace buf-based protobuf generation with simple protoc-based approach Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove custom buf-based Docker image generation config and Dockerfile Signed-off-by: Thane Thomson <connect@thanethomson.com> * Adopt Cosmos SDK's approach to Protobuf linting and breakage checking in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * Suppress command echo when running proto checks Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix proto-check workflow YAML indentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore proto-format target Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace custom BASH script with make equivalent Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove proto linting/breaking changes CI checks after discussion today Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove dangling reference to CI workflow that no longer exists Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update contributing guidelines relating to protos Signed-off-by: Thane Thomson <connect@thanethomson.com> * Use buf instead for generating protos Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unused buf config for gogoprotobuf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add reminder for if we migrate fully to buf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore protopackage script for #8065 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix permissions on protopackage script Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update contributing guidelines to show building of protos using buf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix breaking changes check and add disclaimer Signed-off-by: Thane Thomson <connect@thanethomson.com> * Expand on contributing guidelines for clarity Signed-off-by: Thane Thomson <connect@thanethomson.com> * Re-remove old proto workflows Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add buf-based proto linting workflow in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * Superficially reorder proto targets Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix proto lints Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix GA workflow YAML indentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Temporarily use forked version of mlc Use forked version of markdown-link-check until https://github.com/gaurav-nelson/github-action-markdown-link-check/pull/126 lands. Signed-off-by: Thane Thomson <connect@thanethomson.com> * Temporarily disable markdown link checker Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove gogo protos - superseded by version from buf registry Signed-off-by: Thane Thomson <connect@thanethomson.com>
2 years ago
proto: update proto generation to use buf (#7975) * Hard-code go_package option for .proto files Signed-off-by: Thane Thomson <connect@thanethomson.com> * Automatically relocate generated ABCI types after proto-gen Signed-off-by: Thane Thomson <connect@thanethomson.com> * Skip building gogoproto (i.e. only build our types) Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unnecessary proto generation scripts Signed-off-by: Thane Thomson <connect@thanethomson.com> * Upgrade buf config from v1beta1 to v1 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add simple proto generation script Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace buf-based protobuf generation with simple protoc-based approach Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove custom buf-based Docker image generation config and Dockerfile Signed-off-by: Thane Thomson <connect@thanethomson.com> * Adopt Cosmos SDK's approach to Protobuf linting and breakage checking in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * Suppress command echo when running proto checks Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix proto-check workflow YAML indentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore proto-format target Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace custom BASH script with make equivalent Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove proto linting/breaking changes CI checks after discussion today Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove dangling reference to CI workflow that no longer exists Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update contributing guidelines relating to protos Signed-off-by: Thane Thomson <connect@thanethomson.com> * Use buf instead for generating protos Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove unused buf config for gogoprotobuf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add reminder for if we migrate fully to buf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Restore protopackage script for #8065 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix permissions on protopackage script Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update contributing guidelines to show building of protos using buf Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix breaking changes check and add disclaimer Signed-off-by: Thane Thomson <connect@thanethomson.com> * Expand on contributing guidelines for clarity Signed-off-by: Thane Thomson <connect@thanethomson.com> * Re-remove old proto workflows Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add buf-based proto linting workflow in CI Signed-off-by: Thane Thomson <connect@thanethomson.com> * Superficially reorder proto targets Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix proto lints Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix GA workflow YAML indentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Temporarily use forked version of mlc Use forked version of markdown-link-check until https://github.com/gaurav-nelson/github-action-markdown-link-check/pull/126 lands. Signed-off-by: Thane Thomson <connect@thanethomson.com> * Temporarily disable markdown link checker Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove gogo protos - superseded by version from buf registry Signed-off-by: Thane Thomson <connect@thanethomson.com>
2 years ago
6 years ago
[RPC] Static swagger (#3880) * manually swagging Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * three definitions with polymorphism Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * added blockchain and block Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * low quality generation, commit, block_response and validators Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * genesis and consensus states endpoints Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * fix indentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * consensus parameters Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * fix indentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add height to consensus parameters endpoint Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * unconfirmed_txs and num_unconfirmed_txs Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add missing query parameter Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add ABCI queries Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * added index document for swagger documentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add missing routes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * contract tests added on CCI Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * contract tests job should be in the test suite Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * simplify requirements to test Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * typo Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * build is a prerequisite to start localnet Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * reduce nodejs size, move goodman to get_tools, add docs, fix comments Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Update scripts/get_tools.sh That's cleaner, thanks! Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * xz not supported by cci image, let's keep it simple Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * REMOVE-indirect debug of CCI paths Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment, volume is empty but binary has been produced Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment, volume is empty but binary has been produced Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment going on Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * locally works, CCI have difficulties with second layaer containers volumes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * restore experiment, use machine instead of docker for contract tests Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * simplify a bit Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * rollback on machine golang Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Document the changes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Changelog Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * comments Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com>
5 years ago
[RPC] Static swagger (#3880) * manually swagging Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * three definitions with polymorphism Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * added blockchain and block Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * low quality generation, commit, block_response and validators Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * genesis and consensus states endpoints Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * fix indentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * consensus parameters Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * fix indentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add height to consensus parameters endpoint Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * unconfirmed_txs and num_unconfirmed_txs Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add missing query parameter Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add ABCI queries Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * added index document for swagger documentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add missing routes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * contract tests added on CCI Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * contract tests job should be in the test suite Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * simplify requirements to test Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * typo Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * build is a prerequisite to start localnet Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * reduce nodejs size, move goodman to get_tools, add docs, fix comments Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Update scripts/get_tools.sh That's cleaner, thanks! Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * xz not supported by cci image, let's keep it simple Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * REMOVE-indirect debug of CCI paths Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment, volume is empty but binary has been produced Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment, volume is empty but binary has been produced Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment going on Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * locally works, CCI have difficulties with second layaer containers volumes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * restore experiment, use machine instead of docker for contract tests Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * simplify a bit Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * rollback on machine golang Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Document the changes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Changelog Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * comments Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com>
5 years ago
[RPC] Static swagger (#3880) * manually swagging Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * three definitions with polymorphism Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * added blockchain and block Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * low quality generation, commit, block_response and validators Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * genesis and consensus states endpoints Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * fix indentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * consensus parameters Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * fix indentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add height to consensus parameters endpoint Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * unconfirmed_txs and num_unconfirmed_txs Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add missing query parameter Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add ABCI queries Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * added index document for swagger documentation Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * add missing routes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * contract tests added on CCI Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * contract tests job should be in the test suite Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * simplify requirements to test Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * typo Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * build is a prerequisite to start localnet Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * reduce nodejs size, move goodman to get_tools, add docs, fix comments Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Update scripts/get_tools.sh That's cleaner, thanks! Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * xz not supported by cci image, let's keep it simple Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * REMOVE-indirect debug of CCI paths Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment, volume is empty but binary has been produced Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment, volume is empty but binary has been produced Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * dirty experiment going on Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * locally works, CCI have difficulties with second layaer containers volumes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * restore experiment, use machine instead of docker for contract tests Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * simplify a bit Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * rollback on machine golang Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Document the changes Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * Changelog Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com> * comments Signed-off-by: Karoly Albert Szabo <szabo.karoly.a@gmail.com>
5 years ago
  1. # Contributing
  2. Thank you for your interest in contributing to Tendermint! Before
  3. contributing, it may be helpful to understand the goal of the project. The goal
  4. of Tendermint is to develop a BFT consensus engine robust enough to
  5. support permissionless value-carrying networks. While all contributions are
  6. welcome, contributors should bear this goal in mind in deciding if they should
  7. target the main Tendermint project or a potential fork. When targeting the
  8. main Tendermint project, the following process leads to the best chance of
  9. landing changes in master.
  10. All work on the code base should be motivated by a [Github
  11. Issue](https://github.com/tendermint/tendermint/issues).
  12. [Search](https://github.com/tendermint/tendermint/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)
  13. is a good place start when looking for places to contribute. If you
  14. would like to work on an issue which already exists, please indicate so
  15. by leaving a comment.
  16. All new contributions should start with a [Github
  17. Issue](https://github.com/tendermint/tendermint/issues/new/choose). The
  18. issue helps capture the problem you're trying to solve and allows for
  19. early feedback. Once the issue is created the process can proceed in different
  20. directions depending on how well defined the problem and potential
  21. solution are. If the change is simple and well understood, maintainers
  22. will indicate their support with a heartfelt emoji.
  23. If the issue would benefit from thorough discussion, maintainers may
  24. request that you create a [Request For
  25. Comment](https://github.com/tendermint/spec/tree/master/rfc)
  26. in the Tendermint spec repo. Discussion
  27. at the RFC stage will build collective understanding of the dimensions
  28. of the problems and help structure conversations around trade-offs.
  29. When the problem is well understood but the solution leads to large structural
  30. changes to the code base, these changes should be proposed in the form of an
  31. [Architectural Decision Record (ADR)](./docs/architecture/). The ADR will help
  32. build consensus on an overall strategy to ensure the code base maintains
  33. coherence in the larger context. If you are not comfortable with writing an
  34. ADR, you can open a less-formal issue and the maintainers will help you turn it
  35. into an ADR.
  36. > How to pick a number for the ADR?
  37. Find the largest existing ADR number and bump it by 1.
  38. When the problem as well as proposed solution are well understood,
  39. changes should start with a [draft
  40. pull request](https://github.blog/2019-02-14-introducing-draft-pull-requests/)
  41. against master. The draft signals that work is underway. When the work
  42. is ready for feedback, hitting "Ready for Review" will signal to the
  43. maintainers to take a look.
  44. ![Contributing flow](./docs/imgs/contributing.png)
  45. Each stage of the process is aimed at creating feedback cycles which align contributors and maintainers to make sure:
  46. - Contributors don’t waste their time implementing/proposing features which won’t land in master.
  47. - Maintainers have the necessary context in order to support and review contributions.
  48. ## Forking
  49. Please note that Go requires code to live under absolute paths, which complicates forking.
  50. While my fork lives at `https://github.com/ebuchman/tendermint`,
  51. the code should never exist at `$GOPATH/src/github.com/ebuchman/tendermint`.
  52. Instead, we use `git remote` to add the fork as a new remote for the original repo,
  53. `$GOPATH/src/github.com/tendermint/tendermint`, and do all the work there.
  54. For instance, to create a fork and work on a branch of it, I would:
  55. - Create the fork on GitHub, using the fork button.
  56. - Go to the original repo checked out locally (i.e. `$GOPATH/src/github.com/tendermint/tendermint`)
  57. - `git remote rename origin upstream`
  58. - `git remote add origin git@github.com:ebuchman/basecoin.git`
  59. Now `origin` refers to my fork and `upstream` refers to the Tendermint version.
  60. So I can `git push -u origin master` to update my fork, and make pull requests to tendermint from there.
  61. Of course, replace `ebuchman` with your git handle.
  62. To pull in updates from the origin repo, run
  63. - `git fetch upstream`
  64. - `git rebase upstream/master` (or whatever branch you want)
  65. ## Dependencies
  66. We use [go modules](https://github.com/golang/go/wiki/Modules) to manage dependencies.
  67. That said, the master branch of every Tendermint repository should just build
  68. with `go get`, which means they should be kept up-to-date with their
  69. dependencies so we can get away with telling people they can just `go get` our
  70. software.
  71. Since some dependencies are not under our control, a third party may break our
  72. build, in which case we can fall back on `go mod tidy`. Even for dependencies under our control, go helps us to
  73. keep multiple repos in sync as they evolve. Anything with an executable, such
  74. as apps, tools, and the core, should use dep.
  75. Run `go list -u -m all` to get a list of dependencies that may not be
  76. up-to-date.
  77. When updating dependencies, please only update the particular dependencies you
  78. need. Instead of running `go get -u=patch`, which will update anything,
  79. specify exactly the dependency you want to update, eg.
  80. `GO111MODULE=on go get -u github.com/tendermint/go-amino@master`.
  81. ## Protobuf
  82. We use [Protocol Buffers](https://developers.google.com/protocol-buffers) along
  83. with [`gogoproto`](https://github.com/gogo/protobuf) to generate code for use
  84. across Tendermint Core.
  85. To generate proto stubs, lint, and check protos for breaking changes, you will
  86. need to install [buf](https://buf.build/) and `gogoproto`. Then, from the root
  87. of the repository, run:
  88. ```bash
  89. # Lint all of the .proto files in proto/tendermint
  90. make proto-lint
  91. # Check if any of your local changes (prior to committing to the Git repository)
  92. # are breaking
  93. make proto-check-breaking
  94. # Generate Go code from the .proto files in proto/tendermint
  95. make proto-gen
  96. ```
  97. To automatically format `.proto` files, you will need
  98. [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) installed. Once
  99. installed, you can run:
  100. ```bash
  101. make proto-format
  102. ```
  103. ### Visual Studio Code
  104. If you are a VS Code user, you may want to add the following to your `.vscode/settings.json`:
  105. ```json
  106. {
  107. "protoc": {
  108. "options": [
  109. "--proto_path=${workspaceRoot}/proto",
  110. "--proto_path=${workspaceRoot}/third_party/proto"
  111. ]
  112. }
  113. }
  114. ```
  115. ## Changelog
  116. Every fix, improvement, feature, or breaking change should be made in a
  117. pull-request that includes an update to the `CHANGELOG_PENDING.md` file.
  118. Changelog entries should be formatted as follows:
  119. ```md
  120. - [module] \#xxx Some description about the change (@contributor)
  121. ```
  122. Here, `module` is the part of the code that changed (typically a
  123. top-level Go package), `xxx` is the pull-request number, and `contributor`
  124. is the author/s of the change.
  125. It's also acceptable for `xxx` to refer to the relevant issue number, but pull-request
  126. numbers are preferred.
  127. Note this means pull-requests should be opened first so the changelog can then
  128. be updated with the pull-request's number.
  129. There is no need to include the full link, as this will be added
  130. automatically during release. But please include the backslash and pound, eg. `\#2313`.
  131. Changelog entries should be ordered alphabetically according to the
  132. `module`, and numerically according to the pull-request number.
  133. Changes with multiple classifications should be doubly included (eg. a bug fix
  134. that is also a breaking change should be recorded under both).
  135. Breaking changes are further subdivided according to the APIs/users they impact.
  136. Any change that effects multiple APIs/users should be recorded multiply - for
  137. instance, a change to the `Blockchain Protocol` that removes a field from the
  138. header should also be recorded under `CLI/RPC/Config` since the field will be
  139. removed from the header in RPC responses as well.
  140. ## Branching Model and Release
  141. The main development branch is master.
  142. Every release is maintained in a release branch named `vX.Y.Z`.
  143. 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.
  144. 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
  145. easy to reference the pull request where a change was introduced.
  146. ### Development Procedure
  147. 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).
  148. To begin contributing, create a development branch either on `github.com/tendermint/tendermint`, or your fork (using `git remote add origin`).
  149. 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!)
  150. Update the `UPGRADING.md` if the change you've made is breaking and the
  151. instructions should be in place for a user on how he/she can upgrade it's
  152. software (ABCI application, Tendermint-based blockchain, light client, wallet).
  153. 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.
  154. 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!)
  155. #### Merging Pull Requests
  156. 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.
  157. Before merging a pull request:
  158. - Ensure pull branch is up-to-date with a recent `master` (GitHub won't let you merge without this!)
  159. - Run `make test` to ensure that all tests pass
  160. - [Squash](https://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git) merge pull request
  161. #### Pull Requests for Minor Releases
  162. 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_.
  163. You can do this by cherry-picking your commit off master:
  164. ```sh
  165. $ git checkout rc1/v0.33.5
  166. $ git checkout -b {new branch name}
  167. $ git cherry-pick {commit SHA from master}
  168. # may need to fix conflicts, and then use git add and git cherry-pick --continue
  169. $ git push origin {new branch name}
  170. ```
  171. 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.
  172. ### Git Commit Style
  173. 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,
  174. ```sh
  175. cmd/debug: execute p.Signal only when p is not nil
  176. [potentially longer description in the body]
  177. Fixes #nnnn
  178. ```
  179. 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!
  180. ## Testing
  181. ### Unit tests
  182. Unit tests are located in `_test.go` files as directed by [the Go testing
  183. package](https://golang.org/pkg/testing/). If you're adding or removing a
  184. function, please check there's a `TestType_Method` test for it.
  185. Run: `make test`
  186. ### Integration tests
  187. Integration tests are also located in `_test.go` files. What differentiates
  188. them is a more complicated setup, which usually involves setting up two or more
  189. components.
  190. Run: `make test_integrations`
  191. ### End-to-end tests
  192. End-to-end tests are used to verify a fully integrated Tendermint network.
  193. See [README](./test/e2e/README.md) for details.
  194. Run:
  195. ```sh
  196. cd test/e2e && \
  197. make && \
  198. ./build/runner -f networks/ci.toml
  199. ```
  200. ### Model-based tests (ADVANCED)
  201. *NOTE: if you're just submitting your first PR, you won't need to touch these
  202. most probably (99.9%)*.
  203. For components, that have been [formally
  204. verified](https://en.wikipedia.org/wiki/Formal_verification) using
  205. [TLA+](https://en.wikipedia.org/wiki/TLA%2B), it may be possible to generate
  206. tests using a combination of the [Apalache Model
  207. Checker](https://apalache.informal.systems/) and [tendermint-rs testgen
  208. util](https://github.com/informalsystems/tendermint-rs/tree/master/testgen).
  209. Now, I know there's a lot to take in. If you want to learn more, check out [
  210. this video](https://www.youtube.com/watch?v=aveoIMphzW8) by Andrey Kupriyanov
  211. & Igor Konnov.
  212. At the moment, we have model-based tests for the light client, located in the
  213. `./light/mbt` directory.
  214. Run: `cd light/mbt && go test`
  215. ### Fuzz tests (ADVANCED)
  216. *NOTE: if you're just submitting your first PR, you won't need to touch these
  217. most probably (99.9%)*.
  218. [Fuzz tests](https://en.wikipedia.org/wiki/Fuzzing) can be found inside the
  219. `./test/fuzz` directory. See [README.md](./test/fuzz/README.md) for details.
  220. Run: `cd test/fuzz && make fuzz-{PACKAGE-COMPONENT}`
  221. ### Jepsen tests (ADVANCED)
  222. *NOTE: if you're just submitting your first PR, you won't need to touch these
  223. most probably (99.9%)*.
  224. [Jepsen](http://jepsen.io/) tests are used to verify the
  225. [linearizability](https://jepsen.io/consistency/models/linearizable) property
  226. of the Tendermint consensus. They are located in a separate repository
  227. -> <https://github.com/tendermint/jepsen>. Please refer to its README for more
  228. information.
  229. ### RPC Testing
  230. **If you contribute to the RPC endpoints it's important to document your
  231. changes in the [Openapi file](./rpc/openapi/openapi.yaml)**.
  232. To test your changes you must install `nodejs` and run:
  233. ```bash
  234. npm i -g dredd
  235. make build-linux build-contract-tests-hooks
  236. make contract-tests
  237. ```
  238. **WARNING: these are currently broken due to <https://github.com/apiaryio/dredd>
  239. not supporting complete OpenAPI 3**.
  240. This command will popup a network and check every endpoint against what has
  241. been documented.