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

chore: Release v1.3.0 #7610

Merged
merged 15 commits into from
Oct 16, 2023
Merged

chore: Release v1.3.0 #7610

merged 15 commits into from
Oct 16, 2023

Conversation

upbqdn
Copy link
Member

@upbqdn upbqdn commented Sep 22, 2023


name: 'Release Checklist Template'
about: 'Checklist to create and publish a Zebra release'
title: 'Release Zebra (version)'
labels: 'A-release, C-trivial, P-Critical 🚑'
assignees: ''


Prepare for the Release

  • Make sure the PRs with the new checkpoint hashes and missed dependencies are already merged.
    (See the release ticket checklist for details)

Summarise Release Changes

These steps can be done a few days before the release, in the same PR:

Change Log

Important: Any merge into main deletes any edits to the draft changelog.
Once you are ready to tag a release, copy the draft changelog into CHANGELOG.md.

We use the Release Drafter workflow to automatically create a draft changelog. We follow the Keep a Changelog format.

To create the final change log:

  • Copy the latest draft changelog into CHANGELOG.md (there can be multiple draft releases)
  • Delete any trivial changes
    • Put the list of deleted changelog entries in a PR comment to make reviewing easier
  • Combine duplicate changes
  • Edit change descriptions so they will make sense to Zebra users
  • Check the category for each change
    • Prefer the "Fix" category if you're not sure

README

README updates can be skipped for urgent releases.

Update the README to:

  • Remove any "Known Issues" that have been fixed since the last release.
  • Update the "Build and Run Instructions" with any new dependencies.
    Check for changes in the Dockerfile since the last tag: git diff <previous-release-tag> docker/Dockerfile.
  • If Zebra has started using newer Rust language features or standard library APIs, update the known working Rust version in the README, book, and Cargo.tomls

You can use a command like:

fastmod --fixed-strings '1.58' '1.65'

Create the Release PR

  • Push the updated changelog and README into a new branch
    for example: bump-v1.0.0 - this needs to be different to the tag name
  • Create a release PR by adding &template=release-checklist.md to the comparing url (Example).
  • Freeze the batched queue using Mergify.
  • Mark all the release PRs as Critical priority, so they go in the urgent Mergify queue.
  • Mark all non-release PRs with do-not-merge, because Mergify checks approved PRs against every commit, even when a queue is frozen.

Update Versions and End of Support

Update Zebra Version

Choose a Release Level

Zebra follows semantic versioning. Semantic versions look like: MAJOR.MINOR.PATCH[-TAG.PRE-RELEASE]

Choose a release level for zebrad. Release levels are based on user-visible changes from the changelog:

  • Mainnet Network Upgrades are major releases
  • significant new features or behaviour changes; changes to RPCs, command-line, or configs; and deprecations or removals are minor releases
  • otherwise, it is a patch release

Zebra's Rust API doesn't have any support or stability guarantees, so we keep all the zebra-* and tower-* crates on a beta pre-release version.

Update Crate Versions

If you're publishing crates for the first time, log in to crates.io,
and make sure you're a member of owners group.

Check that the release will work:

  • Update crate versions, commit the changes to the release branch, and do a release dry-run:
cargo release version --verbose --execute --allow-branch '*' --workspace --exclude zebrad beta
cargo release version --verbose --execute --allow-branch '*' --package zebrad patch # [ major | minor | patch ]
cargo release replace --verbose --execute --allow-branch '*' --package zebrad
cargo release commit --verbose --execute --allow-branch '*'

Crate publishing is automatically checked in CI using "dry run" mode.

Update End of Support

The end of support height is calculated from the current blockchain height:

  • Find where the Zcash blockchain tip is now by using a Zcash explorer or other tool.
  • Replace ESTIMATED_RELEASE_HEIGHT in end_of_support.rs with the height you estimate the release will be tagged.
Optional: calculate the release tagging height
  • Add 1152 blocks for each day until the release
  • For example, if the release is in 3 days, add 1152 * 3 to the current Mainnet block height

Update the Release PR

  • Push the version increments and the release constants to the release branch.

Publish the Zebra Release

