First off, glad you're here and want to contribute! ❤️
In order to work on this project, you'll need to install a few things:
- A recent version of Go
- Docker (only required to use
make dev/docker
,make test/docker
, or release targets). - unzip
Everything else that's needed will be installed as needed and put in ./bin
.
When writing tests, be sure that the package in the test file is suffixed with _test
. Eg. protoc_gen_doc_test
. This
ensures that you'll only be testing the public interface.
Here are some general guidelines for making PRs for this repo.
- Fork this repo.
- Make a branch off of master (
git checkout -b <your_branch_name>
). - Make focused commits with descriptive messages.
- Add tests that fail without your code, and pass with it.
- GoFmt your code! (see https://blog.golang.org/go-fmt-your-code to setup your editor to do this for you).
- Be sure to run
make build/examples
so your changes are reflected in the example docs. - Running
make test/docker
should produce the same output asmake build/examples
. - Ping someone on the PR (Lots of people, including myself, won't get a notification unless pinged directly).
Every PR should have a well detailed summary of the changes being made and the reasoning behind them. Make sure to add at least three sections.
Make sure you spell out in as much detail as necessary what will happen to which systems when your PR is merged, what are the expected changes.
Include any relevant implementation details, mimize surprises for the reviewers in this section, if you had to take some unorthodox approaches (read hacks), explain why here.
How has this change been tested? In your opinion what is the risk, if any, of merging these changes.
- Identify anything that the PR author may have missed from above.
- Test the PR through whatever means necessary, including manually, to verify it is safe to be deployed.
- Question everything. Never assume that something was tested or fully understood, always question and ask if there is any uncertainty.
- Before merging the PR make sure it has one of the
Major release
,Minor release
, orPatch release
labels applied to it (useful for the changelog and determining the version for the next release).
We follow Semantic Versioning 2.0.0, and the fact that PRs are tagged with the type of release makes determining the next version super simple.
Look through the new (since the last release) PRs that are included in this release to determine the new version.
- If COUNT(labelled
Major release
) > 0, then it's a MAJOR version bump. - If COUNT(labelled
Minor release
) > 0, then it's a MINOR version bump. - PATCH version bump
From an up-to-date master, do the following:
- Run
make test/docker
to build the image and generate the examples. There should be no diff after this. - Update the version in
version.go
appropriately. git commit -am "Bump to version v<version>
.git tag -s v<version>
.git push origin master --tags
.
Once the tag is on GitHub, the release action will handle pushing to docker and creating a release in GitHub.
- Head over to https://s01.oss.sonatype.org/#stagingRepositories
- Verify the contents of the staging repo and close it
- After successful closing (test suite is run), release the repo