]> git.ipfire.org Git - thirdparty/pdns.git/blame - CONTRIBUTING.md
Restrict permissions for GITHUB_TOKEN in our workflows
[thirdparty/pdns.git] / CONTRIBUTING.md
CommitLineData
11902fff
PL
1Contributing to PowerDNS
2------------------------
3Thank you for you interest to contribute to the PowerDNS project. This document
4will explain some of the things you need to keep in mind when contributing to
5ease the workflow of this.
6
7# Issue Tracker
8When you post an issue or feature request to the
9[issue tracker](https://github.com/PowerDNS/pdns/issues), make sure this hasn't
10been reported before. If there is an open issue, add extra information on this
11issue or show that you have the same issue/want this feature by adding a `:+1:`.
12
13If there is no similar issue, feature request or you're not sure, open a new
14issue.
15
16## Filing a Feature Request
c1fc5d10 17When filing a feature request, please use the Feature request template provided.
11902fff
PL
18
19Please be as elaborate as possible when describing the feature you need. Provide
20at least the following information (if they are relevant):
21
22* Use case (what is the 'masterplan' that requires this feature)
23* Description of what the feature should do
24
25## Filing an Issue or Bug
26**Note:** if you're planning to file a security bug, look at our
27[Security Policy](https://doc.powerdns.com/md/security/) first.
28
29When filing an issue or bug report, make the title of the issue a very short
30summary (e.g. "Recursor crash when some-setting is set to 'crash'"). In the
31content of the issue, be as detailed as possible. Supply at least the following
32information:
33
34* PowerDNS version
76d09a54 35* Where you got the software from (e.g. distribution, compiled yourself)
11902fff
PL
36* Operating System and version
37* Steps to reproduce: How can we reproduce the issue
38* Expected behavior: what did you expect what would happen?
4821dd69 39* Observed behavior: what actually happened when following the steps?
11902fff
PL
40* Relevant logs: Please use code blocks (\`\`\`) to format console output, logs, and code as it's very hard to read otherwise.
41
c1fc5d10
PD
42We provide convenient templates that make it easy to not forget any of these steps.
43
11902fff
PL
44If you have already looked deeper into the problem, provide what you found as
45well.
46
47# Filing a Pull Request
48Code contributions are sent as a pull request on [GitHub](https://github.com/PowerDNS/pdns/pulls).
c1fc5d10 49By submitting a Pull Request you agree to your code becoming GPLv2 licensed.
11902fff
PL
50
51## Pull Request Guidelines
52A pull request, at the least, should have:
53
76d09a54 54* A clear and concise title (not e.g. 'Issue #1234')
11902fff
PL
55* A description of the patch (what issue does it solve or what feature does it add)
56* Documentation for the feature or when current behaviour changes
57* Regression and/or unit tests
58
59And must:
60* Be filed against the master branch before any release branch
c1fc5d10 61* Pass all tests in our CI (currently Github Actions and CircleCI)
11902fff 62
f1fe0aa3
PL
63Information on the tests can be found in the repository at
64[/regression-tests/README.md](https://github.com/PowerDNS/pdns/blob/master/regression-tests/README.md)
c1fc5d10
PD
65,
66[/regression-tests.recursor/README.md](https://github.com/PowerDNS/pdns/blob/master/regression-tests.recursor/README.md),
67plus various other directories with `regression-tests.*` names.
f1fe0aa3 68
11902fff
PL
69## Commit Guidelines
70* Tell why the change does what it does, not how it does it.
e2bd355f 71* The first line should be short (preferably less than 50 characters)
11902fff
PL
72* The rest of the commit body should be wrapped at 72 characters (see [this](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) for more info)
73* If this commit fixes an issue, put "Closes #XXXX" in the message
74* Do not put whitespace fixes/cleanup and functionality changes in the same commit
75
76# Coding Guidelines
c1fc5d10
PD
77We have `clang-format` in place, but not for all files yet.
78This is an incremental process.
79If you're adding new code, adhering to the formatting config is appreciated.
80Formatting breakage in already formatted files will be caught by the CI.
f8b2853a 81To format all files that are supposed to be formatted, run `make format-code` in the root of the tree.
c1fc5d10
PD
82
83Additional guidelines:
11902fff
PL
84
85* Don't have end-of-line whitespace
86* Use spaces instead of tabs
d8e72253 87* Although the codebase does not consistently have them, [docblock](https://www.doxygen.nl/manual/docblocks.html)s on functions and classes are appreciated
c1fc5d10 88* Never hesitate to write comments on anything that might not be immediately clear just from reading the code
b2368658 89* When adding whole new things, consider putting them in a `pdns::X` namespace. Look for `namespace pdns` in the codebase for examples.