From 97470ac520bd100a442eac07ad004aa953f99bc5 Mon Sep 17 00:00:00 2001 From: ar Date: Tue, 14 May 2024 17:28:03 -0400 Subject: [PATCH 1/4] Reduce the end of support time from 20 weeks to 16 weeks. --- zebrad/src/components/sync/end_of_support.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zebrad/src/components/sync/end_of_support.rs b/zebrad/src/components/sync/end_of_support.rs index cc006cfc122..cedcce0e8e0 100644 --- a/zebrad/src/components/sync/end_of_support.rs +++ b/zebrad/src/components/sync/end_of_support.rs @@ -22,8 +22,8 @@ pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_496_122; /// /// - Zebra will exit with a panic if the current tip height is bigger than the `ESTIMATED_RELEASE_HEIGHT` /// plus this number of days. -/// - Currently set to 20 weeks. -pub const EOS_PANIC_AFTER: u32 = 140; +/// - Currently set to 16 weeks. +pub const EOS_PANIC_AFTER: u32 = 112; /// The number of days before the end of support where Zebra will display warnings. pub const EOS_WARN_AFTER: u32 = EOS_PANIC_AFTER - 14; From 2c8c4a684b6a7f0fc57c4b1f295892fc01eabc02 Mon Sep 17 00:00:00 2001 From: ar Date: Tue, 14 May 2024 18:30:06 -0400 Subject: [PATCH 2/4] Update release-process section of the book --- book/src/dev/release-process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/dev/release-process.md b/book/src/dev/release-process.md index 88470f9fcec..606e9a03682 100644 --- a/book/src/dev/release-process.md +++ b/book/src/dev/release-process.md @@ -33,7 +33,7 @@ The pre-release version is denoted by appending a hyphen and a series of dot sep ### Supported Releases -Every Zebra version released by the Zcash Foundation is supported up to a specific height. Currently we support each version for about **20 weeks** but this can change from release to release. +Every Zebra version released by the Zcash Foundation is supported up to a specific height. Currently we support each version for about **16 weeks** but this can change from release to release. When the Zcash chain reaches this end of support height, `zebrad` will shut down and the binary will refuse to start. From 14fe328584c13bba52f23d70065382b6e7bceca5 Mon Sep 17 00:00:00 2001 From: Arya Date: Tue, 14 May 2024 21:23:25 -0400 Subject: [PATCH 3/4] Adds changelog entry --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 989ff3621d4..2cf645a7504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to Zebra are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org). +## Zebra 1.X.X - XXXX-XX-XX + +### Changed + +- Adjust end of support from 20 to 16 weeks ([#8530](https://github.com/ZcashFoundation/zebra/pull/8530)) + + ## [Zebra 1.7.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.7.0) - 2024-05-07 In this release we introduce Regtest functionality to Zebra and restored Windows support. Also adjusted our Zebra release interval from 2 weeks to 6 weeks approximately. From 2aa7a569b253852c24c2802eee50e7eb96bca46e Mon Sep 17 00:00:00 2001 From: Arya Date: Wed, 15 May 2024 10:52:43 -0400 Subject: [PATCH 4/4] Update CHANGELOG.md Co-authored-by: Alfredo Garcia --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cf645a7504..ecf031ee39b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org). ### Changed -- Adjust end of support from 20 to 16 weeks ([#8530](https://github.com/ZcashFoundation/zebra/pull/8530)) +- We realized that a longer than `zcashd` end of support could be problematic in some cases so we reverted back from 20 to 16 weeks ([#8530](https://github.com/ZcashFoundation/zebra/pull/8530)) ## [Zebra 1.7.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.7.0) - 2024-05-07