5.2 KiB
5.2 KiB
PENDING
BREAKING CHANGES
-
Gaia REST API (
gaiacli advanced rest-server
)- [gaia-lite] [#2182] Renamed and merged all redelegations endpoints into
/staking/redelegations
- #3176
tx/sign
endpoint now expectsBaseReq
fields as nested object. - [#2222] all endpoints renamed from
/stake
->/staking
- [gaia-lite] [#2182] Renamed and merged all redelegations endpoints into
-
Gaia CLI (
gaiacli
)- #810 Don't fallback to any default values for chain ID.
- Users need to supply chain ID either via config file or the
--chain-id
flag. - Change
chain_id
andtrust_node
ingaiacli
configuration tochain-id
andtrust-node
respectively.
- Users need to supply chain ID either via config file or the
- #3069
--fee
flag renamed to--fees
to support multiple coins - #3156 Remove unimplemented
gaiacli init
command - [#2222]
gaiacli tx stake
->gaiacli tx staking
,gaiacli query stake
->gaiacli query staking
- #810 Don't fallback to any default values for chain ID.
-
Gaia
- https://github.com/cosmos/cosmos-sdk/issues/2838 - Move store keys to constants
- #3162 The
--gas
flag now takesauto
instead ofsimulate
in order to trigger a simulation of the tx before the actual execution. - #3285 New
gaiad tendermint version
to print libs versions
-
SDK
- [staking] #2513 Validator power type from Dec -> Int
- [staking] #3233 key and value now contain duplicate fields to simplify code
- #3064 Sanitize
sdk.Coin
denom. Coins denoms are now case insensitive, i.e. 100fooToken equals to 100FOOTOKEN. - #3195 Allows custom configuration for syncable strategy
- #3242 Fix infinite gas meter utilization during aborted ante handler executions.
- [#2222] [x/staking]
/stake
->/staking
module rename
-
Tendermint
- #3279 Upgrade to Tendermint 0.28.0-dev0
FEATURES
-
Gaia REST API (
gaiacli advanced rest-server
) -
Gaia CLI (
gaiacli
)- #2399 Implement
params
command to query slashing parameters. - #3027 Implement
query gov proposer [proposal-id]
to query for a proposal's proposer.
- #2399 Implement
-
Gaia
- [#2182] [x/staking] Added querier for querying a single redelegation
-
SDK
- #2996 Update the
AccountKeeper
to contain params used in the context of the ante handler. - #3179 New CodeNoSignatures error code.
- #2996 Update the
-
Tendermint
IMPROVEMENTS
-
Gaia REST API
-
Gaia CLI (
gaiacli
)- #3224 Support adding offline public keys to the keystore
-
Gaia
-
SDK
-
Tendermint
-
CI
- #2498 Added macos CI job to CircleCI
- #142 Increased the number of blocks to be tested during multi-sim
BUG FIXES
-
Gaia REST API
-
Gaia CLI (
gaiacli
)- #3141 Fix the bug in GetAccount when
len(res) == 0
anderr == nil
- #3141 Fix the bug in GetAccount when
-
Gaia
- #3148 Fix
gaiad export
by adding a boolean toNewGaiaApp
determining whether or not to load the latest version - #3181 Correctly reset total accum update height and jailed-validator bond height / unbonding height on export-for-zero-height
- #3172 Fix parsing
gaiad.toml
when it already exists. - #3223 Fix unset governance proposal queues when importing state from old chain
- #3187 Fix
gaiad export
by resetting each validator's slashing period.
- #3148 Fix
-
SDK
-
Tendermint