Skip to content

Commit

Permalink
Cut 2.21 release (#1748)
Browse files Browse the repository at this point in the history
* Update service date and fork heights

* Update CHANGELOG.md

* Update fork heights

---------

Co-authored-by: chessai <chessai@users.noreply.github.com>
  • Loading branch information
edmundnoble and chessai authored Oct 3, 2023
1 parent cb0f34c commit 667121e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# `chainweb-node` Changelog

## 2.21 (2023-10-05)

This version replaces all previous versions. Any prior version will stop working
on **2023-10-19T00:00:00Z**. Node administrators must upgrade to this version before
that date.

This version will expire on **2023-12-13T:00:00Z**.

To upgrade, pull the latest docker image or download the binary and restart the node.

Changes:

* Support for WebAuthN signatures in Pact keyset guards. (#1729, see [https://github.com/kadena-io/pact](Pact) #1139)
* Updated to Pact 4.9. (numerous, see [Pact
changelog](https://github.com/kadena-io/pact/releases/tag/v4.9))

Internal Changes:
* Updated from tls package version 1.7.1 to 1.9. (#1734)
* Updated from base64-bytestring package version 1.0.0.3 to 1.2.1.0. (#1729)

## 2.20 (2023-08-28)

This version replaces all previous versions. Any prior version will stop working
Expand Down
4 changes: 2 additions & 2 deletions node/ChainwebNode.hs
Original file line number Diff line number Diff line change
Expand Up @@ -526,10 +526,10 @@ pkgInfoScopes =
-- -------------------------------------------------------------------------- --
-- main

-- SERVICE DATE for version 2.19
-- SERVICE DATE for version 2.21
--
serviceDate :: Maybe String
serviceDate = Just "2023-10-19T00:00:00Z"
serviceDate = Just "2023-12-13T00:00:00Z"

mainInfo :: ProgramInfo ChainwebNodeConfiguration
mainInfo = programInfoValidate
Expand Down
3 changes: 1 addition & 2 deletions src/Chainweb/Version/Mainnet.hs
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,7 @@ mainnet = ChainwebVersion
Chainweb218Pact -> AllChains (ForkAtBlockHeight $ BlockHeight 3_512_363) -- 2023-03-03 00:00:00+00:00
Chainweb219Pact -> AllChains (ForkAtBlockHeight $ BlockHeight 3_774_423) -- 2023-06-02 00:00:00+00:00
Chainweb220Pact -> AllChains (ForkAtBlockHeight $ BlockHeight 4_056_499) -- 2023-09-08 00:00:00+00:00
-- TODO: This is a placeholder!
Chainweb221Pact -> AllChains ForkNever -- TODO: Fix this at release time.
Chainweb221Pact -> AllChains (ForkAtBlockHeight $ BlockHeight 4_177_889) -- 2023-10-20 00:00:00+00:00

, _versionGraphs =
(to20ChainsMainnet, twentyChainGraph) `Above`
Expand Down
2 changes: 1 addition & 1 deletion src/Chainweb/Version/Testnet.hs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ testnet = ChainwebVersion
Chainweb218Pact -> AllChains $ ForkAtBlockHeight $ BlockHeight 3_038_343 -- 2023-03-02 12:00:00+00:00
Chainweb219Pact -> AllChains $ ForkAtBlockHeight $ BlockHeight 3_299_753 -- 2023-06-01 12:00:00+00:00
Chainweb220Pact -> AllChains $ ForkAtBlockHeight $ BlockHeight 3_580_964 -- 2023-09-08 12:00:00+00:00
Chainweb221Pact -> AllChains ForkNever -- TODO: Fix this at release time.
Chainweb221Pact -> AllChains $ ForkAtBlockHeight $ BlockHeight 3_702_250 -- 2023-10-19 12:00:00+00:00

, _versionGraphs =
(to20ChainsTestnet, twentyChainGraph) `Above`
Expand Down

0 comments on commit 667121e

Please sign in to comment.