This document provides some ground rules for contributors (including the maintainer(s) of the project) about how to make, review and publish changes to 4.x. The most basic requirement is that Web3 not break.
- Any PR that introduces a logic change should include tests. (In many cases, the tests will take more time to write than the actual code).
- All PRs should sit for 72 hours with the
pleasereview
tag in order to garner feedback. - No PR should be merged until it has been reviewed, passes CI, and all reviews' comments are addressed.
- PRs should:
- have a narrow, well-defined focus.
- make the smallest set of changes possible to achieve their goal.
- include a clear description in the opening comment.
- preserve the conventions and stylistic consistency of any files they modify.
- Given the choice between a conservative change that mostly works and an adventurous change which seems better but introduces uncertainty - prefer the conservative change.
The end goal of review is to suggest useful improvements to the author. Reviews should finish with approval unless there are issues that would result in:
- Buggy behaviour.
- Undue maintenance burden.
- Pessimisation (i.e. speed reduction / meaningful build-size increases).
- Feature reduction (i.e. it removes some aspect of functionality that users rely on).
- Avoidable risk (i.e it's difficult to test or hard to anticipate the implications of, without being strictly necessary to fix something broken).
Read more in Review Guidelines.
- All releases should be proposed in a PR and subject to community review for a minimum of one week.
- Release review periods should be accompanied by a published
rc
version which can be used for sanity checks / additional testing. - During release review, the code is frozen unless new changes are proposed, approved and merged.
- Changes should trigger a new
rc
release and set the release clock back enough that reviewers have the time they need to test new changes. - Regular maintainers should manually test the
rc
against a Node project and the published minified bundle in a browser context. An external reviewer should verify they've done the same. - A release PR must be approved at least by two known contributors of the web3.js project.
Read more in Release Guidelines.
Emergency releases are allowed to shorten waiting periods depending on the severity of the issue.
There is precedent set for this in the 1.2.6 release (see #3351), where the consensus view was to make the smallest change necessary to address the emergency while waiving the rc
process (meaning many existing additions to master were excluded).
This topic is under further org-wide discussion at ethereum/js-organization#6.