Create the GitHub Pre-Release

  • Wait for all the release PRs to be merged
  • Create a new release using the draft release as a base, by clicking the Edit icon in the draft release
  • Set the tag name to the version tag,
    for example: v1.0.0
  • Set the release to target the main branch
  • Set the release title to Zebra followed by the version tag,
    for example: Zebra 1.0.0
  • Replace the prepopulated draft changelog in the release description with the final changelog you created;
    starting just after the title ## [Zebra ... of the current version being released,
    and ending just before the title of the previous release.
  • Mark the release as 'pre-release', until it has been built and tested
  • Publish the pre-release to GitHub using "Publish Release"
  • Delete all the draft releases from the list of releases

Test the Pre-Release

Publish Release

Publish Crates

  • Run cargo login
  • Run cargo clean in the zebra repo (optional)
  • Publish the crates to crates.io: cargo release publish --verbose --workspace --execute
  • Check that Zebra can be installed from crates.io:
    cargo install --locked --force --version 1.minor.patch zebrad && ~/.cargo/bin/zebrad
    and put the output in a comment on the PR.

Publish Docker Images

Release Failures

If building or running fails after tagging:

Tag a new release, following these instructions...
  1. Fix the bug that caused the failure
  2. Start a new patch release
  3. Skip the Release Preparation, and start at the Release Changes step
  4. Update CHANGELOG.md with details about the fix
  5. Follow the release checklist for the new Zebra version

@upbqdn upbqdn added the C-trivial Category: A trivial change that is not worth mentioning in the CHANGELOG label Sep 22, 2023
@upbqdn upbqdn requested a review from a team as a code owner September 22, 2023 23:27
@upbqdn upbqdn requested review from oxarbitrage and removed request for a team September 22, 2023 23:27
@upbqdn
Copy link
Member Author

upbqdn commented Sep 22, 2023

Here's the list of excluded changes:

