From fb03ed447f6321f9f79a538e3232df59f6b41cc2 Mon Sep 17 00:00:00 2001 From: Nate Date: Fri, 20 Dec 2024 09:20:59 -0800 Subject: [PATCH] ci: ignore conventional commits --- .changeset/add_support_for_rhp4.md | 7 +++++ .changeset/add_support_for_rhp4_accounts.md | 5 ---- ...d_support_for_announcing_rhp4_addresses.md | 5 ---- .changeset/support_v2_hardfork.md | 26 +++++++++++++++++++ .changeset/switch_to_core_consensus.md | 7 +++++ knope.toml | 3 ++- 6 files changed, 42 insertions(+), 11 deletions(-) create mode 100644 .changeset/add_support_for_rhp4.md delete mode 100644 .changeset/add_support_for_rhp4_accounts.md delete mode 100644 .changeset/added_support_for_announcing_rhp4_addresses.md create mode 100644 .changeset/support_v2_hardfork.md create mode 100644 .changeset/switch_to_core_consensus.md diff --git a/.changeset/add_support_for_rhp4.md b/.changeset/add_support_for_rhp4.md new file mode 100644 index 00000000..eb1ad4a0 --- /dev/null +++ b/.changeset/add_support_for_rhp4.md @@ -0,0 +1,7 @@ +--- +default: minor +--- + +# Add RHP4 support + +RHP4 is the next generation of renter-host protocol for the Sia storage network. It dramatically increases performance compared to RHP3, improves contract payouts, reduces collateral lockup, and enables features necessary for light clients. The new protocol will be available and activated starting at block height `513400` (March 10th, 2025). diff --git a/.changeset/add_support_for_rhp4_accounts.md b/.changeset/add_support_for_rhp4_accounts.md deleted file mode 100644 index dde3ef98..00000000 --- a/.changeset/add_support_for_rhp4_accounts.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: minor ---- - -# Add support for RHP4 accounts diff --git a/.changeset/added_support_for_announcing_rhp4_addresses.md b/.changeset/added_support_for_announcing_rhp4_addresses.md deleted file mode 100644 index 5dab2acb..00000000 --- a/.changeset/added_support_for_announcing_rhp4_addresses.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: minor ---- - -# Support announcing RHP4 addresses diff --git a/.changeset/support_v2_hardfork.md b/.changeset/support_v2_hardfork.md new file mode 100644 index 00000000..a2c20456 --- /dev/null +++ b/.changeset/support_v2_hardfork.md @@ -0,0 +1,26 @@ +--- +default: major +--- + +# Support V2 Hardfork + +The V2 hardfork is scheduled to modernize Sia's consensus protocol, which has been untouched since Sia's mainnet launch back in 2014, and improve accessibility of the storage network. To ensure a smooth transition from V1, it will be executed in two phases. Additional documentation on upgrading will be released in the near future. + +#### V2 Highlights +- Drastically reduces blockchain size on disk +- Improves UTXO spend policies - including HTLC support for Atomic Swaps +- More efficient contract renewals - reducing lock up requirements for hosts and renters +- Improved transfer speeds - enables hot storage + +#### Phase 1 - Allow Height +- **Activation Height:** `513400` (March 10th, 2025) +- **New Features:** V2 transactions, contracts, and RHP4 +- **V1 Support:** Both V1 and V2 will be supported during this phase +- **Purpose:** This period gives time for integrators to transition from V1 to V2 +- **Requirements:** Users will need to update to support the hardfork before this block height + +#### Phase 2 - Require Height +- **Activation Height:** `526000` (June 6th, 2025) +- **New Features:** The consensus database can be trimmed to only store the Merkle proofs +- **V1 Support:** V1 will be disabled, including RHP2 and RHP3. Only V2 transactions will be accepted +- **Requirements:** Developers will need to update their apps to support V2 transactions and RHP4 before this block height diff --git a/.changeset/switch_to_core_consensus.md b/.changeset/switch_to_core_consensus.md new file mode 100644 index 00000000..b6105937 --- /dev/null +++ b/.changeset/switch_to_core_consensus.md @@ -0,0 +1,7 @@ +--- +default: major +--- + +# Switch to `core` consensus + +Removes the last legacy code from `siad`. Switching between Mainnet and Testnet can now be done with a CLI flag e.g. `--network=zen`. This will require hosts to resync the blockchain. Refrain from upgrading if contracts are about to expire. diff --git a/knope.toml b/knope.toml index 47b3be0c..2284c9a6 100644 --- a/knope.toml +++ b/knope.toml @@ -18,6 +18,7 @@ command = "git switch -c release" [[workflows.steps]] type = "PrepareRelease" +ignore_conventional_commits = true [[workflows.steps]] type = "Command" @@ -46,7 +47,7 @@ variables = { "$changelog" = "ChangelogEntry", "$version" = "Version" } # Do not enable releases, just changelogs for now. # [[workflows]] # name = "release" -# +# # [[workflows.steps]] # type = "Release"