Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add(doc): Add draft audit process, and update some support docs #5433

Merged
merged 5 commits into from
Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ So Zebra's state should always be valid, unless your OS or disk hardware is corr
There are a few bugs in Zebra that we're still working on fixing:

- Zebra requires Rust 1.63, due to [a compiler performance regression in Rust 1.64](https://github.com/ZcashFoundation/zebra/issues/5091)
- If Zebra fails downloading the Zcash parameters, use [the Zcash parameters download script](https://github.com/zcash/zcash/blob/master/zcutil/fetch-params.sh) instead. This script might be needed on macOS, even with Rust 1.63.
teor2345 marked this conversation as resolved.
Show resolved Hide resolved
- No Windows support [#3801](https://github.com/ZcashFoundation/zebra/issues/3801)
- We used to test with Windows Server 2019, but not anymore; see issue for details

Expand Down
15 changes: 15 additions & 0 deletions book/src/dev/audit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Zebra audits

In addition to our normal [release process](https://github.com/ZcashFoundation/zebra/blob/main/book/src/dev/release-process.md], we do these steps to prepare for an audit:
1. [Tag a release candidate](https://github.com/ZcashFoundation/zebra/blob/main/book/src/dev/release-process.md#preview-releases) with the code to be audited
2. Declare a feature and fix freeze: non-essential changes must wait until after the audit, new features must be behind a [Rust feature flag](https://doc.rust-lang.org/cargo/reference/features.html)
3. Prepare a list of dependencies that are [in scope, partially in scope, and out of scope](https://github.com/ZcashFoundation/zebra/issues/5214). Audits focus on:
- production Rust code that the Zcash Foundation has written, or is responsible for
- consensus-critical and security-critical code
- code that hasn't already been audited

Some code might require specialist audits, for example, consensus-critical cryptographic code.

The audit tag and freeze allow us to create an audit branch, and merge it into the `main` branch easily. Audit branches are optional, we'll make a decision based on:
- if the auditors want a separate branch to review recommended changes, and
- the complexity of the changes.
18 changes: 9 additions & 9 deletions book/src/dev/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Before reading, you should understand [Semantic Versioning](https://semver.org/s

<a id="versioning"></a>

## Zebra versioning {#zebra-versioning}
## Zebra versioning
teor2345 marked this conversation as resolved.
Show resolved Hide resolved

Zebra version numbers show the impact of the changes in a release. They are composed of three parts: `major.minor.patch`.
For example, version `3.1.11` indicates major version 3, minor version 1, and patch level 11.
Expand All @@ -31,7 +31,7 @@ The pre-release version is denoted by appending a hyphen and a series of dot sep

<a id="supported-releases"></a>

### Supported Releases {#supported-releases}
### Supported Releases

Older Zebra versions are always supported until the next Zebra major, minor or patch release. Initially, we can only guarantee support for the latest Zebra release.
We might be able to provide support for earlier releases, or we might ask you to upgrade to the latest release.
Expand All @@ -42,7 +42,7 @@ Older Zebra versions that only support previous network upgrades will never be s

<a id="updating"></a>

### Supported update paths {#supported-update-paths}
### Supported update paths

You can update to any version of Zebra, provided that the following criteria are met:

Expand All @@ -53,7 +53,7 @@ See [Keeping Up-to-Date](guide/updating "Updating your projects") for more infor

<a id="previews"></a>

### Preview releases {#preview-releases}
### Preview releases

We let you preview what's coming by providing Release Candidate \(`rc`\) pre-releases for some major releases:

Expand All @@ -62,7 +62,7 @@ We let you preview what's coming by providing Release Candidate \(`rc`\) pre-rel
| Beta | The release that is under active development and testing. The beta release is indicated by a release tag appended with the `-beta` identifier, such as `8.1.0-beta.0`. |
| Release candidate | A release for final testing of new features. A release candidate is indicated by a release tag appended with the `-rc` identifier, such as version `8.1.0-rc.0`. |

### Distribution tags {#distribution-tags}
### Distribution tags

Zebras's tagging relates directly to versions published on Docker. We will reference these [Docker Hub distribution tags](https://hub.docker.com/r/zfnd/zebra/tags) throughout:

Expand All @@ -72,15 +72,15 @@ Zebras's tagging relates directly to versions published on Docker. We will refer
| beta | The most recent pre-release version of Zebra for testing. May not always exist. |
| rc | The most recent release candidate of Zebra, meant to become a stable version. May not always exist. |

### Feature Flags {#feature-flags}
### Feature Flags

To keep the `main` branch in a releasable state, experimental features must be gated behind a [Rust feature flag](https://doc.rust-lang.org/cargo/reference/features.html).
Breaking changes should also be gated behind a feature flag, unless the team decides they are urgent.
(For example, security fixes which also break backwards compatibility.)

<a id="frequency"></a>

## Release frequency {#release-frequency}
## Release frequency

We work toward a regular schedule of releases, so that you can plan and coordinate your updates with the continuing evolution of Zebra.

Expand All @@ -100,7 +100,7 @@ This cadence of releases gives eager developers access to new features as soon a

<a id="deprecation"></a>

## Deprecation practices {#deprecation-practices}
## Deprecation practices

Sometimes "breaking changes", such as the removal of support for RPCs, APIs, and features, are necessary to:

Expand All @@ -125,6 +125,6 @@ To help ensure that you have sufficient time and a clear path to update, this is

<a id="process"></a>

## Release candidate & release process {#release-process}
## Release candidate & release process

Our release checklist is available as a template, which defines each step our team needs to follow to create a new pre-release or release, and to also build and push the binaries to the official channels [Release Checklist Template](https://github.com/ZcashFoundation/zebra/blob/main/.github/PULL_REQUEST_TEMPLATE/release-checklist.md).
15 changes: 1 addition & 14 deletions book/src/user/install.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
# Installing Zebra

`zebrad` is still under development, so there is no supported packaging or
install mechanism. To run `zebrad`, follow the instructions to compile `zebrad`
for your platform:

1. Install [`cargo` and `rustc`](https://www.rust-lang.org/tools/install).
- Using `rustup` installs the stable Rust toolchain, which `zebrad` targets.
2. Install Zebra's build dependencies:
- **libclang:** the `libclang`, `libclang-dev`, `llvm`, or `llvm-dev` packages, depending on your package manager
- **clang** or another C++ compiler: `g++`, `Xcode`, or `MSVC`
3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-rc.0 zebrad`
4. Run `zebrad start` (see [Running Zebra](run.md) for more information)

If you're interested in testing out `zebrad` please feel free, but keep in mind
that there is a lot of key functionality still missing.
Follow the [Docker or compilation instructions in the README](https://github.com/ZcashFoundation/zebra#getting-started).

#### Build Troubleshooting

Expand Down