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

Problem: v1.0.x changes are not merged into main #816

Merged
merged 37 commits into from
Jan 26, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b0099d1
Problem: eth_sendTransaction is not tested
yihuang Sep 9, 2022
c34a372
Problem: json-rpc apis fail for legacy blocks after upgrade (#696)
yihuang Sep 19, 2022
35abeee
Problem: file changes detection in workflow is problematic (backport …
yihuang Sep 20, 2022
10bb672
Problem: after v0.9.0 upgrade eth_call failed on old blocks (backport…
yihuang Sep 26, 2022
7981ed1
Problem: state streamers are not integrated (backport #702) (#721)
yihuang Sep 26, 2022
d6457e8
Problem: new iavl indexes migration is slow and not optional (#714) (…
yihuang Sep 27, 2022
29e51e7
Problem: recent dependencies are not used (backport #729) (#730)
yihuang Oct 6, 2022
36bb343
Problem: chain state is inconsistent if upgrade migration is interrup…
yihuang Oct 26, 2022
3ddaa0b
Problem: recent fixes in dependencies are not included (#752)
yihuang Oct 31, 2022
2d5a72d
Problem: binary version is not bump to v1.0.0 (#753)
yihuang Nov 1, 2022
3921c10
Problem: recent fixes in dependencies are not used (#757)
yihuang Nov 2, 2022
9998985
Problem: gas used is not backward compatible (#760)
yihuang Nov 4, 2022
f394c8c
Problem: evm execute result is non-deterministic with concurrent grpc…
yihuang Nov 8, 2022
90c2c3e
Problem: extra_eips is not cleared on production network (#762)
yihuang Nov 9, 2022
57d1c53
Problem: no error log when iavl set failure trigger app hash mismatch…
yihuang Nov 9, 2022
df0452a
Problem: different result from eth_getProof comparing with Ethereum (…
yihuang Nov 9, 2022
eba04a0
Problem: nix exceeds github rate limit occationally in CI (backport #…
yihuang Nov 11, 2022
a6f5bbc
Problem: fixes in ibc-go v5.1 are not included (#765)
yihuang Nov 13, 2022
4d14c8f
Problem: london hardfork number failed validation (#771)
yihuang Nov 17, 2022
79254b6
Problem: formal v0.46.5 cosmos-sdk release is not used (#772)
yihuang Nov 21, 2022
68f98e4
Problem: final v1.0.0 is not released (#774)
yihuang Nov 21, 2022
db6ed7a
Problem: manual prune cmd is not included (backport #781) (#782)
yihuang Dec 2, 2022
ca4b871
Problem: cosmos-sdk `v0.46.7` is not used (#790)
yihuang Dec 14, 2022
b3da22d
Problem: discontinued ibc-go version (#802)
yihuang Jan 4, 2023
7ef5b04
Problem: production rocksdb configuration is not optimal (#813)
yihuang Jan 19, 2023
8bd3be9
Problem: prometheus metrics is lost (#814)
yihuang Jan 19, 2023
63b2f37
release v1.0.3
yihuang Jan 19, 2023
d61449f
Merge branch 'release/v1.0.x'
yihuang Jan 19, 2023
0ffc3cd
Update CHANGELOG.md
yihuang Jan 19, 2023
7e2cf47
fix changelog
yihuang Jan 19, 2023
cc26687
fix merge
yihuang Jan 19, 2023
d5022ed
Update integration_tests/test_upgrade.py
yihuang Jan 24, 2023
c6a221c
fix test
mmsqe Jan 25, 2023
2d4d98a
Update integration_tests/configs/default.jsonnet
yihuang Jan 26, 2023
a2ffc3f
Merge branch 'main' into main
tomtau Jan 26, 2023
67a024b
fix test_multiple_attestation_processing
mmsqe Jan 26, 2023
26ed55d
fix changelog
yihuang Jan 26, 2023
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
Problem: manual prune cmd is not included (backport #781) (#782)
Solution:
- add to root cmd
yihuang authored Dec 2, 2022
commit db6ed7a0e87c6fffff9168706184e4a0d906f36b
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## UNRELEASED

### Improvements
- [#781](https://github.com/crypto-org-chain/cronos/pull/781) Add prune command.

*Nov 22, 2022*

## v1.0.0
4 changes: 3 additions & 1 deletion cmd/cronosd/cmd/root.go
Original file line number Diff line number Diff line change
@@ -26,6 +26,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/config"
"github.com/cosmos/cosmos-sdk/client/debug"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/client/pruning"
"github.com/cosmos/cosmos-sdk/client/rpc"
"github.com/cosmos/cosmos-sdk/server"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
@@ -113,6 +114,7 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) {
cfg := sdk.GetConfig()
cfg.Seal()

a := appCreator{encodingConfig}
rootCmd.AddCommand(
ethermintclient.ValidateChainID(
WrapInitCmd(app.DefaultNodeHome),
@@ -126,10 +128,10 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) {
ethermintclient.NewTestnetCmd(app.ModuleBasics, banktypes.GenesisBalancesIterator{}),
debug.Cmd(),
config.Cmd(),
pruning.PruningCmd(a.newApp),
// this line is used by starport scaffolding # stargate/root/commands
)

a := appCreator{encodingConfig}
ethermintserver.AddCommands(rootCmd, app.DefaultNodeHome, a.newApp, a.appExport, addModuleInitFlags)
experimental.AddCommands(rootCmd)