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

Release v0.39.0 - RC0 #6707

Merged
merged 28 commits into from
Jul 15, 2020
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
dd6f8c8
client/keys/parse: honor config changes (#6340)
Jun 9, 2020
65b6030
Merge PR #6505: Backport v0.38.5: IAVL Bump (RC) & Pruning Refactor
alexanderbez Jun 26, 2020
f5b801b
Fix cl
alexanderbez Jun 26, 2020
0c3be9b
Fix cl
alexanderbez Jun 26, 2020
12ffeee
Merge PR #6551: Ethanfrey/fix trace flag
ethanfrey Jul 1, 2020
1e6431e
Merge PR #6552: Add sender info to bank transfer event
ethanfrey Jul 1, 2020
b933205
deps: bump IAVL to 0.14
alexanderbez Jul 6, 2020
ca08830
cl++
alexanderbez Jul 6, 2020
a15ca8e
Merge PR #6618: backport 0.39.0 (launchpad): cherry pick #5839
alexanderbez Jul 6, 2020
4bc422d
launchpad: bump tendermint to v0.33.6 (#6673)
fedekunze Jul 10, 2020
8ba2440
fix types.ChainAnteDecorators() panic (#5742) (#6669)
Jul 10, 2020
232e720
launchpad: register MsgFundCommunityPool to distribution codec (#6675)
fedekunze Jul 10, 2020
b7f9914
client: backport IBC additions (#6682)
fedekunze Jul 10, 2020
864c621
Save account for multi sending (#6674)
jgimeno Jul 10, 2020
807ea26
baseapp: fix sender events accumulation (#6683)
Jul 13, 2020
411150e
Merge branch 'release/v0.39.0' into launchpad/release/v0.39
Jul 13, 2020
3ebc29f
run go mod tidy
Jul 13, 2020
c6a88ca
add changelog line re: issue that was not included in v0.38.5
Jul 13, 2020
9320f96
Fix changelog
Jul 14, 2020
8feceb0
add release notes
Jul 14, 2020
f384592
update CODEOWNERS as per STABLE_RELEASES.md
Jul 14, 2020
c2108e8
Add milestone's URL
Jul 14, 2020
f63b2ac
Revert "update CODEOWNERS as per STABLE_RELEASES.md"
Jul 14, 2020
2bed712
fix typo
Jul 14, 2020
23f82ff
add example patch
Jul 14, 2020
f4ae40b
launchpad: backport account sequence stuck (#6721)
fedekunze Jul 14, 2020
a0fb47f
update release notes
Jul 14, 2020
c0fe624
make explicit that the regression is fixed in 0.39
Jul 14, 2020
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
Prev Previous commit
Next Next commit
add example patch
  • Loading branch information
Alessio Treglia authored Jul 14, 2020
commit 23f82ff0f71dabbf69536249d7d941ed10f9675c
43 changes: 42 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,48 @@ may want to provide either of the granular pruning values:

The former two options dictate how many recent versions are kept on disk and the offset of what versions are kept after that
respectively, and the latter defines the height interval in which versions are deleted in a batch. **Note: there are are some
client application breaking changes with regard to IAVL, stores, and pruning settings.**
client application breaking changes with regard to IAVL, stores, and pruning settings.** An example patch follows:

```patch
From 5884171ba73c3054e98564c39adc9cbbab8d4646 Mon Sep 17 00:00:00 2001
From: Alessio Treglia <alessio@tendermint.com>
Date: Tue, 14 Jul 2020 14:54:19 +0100
Subject: [PATCH 2/4] use new pruning options

---
cmd/cnd/main.go | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/cmd/cnd/main.go b/cmd/cnd/main.go
index b0c86f4a..4a3a8518 100644
--- a/cmd/cnd/main.go
+++ b/cmd/cnd/main.go
@@ -23,7 +23,6 @@ import (
comgenutilcli "github.com/commercionetwork/commercionetwork/x/genutil/client/cli"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/server"
- "github.com/cosmos/cosmos-sdk/store"
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
"github.com/cosmos/cosmos-sdk/x/staking"
)
@@ -87,9 +86,14 @@ func main() {
}

func newApp(logger log.Logger, db dbm.DB, traceStore io.Writer) abci.Application {
+ pruningOpts, err := server.GetPruningOptionsFromFlags()
+ if err != nil {
+ panic(err)
+ }
+
return app.NewCommercioNetworkApp(
logger, db, traceStore, true, invCheckPeriod,
- baseapp.SetPruning(store.NewPruningOptionsFromString(viper.GetString("pruning"))),
+ baseapp.SetPruning(pruningOpts),
baseapp.SetMinGasPrices(viper.GetString(server.FlagMinGasPrices)),
baseapp.SetHaltHeight(uint64(viper.GetInt(server.FlagHaltHeight))),
)
```


### Migrate a node from 0.38.5 to 0.39.0

Expand Down