Fix typo (#7516)
change(ci): Automatically open a ticket for main branch failures in the CI Docker workflow (#7565)
change(ci): Label cached state disks with the disk they were updated from (#7560)
fix(test): Remove intermittent asserts in test (#7600)
fix(ci): Increase test launch and shutdown times to fix CI failures (#7499)
fix(ci): Temporarily disable panic on subtree validation failure (#7555)
fix(ci): handle tee trying to write to a closed pipe (#7580)
build(deps): bump the log-time group with 2 updates (#7579)
build(deps): bump the log-time group with 2 updates (#7493)
build(deps): bump the time group with 1 update (#7455)
build(deps): bump tj-actions/changed-files from 38.1.3 to 39.0.0 (#7491)
Add bridgetree to the ECC dependabot group (#7537)
Create ticket template for zcashd dependency upgrades (#7536)
add(doc): Add instructions for changing crate owners (#7572)
build(deps): bump Swatinem/rust-cache from 2.6.2 to 2.7.0 (#7546)
build(deps): bump actions/checkout from 3.6.0 to 4.0.0 (#7492)
build(deps): bump arduino/setup-protoc from 2.0.0 to 2.1.0 (#7592)
build(deps): bump baptiste0928/cargo-install from 2.1.0 to 2.2.0 (#7594)
build(deps): bump docker/login-action from 2.2.0 to 3.0.0 (#7547)
build(deps): bump docker/metadata-action from 4.6.0 to 5.0.0 (#7593)
build(deps): bump docker/setup-buildx-action from 2 to 3 (#7595)
build(deps): bump docker/setup-qemu-action from 2 to 3 (#7545)
build(deps): bump reviewdog/action-actionlint from 1.37.1 to 1.38.0 (#7505)
build(deps): bump the app group with 1 update (#7576)
build(deps): bump the app group with 1 update (#7525)
build(deps): bump the app group with 1 update (#7457)
build(deps): bump the app group with 3 updates (#7551)
build(deps): bump the crypto group with 1 update (#7550)
build(deps): bump the crypto group with 2 updates (#7524)
build(deps): bump the formats group with 1 update (#7577)
build(deps): bump the formats group with 1 update (#7458)
build(deps): bump the formats group with 2 updates (#7526)
build(deps): bump the log-time group with 1 update (#7527)
build(deps): bump the log-time group with 2 updates (#7579)
build(deps): bump the log-time group with 2 updates (#7493)
build(deps): bump the test group with 2 updates (#7578)
build(deps): bump the test group with 3 updates (#7459)
build(deps): bump the time group with 1 update (#7455)
build(deps): bump tj-actions/changed-files from 38.1.3 to 39.0.0 (#7491)
build(deps): bump tj-actions/changed-files from 39.0.0 to 39.0.2 (#7548)
change(ci): Automatically open a ticket for main branch failures in the CI Docker workflow (#7565)
change(ci): Label cached state disks with the disk they were updated from (#7560)
change(dev docs): Delete documentation about fixing job timeouts (#7540)
change(dev tools): Add an OUTPUT_DATA_LINE_LIMIT to zcash-rpc-diff (#7500)
change(dev tools): Add node versions to zcash-rpc-diff (#7453)
change(dev tools): Limit diff length, and mempool check tx count and length (#7519)
change(devops): Tweak dependabot groups (#7468)
change(tests): Obtain lightwalletd tip from logs instead of grpc ([#7507]
change(tools): Show zcash-cli version at the start of zcash-rpc-diff (#7510)
feat(ci): add self hosted runner for long tests (#7520)
fix(ci): Increase test launch and shutdown times to fix CI failures (#7499)
fix(ci): Temporarily disable panic on subtree validation failure (#7555)
fix(doc): Fix typos in CHANGELOG.md (#7511)
fix(test): Remove intermittent asserts in test (#7600)

CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
Copy link
Member Author

@upbqdn upbqdn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for all the fixes!

CHANGELOG.md Outdated Show resolved Hide resolved
@upbqdn
Copy link
Member Author

upbqdn commented Sep 25, 2023

List of crates I didn't bump:

  • tower-fallback

I didn't bump tower-fallback because only its dev-dependency zebra-test changed and nothing else, so I thought this change wasn't user-visible. Is this correct?

Edit: I let cargo release handle everything.

@upbqdn upbqdn requested review from a team as code owners September 25, 2023 16:57
@upbqdn upbqdn requested review from arya2 and teor2345 and removed request for a team September 25, 2023 16:57
@upbqdn
Copy link
Member Author

upbqdn commented Sep 25, 2023

This PR is ready for another review.

@upbqdn upbqdn marked this pull request as ready for review October 13, 2023 22:13
@upbqdn
Copy link
Member Author

upbqdn commented Oct 13, 2023

Here's a list of new PRs that I included in the changelog:

@upbqdn
Copy link
Member Author

upbqdn commented Oct 13, 2023

Here's a list of new PRs that I didn't include in the changelog:

imp(workflows): use larger runners on time consuming jobs #7626
change(state): Only do continuous format checks in CI (#7627)
build(deps): bump tj-actions/changed-files from 39.0.2 to 39.2.0 (#7630)
build(deps): bump reviewdog/action-actionlint from 1.38.0 to 1.39.0 #7631
change(release): Add "wait for a full sync" to the release checklist and ticket template #7612
fix(ci): wait for disk to be mounted in VM (#7662)
fix(ci): Replace busybox with ubuntu to avoid "device or resource busy" failures #7686
fix(ci): disk validation for docker volume mount (#7665)
build(deps): bump tj-actions/changed-files from 39.2.0 to 39.2.1 (#7668)
build(deps): bump reviewdog/action-actionlint from 1.39.0 to 1.39.1 #7669
change(ci): Create automatic tickets on CI failure for more workflows #7620
Try larger cached state disk sizes (#7684)
fix(ci): handle disk mounting and logs reading edge-cases (#7690)
build(deps): bump actions/checkout from 4.0.0 to 4.1.0 (#7633)
build(deps): bump the async group with 2 updates (#7705)
build(deps): bump the test group with 4 updates (#7706)
build(deps): bump docker/build-push-action from 4.1.1 to 5.0.0 (#7667)
build(deps): bump webpki from 0.22.1 to 0.22.4 (#7707)
build(deps): bump the data-structures group with 1 update (#7656)
fix(ci): grep the Zcash network correctly (#7713)
build(deps): bump the test group with 1 update (#7712)
build(deps): bump the formats group with 2 updates (#7714)
build(deps): bump the app group with 3 updates (#7715)
fix: add $DISK_NAME to launch-without-cached-state (#7709)
fix(ci): Handle new cargo machete output format for unused dependencies (#7724)
ref(docker): combine test and prod entrypoints into one (#7660)
fix(devops): Long branch names fail CI because GCP resource name is too long #7643
Remove unused dependency exceptions (#7726)

@upbqdn
Copy link
Member Author

upbqdn commented Oct 13, 2023

I took out this entry from the changelog:

Check database format is valid on shutdown in CI (#7606). We expect to catch almost all of these errors in CI (#7602, #7627).

@teor2345 should I also take out the following one?

Fix database concurrency bugs that could have led to panics or incorrect history tree data (#7590, #7663)

@upbqdn
Copy link
Member Author

upbqdn commented Oct 13, 2023

This PR is ready for another round of reviews.

@upbqdn upbqdn self-assigned this Oct 13, 2023
@teor2345
Copy link
Contributor

teor2345 commented Oct 15, 2023

I took out this entry from the changelog:

Check database format is valid on shutdown in CI (#7606). We expect to catch almost all of these errors in CI (#7602, #7627).

I think I made an incorrect suggestion here. The startup and shutdown checks are run in production and visible to users. So that changelog entry should have said:

Check database format is valid on shutdown (#7606)

This part is optional because it is CI only, but it might be useful for users to know:

We expect to catch almost all database validity errors in CI (#7602, #7627), so users are unlikely to see them on startup or shutdown.

Fix database concurrency bugs that could have led to panics or incorrect history tree data (#7590, #7663)

These panics or incorrect data are visible to users (if they happen in production).

CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Show resolved Hide resolved
teor2345
teor2345 previously approved these changes Oct 15, 2023
Copy link
Contributor

@teor2345 teor2345 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The rest looks good, thanks!

Co-authored-by: teor <teor@riseup.net>
Copy link
Contributor

@teor2345 teor2345 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

mergify bot added a commit that referenced this pull request Oct 16, 2023
@mergify mergify bot merged commit 13230d0 into main Oct 16, 2023
177 checks passed
@mergify mergify bot deleted the release-v1.3.0 branch October 16, 2023 23:04
@upbqdn
Copy link
Member Author

upbqdn commented Oct 17, 2023

Here's the output from cargo install --locked --force --version 1.3.0 zebrad && ~/.cargo/bin/zebrad

  Downloaded zebrad v1.3.0
  Downloaded 1 crate (242.0 KB) in 1.25s
    Updating crates.io index
  Installing zebrad v1.3.0
    Updating crates.io index
    Updating crates.io index
   Compiling libc v0.2.149
   Compiling proc-macro2 v1.0.69
   Compiling unicode-ident v1.0.12
   Compiling cfg-if v1.0.0
   Compiling autocfg v1.1.0
   Compiling version_check v0.9.4
   Compiling serde v1.0.189
   Compiling once_cell v1.18.0
   Compiling typenum v1.17.0
   Compiling subtle v2.4.1
   Compiling log v0.4.20
   Compiling pin-project-lite v0.2.13
   Compiling spin v0.5.2
   Compiling memchr v2.6.4
   Compiling scopeguard v1.2.0
   Compiling arrayvec v0.7.4
   Compiling ppv-lite86 v0.2.17
   Compiling byteorder v1.5.0
   Compiling radium v0.7.0
   Compiling futures-core v0.3.28
   Compiling crossbeam-utils v0.8.16
   Compiling tap v1.0.1
   Compiling nonempty v0.7.0
   Compiling arrayref v0.3.7
   Compiling futures-sink v0.3.28
   Compiling cpufeatures v0.2.9
   Compiling constant_time_eq v0.3.0
   Compiling funty v2.0.0
   Compiling syn v1.0.109
   Compiling either v1.9.0
   Compiling static_assertions v1.1.0
   Compiling bytes v1.5.0
   Compiling futures-channel v0.3.28
   Compiling rayon-core v1.12.0
   Compiling futures-task v0.3.28
   Compiling futures-util v0.3.28
   Compiling glob v0.3.1
   Compiling semver v1.0.20
   Compiling futures-io v0.3.28
   Compiling pin-utils v0.1.0
   Compiling tinyvec_macros v0.1.1
   Compiling prettyplease v0.2.15
   Compiling crunchy v0.2.2
   Compiling regex-syntax v0.8.1
   Compiling itoa v1.0.9
   Compiling thiserror v1.0.49
   Compiling allocator-api2 v0.2.16
   Compiling untrusted v0.7.1
   Compiling minimal-lexical v0.2.1
   Compiling libm v0.2.8
   Compiling ident_case v1.0.1
   Compiling equivalent v1.0.1
   Compiling opaque-debug v0.3.0
   Compiling smallvec v1.11.1
   Compiling bitflags v2.4.0
   Compiling halo2_legacy_pdqsort v0.1.0
   Compiling peeking_take_while v0.1.2
   Compiling rustc-hash v1.1.0
   Compiling shlex v1.2.0
   Compiling lazycell v1.3.0
   Compiling lazy_static v1.4.0
   Compiling base64ct v1.0.1
   Compiling fnv v1.0.7
   Compiling strsim v0.10.0
   Compiling serde_json v1.0.107
   Compiling platforms v3.1.2
   Compiling ryu v1.0.15
   Compiling byte-slice-cast v1.2.2
   Compiling wyz v0.5.1
   Compiling bech32 v0.9.1
   Compiling memoffset v0.9.0
   Compiling crossbeam-epoch v0.9.15
   Compiling num-traits v0.2.17
   Compiling tracing-core v0.1.32
   Compiling lock_api v0.4.10
   Compiling slab v0.4.9
   Compiling generic-array v0.14.7
   Compiling ahash v0.8.3
   Compiling aho-corasick v1.1.2
   Compiling num-integer v0.1.45
   Compiling num-bigint v0.4.4
   Compiling pkg-config v0.3.27
   Compiling rustix v0.38.19
   Compiling untrusted v0.9.0
   Compiling rustc-hex v2.1.0
   Compiling vcpkg v0.2.15
   Compiling linux-raw-sys v0.4.10
   Compiling getrandom v0.1.16
   Compiling signature v2.1.0
   Compiling bindgen v0.65.1
   Compiling tower-service v0.3.2
   Compiling bitflags v1.3.2
   Compiling regex-syntax v0.6.29
   Compiling termcolor v1.3.0
   Compiling bindgen v0.68.1
   Compiling home v0.5.5
   Compiling cxxbridge-flags v1.0.95
   Compiling rustls v0.20.9
   Compiling portable-atomic v1.4.3
   Compiling tinyvec v1.6.0
   Compiling humantime v2.1.0
   Compiling iana-time-zone v0.1.57
   Compiling parking_lot_core v0.9.8
   Compiling unicode-width v0.1.11
   Compiling getrandom v0.2.10
   Compiling num_cpus v1.16.0
   Compiling signal-hook-registry v1.4.1
   Compiling clang-sys v1.6.1
   Compiling socket2 v0.5.4
   Compiling mio v0.8.8
   Compiling incrementalmerkletree v0.4.0
   Compiling bitvec v1.0.1
   Compiling crossbeam-channel v0.5.8
   Compiling itertools v0.11.0
   Compiling jobserver v0.1.27
   Compiling minreq v2.8.1
   Compiling tower-layer v0.3.2
   Compiling overload v0.1.1
   Compiling nom v7.1.3
   Compiling rustversion v1.0.14
   Compiling libloading v0.7.4
   Compiling thread_local v1.1.7
   Compiling quote v1.0.33
   Compiling number_prefix v0.4.0
   Compiling unicode-bidi v0.3.13
   Compiling blake2b_simd v1.0.2
   Compiling blake2s_simd v1.0.2
   Compiling option-ext v0.2.0
   Compiling percent-encoding v2.3.0
   Compiling memuse v0.2.1
   Compiling rustc_version v0.4.0
   Compiling spin v0.9.8
   Compiling zcash_encoding v0.2.0
   Compiling unicase v2.7.0
   Compiling rlimit v0.10.1
   Compiling known-folders v1.0.1
   Compiling anyhow v1.0.75
   Compiling fastrand v2.0.1
   Compiling xdg v2.5.2
   Compiling utf8parse v0.2.1
   Compiling httparse v1.8.0
   Compiling parking_lot_core v0.8.6
   Compiling vergen v8.2.5
   Compiling bstr v1.7.0
   Compiling instant v0.1.12
   Compiling deranged v0.3.8
   Compiling gimli v0.28.0
   Compiling time-core v0.1.2
   Compiling regex-automata v0.1.10
   Compiling hashbrown v0.14.1
   Compiling adler v1.0.2
   Compiling num_threads v0.1.6
   Compiling anstyle-query v1.0.0
   Compiling anstyle v1.0.4
   Compiling try-lock v0.2.4
   Compiling crossbeam-deque v0.8.3
   Compiling colorchoice v1.0.0
   Compiling nu-ansi-term v0.46.0
   Compiling eyre v0.6.8
   Compiling regex-automata v0.4.1
   Compiling sharded-slab v0.1.7
   Compiling console v0.15.7
   Compiling hdrhistogram v7.5.2
   Compiling tracing-log v0.1.3
   Compiling http v0.2.9
   Compiling parking_lot v0.12.1
   Compiling syn v2.0.38
   Compiling rand_core v0.6.4
   Compiling nanorand v0.7.0
   Compiling codespan-reporting v0.11.1
   Compiling bridgetree v0.3.0
   Compiling form_urlencoded v1.2.0
   Compiling crypto-common v0.1.6
   Compiling cc v1.0.83
   Compiling block-buffer v0.10.4
   Compiling inout v0.1.3
   Compiling unicode-normalization v0.1.22
   Compiling rand_core v0.5.1
   Compiling anstyle-parse v0.2.2
   Compiling socket2 v0.4.9
   Compiling dirs-sys v0.4.1
   Compiling object v0.32.1
   Compiling indenter v0.3.3
   Compiling miniz_oxide v0.7.1
   Compiling curve25519-dalek v4.1.1
   Compiling hex-literal v0.4.1
   Compiling heck v0.4.1
   Compiling clap_lex v0.5.1
   Compiling rustc-demangle v0.1.23
   Compiling addr2line v0.21.0
   Compiling httpdate v1.0.3
   Compiling unicode-xid v0.2.4
   Compiling cexpr v0.6.0
   Compiling want v0.3.1
   Compiling mset v0.1.1
   Compiling cfg-if v0.1.10
   Compiling winnow v0.5.16
   Compiling f4jumble v0.1.0
   Compiling equihash v0.2.0
   Compiling matchers v0.1.0
   Compiling owo-colors v3.5.0
   Compiling wait-timeout v0.2.0
   Compiling fs-err v2.9.0
   Compiling http-body v0.4.5
   Compiling canonical-path v2.0.2
   Compiling arc-swap v1.6.0
   Compiling atty v0.2.14
   Compiling indicatif v0.17.7
   Compiling anstream v0.6.4
   Compiling toml v0.5.11
   Compiling rand_chacha v0.3.1
   Compiling ff v0.13.0
   Compiling password-hash v0.3.2
   Compiling digest v0.10.7
   Compiling universal-hash v0.5.1
   Compiling aead v0.5.2
   Compiling rayon v1.8.0
   Compiling time v0.3.29
   Compiling rand_chacha v0.2.2
   Compiling idna v0.4.0
   Compiling which v4.4.2
   Compiling dirs v5.0.1
   Compiling ring v0.16.20
   Compiling secp256k1-sys v0.8.1
   Compiling ring v0.17.3
   Compiling link-cplusplus v1.0.9
   Compiling lz4-sys v1.9.4
   Compiling libz-sys v1.1.12
   Compiling cxx v1.0.95
   Compiling libgit2-sys v0.16.1+1.7.1
   Compiling backtrace v0.3.69
   Compiling net2 v0.2.39
   Compiling synstructure v0.12.6
   Compiling impl-trait-for-tuples v0.2.2
   Compiling quickcheck_macros v0.9.1
   Compiling parking_lot v0.11.2
   Compiling clap_builder v4.4.6
   Compiling poly1305 v0.8.0
   Compiling group v0.13.0
   Compiling regex v1.10.0
   Compiling rand v0.8.5
   Compiling darling_core v0.20.3
   Compiling cxx-gen v0.7.109
   Compiling serde_derive v1.0.189
   Compiling zeroize_derive v1.4.2
   Compiling tracing-attributes v0.1.27
   Compiling futures-macro v0.3.28
   Compiling tokio-macros v2.1.0
   Compiling thiserror-impl v1.0.49
   Compiling pin-project-internal v1.1.3
   Compiling curve25519-dalek-derive v0.1.0
   Compiling displaydoc v0.2.4
   Compiling metrics-macros v0.7.0
   Compiling cxxbridge-macro v1.0.95
   Compiling clap_derive v4.4.2
   Compiling sha2 v0.10.8
   Compiling hmac v0.12.1
   Compiling ripemd v0.1.3
   Compiling proc-macro-crate v0.1.5
   Compiling pbkdf2 v0.10.1
   Compiling rand v0.7.3
   Compiling zeroize v1.6.0
   Compiling tokio v1.33.0
   Compiling metrics v0.21.1
   Compiling tracing v0.1.39
   Compiling pin-project v1.1.3
   Compiling abscissa_derive v0.7.0
   Compiling maybe-rayon v0.1.1
   Compiling url v2.4.1
   Compiling pairing v0.23.0
   Compiling pasta_curves v0.5.1
   Compiling fixed-hash v0.7.0
   Compiling jsonrpc-derive v18.0.0
   Compiling flume v0.10.14
   Compiling cipher v0.4.4
   Compiling tracing-subscriber v0.3.17
   Compiling env_logger v0.7.1
   Compiling tracing-futures v0.2.5
   Compiling globset v0.4.13
   Compiling bs58 v0.5.0
   Compiling bip0039 v0.10.1
   Compiling bls12_381 v0.8.0
   Compiling bellman v0.14.0
   Compiling clap v4.4.6
   Compiling chacha20 v0.9.1
   Compiling cbc v0.1.2
   Compiling aes v0.8.3
   Compiling howudoin v0.1.2
   Compiling darling_macro v0.20.3
   Compiling quickcheck v0.9.2
   Compiling darling v0.20.3
   Compiling zcash_address v0.3.0
   Compiling color-eyre v0.6.2
   Compiling hex v0.4.3
   Compiling indexmap v2.0.2
   Compiling secp256k1 v0.26.0
   Compiling parity-scale-codec v3.6.5
   Compiling ed25519 v2.2.2
   Compiling serde-big-array v0.5.1
   Compiling bitflags-serde-legacy v0.1.1
   Compiling chrono v0.4.31
   Compiling humantime-serde v1.1.1
   Compiling bincode v1.3.3
   Compiling serde_spanned v0.6.3
   Compiling toml_datetime v0.6.3
   Compiling secrecy v0.8.0
   Compiling fpe v0.6.1
   Compiling chacha20poly1305 v0.10.1
   Compiling futures-executor v0.3.28
   Compiling serde_with_macros v3.3.0
   Compiling tracing-error v0.2.0
   Compiling tracing-appender v0.2.2
   Compiling serde_with v3.3.0
   Compiling jubjub v0.10.0
   Compiling tokio-util v0.7.9
   Compiling tokio-util v0.6.10
   Compiling hyper v0.14.27
   Compiling halo2_proofs v0.3.0
   Compiling ordered-map v0.4.2
   Compiling webpki v0.22.4
   Compiling uint v0.9.5
   Compiling toml_edit v0.20.2
   Compiling impl-codec v0.6.0
   Compiling futures v0.3.28
   Compiling librocksdb-sys v0.11.0+8.1.1
   Compiling zcash_note_encryption v0.4.0
   Compiling git2 v0.18.1
   Compiling zcash_script v0.1.13
   Compiling ed25519-zebra v4.0.3
   Compiling x25519-dalek v2.0.0
   Compiling primitive-types v0.11.1
   Compiling webpki-roots v0.22.6
   Compiling tower v0.4.13
   Compiling tokio-stream v0.1.14
   Compiling abscissa_core v0.7.0
   Compiling jsonrpc-core v18.0.0
   Compiling tempfile v3.8.0
   Compiling reddsa v0.5.1
   Compiling redjubjub v0.7.0
   Compiling tower-batch-control v0.2.41-beta.6
   Compiling tower-fallback v0.2.41-beta.6
   Compiling hdwallet v0.4.1
   Compiling sct v0.7.0
   Compiling jsonrpc-server-utils v18.0.0
   Compiling toml v0.8.2
   Compiling halo2_gadgets v0.3.0
   Compiling jsonrpc-http-server v18.0.0
   Compiling zcash_history v0.3.0
   Compiling orchard v0.5.0
   Compiling zebrad v1.3.0
   Compiling rocksdb v0.21.0
   Compiling zcash_primitives v0.12.0
   Compiling zebra-chain v1.0.0-beta.30
   Compiling zcash_proofs v0.12.1
   Compiling zebra-node-services v1.0.0-beta.30
   Compiling zebra-state v1.0.0-beta.30
   Compiling zebra-network v1.0.0-beta.30
   Compiling zebra-script v1.0.0-beta.30
   Compiling zebra-consensus v1.0.0-beta.30
   Compiling zebra-rpc v1.0.0-beta.30
    Finished release [optimized] target(s) in 1m 29s
   Replacing /home/m/.cargo/bin/zebrad
    Replaced package `zebrad v1.0.0-rc.9 (https://github.com/ZcashFoundation/zebra?tag=v1.0.0-rc.9#9959a6ce)` with `zebrad v1.3.0` (executable `zebrad`)

              X@8:::::::@X                      S888@t             S888%
          @::X:;SX;%8S8@@:X::8              S:         .8      @.         .@
       @:;@8@.S8  ;;t;. XX.;@@;:@         ;               %  ;               X
     8:@88     .%@.S@.XS:     888:8      8                 t%                 @
    :;SX    XS8;::@X@8::;8t8:   8;;:@
  @::@    88:::8 8::88::::::X@    8::8  @                                      8
 @:XS8   ;::::::8.88%8@S88::::8:  8S8:8 X                                      X
 ::;8 t8S8::::@St 88SX @SS@8:8S;8S @@:: 8                                      8
8:XX  %%@@::X% 8:  X@ t:8t X ..%t8  ;8:8
::8t:  tX:X8tS 8: :@ ;.8@.X tt888:  @8:: X                                    %
::8S:  @:8Xtt% 8: S 8 8S.   .8;::.  88::  %                                  t
::X8   S@8   8:8.@8@8Xt S  .%8;S    %8::   8                                8
 ::@8  S .   @:::::::X;@ 8.88S8    @8;:X     %                            %
 8:X8X .@:X88:::::::::888 @;:X    %88::        %                        %
  @::S    888@8:::::::::8X; 8     8::8           8                    8
   X:;S@   tXX8;::::::::S::@8   8;S:8              S.              :t
     ::8S@     :S88XX@8X:     @XX::                   %          %
       8:;%X8.:S        t; X8%S:8X                      @      S
         X8::8SS8SX8@@X@8;8S:8X                           S  %
              X@8:::::::@XS                                %

Thank you for running a mainnet zebrad 1.3.0 node!
You're helping to strengthen the network and contributing to a social good :)

@mpguerra mpguerra linked an issue Oct 18, 2023 that may be closed by this pull request
14 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-trivial Category: A trivial change that is not worth mentioning in the CHANGELOG
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Publish next Zebra release: 1.3.0
4 participants