@@ -41,9 +41,13 @@ Ref: https://keepachangelog.com/en/1.0.0/
41
41
42
42
* (modules) [ \# 5572] ( https://github.com/cosmos/cosmos-sdk/pull/5572 ) The ` /bank/balances/{address} ` endpoint now returns all account
43
43
balances or a single balance by denom when the ` denom ` query parameter is present.
44
+ * (client) [ \# 5640] ( https://github.com/cosmos/cosmos-sdk/pull/5640 ) The rest server endpoint ` /swagger-ui/ ` is replaced by
45
+ ´/´.
44
46
45
47
### API Breaking Changes
46
48
49
+ * (x/params) [ \# 5619] ( https://github.com/cosmos/cosmos-sdk/pull/5619 ) The ` x/params ` keeper now accepts a ` codec.Marshaller ` instead of
50
+ a reference to an amino codec. Amino is still used for JSON serialization.
47
51
* (types) [ \# 5579] ( https://github.com/cosmos/cosmos-sdk/pull/5579 ) The ` keepRecent ` field has been removed from the ` PruningOptions ` type.
48
52
The ` PruningOptions ` type now only includes fields ` KeepEvery ` and ` SnapshotEvery ` , where ` KeepEvery `
49
53
determines which committed heights are flushed to disk and ` SnapshotEvery ` determines which of these
@@ -56,14 +60,7 @@ and provided directly the IAVL store.
56
60
57
61
### Bug Fixes
58
62
59
- * (x/gov) [ \# 5622] ( https://github.com/cosmos/cosmos-sdk/pull/5622 ) Track any events emitted from a proposal's handler upon successful execution.
60
- * (types) [ \# 5579] ( https://github.com/cosmos/cosmos-sdk/pull/5579 ) The IAVL ` Store#Commit ` method has been refactored to
61
- delete a flushed version if it is not a snapshot version. The root multi-store now keeps track of ` commitInfo ` instead
62
- of ` types.CommitID ` . During ` Commit ` of the root multi-store, ` lastCommitInfo ` is updated from the saved state
63
- and is only flushed to disk if it is a snapshot version. During ` Query ` of the root multi-store, if the request height
64
- is the latest height, we'll use the store's ` lastCommitInfo ` . Otherwise, we fetch ` commitInfo ` from disk.
65
- * (x/bank) [ \# 5531] ( https://github.com/cosmos/cosmos-sdk/issues/5531 ) Added missing amount event to MsgMultiSend, emitted for each output.
66
- * (client) [ \# 5618] ( https://github.com/cosmos/cosmos-sdk/pull/5618 ) Fix crash on the client when the verifier is not set.
63
+ * (client) [ \# 5618] ( https://github.com/cosmos/cosmos-sdk/pull/5618 ) Fix crash on the client when the verifier is not set.
67
64
* (x/distribution) [ \# 5620] ( https://github.com/cosmos/cosmos-sdk/pull/5620 ) Fix nil pointer deref in distribution tax/rewward validation helpers.
68
65
* (genesis) [ \# 5086] ( https://github.com/cosmos/cosmos-sdk/issues/5086 ) Ensure ` gentxs ` are always an empty array instead of ` nil `
69
66
@@ -103,9 +100,6 @@ serialization instead of Amino.
103
100
104
101
### Improvements
105
102
106
- * (modules) [ \# 5597] ( https://github.com/cosmos/cosmos-sdk/pull/5597 ) Add ` amount ` event attribute to the ` complete_unbonding `
107
- and ` complete_redelegation ` events that reflect the total balances of the completed unbondings and redelegations
108
- respectively.
109
103
* (types) [ \# 5581] ( https://github.com/cosmos/cosmos-sdk/pull/5581 ) Add convenience functions {,Must}Bech32ifyAddressBytes.
110
104
* (staking) [ \# 5584] ( https://github.com/cosmos/cosmos-sdk/pull/5584 ) Add util function ` ToTmValidator ` that converts a ` staking.Validator ` type to ` *tmtypes.Validator ` .
111
105
* (client) [ \# 5585] ( https://github.com/cosmos/cosmos-sdk/pull/5585 ) IBC additions:
@@ -115,6 +109,24 @@ respectively.
115
109
* ` Coin ` denomination max lenght has been increased to 32.
116
110
* Added ` CapabilityKey ` alias for ` StoreKey ` to match IBC spec.
117
111
112
+ ## [ v0.38.1] - 2020-02-11
113
+
114
+ ### Improvements
115
+
116
+ * (modules) [ \# 5597] ( https://github.com/cosmos/cosmos-sdk/pull/5597 ) Add ` amount ` event attribute to the ` complete_unbonding `
117
+ and ` complete_redelegation ` events that reflect the total balances of the completed unbondings and redelegations
118
+ respectively.
119
+
120
+ ### Bug Fixes
121
+
122
+ * (types) [ \# 5579] ( https://github.com/cosmos/cosmos-sdk/pull/5579 ) The IAVL ` Store#Commit ` method has been refactored to
123
+ delete a flushed version if it is not a snapshot version. The root multi-store now keeps track of ` commitInfo ` instead
124
+ of ` types.CommitID ` . During ` Commit ` of the root multi-store, ` lastCommitInfo ` is updated from the saved state
125
+ and is only flushed to disk if it is a snapshot version. During ` Query ` of the root multi-store, if the request height
126
+ is the latest height, we'll use the store's ` lastCommitInfo ` . Otherwise, we fetch ` commitInfo ` from disk.
127
+ * (x/bank) [ \# 5531] ( https://github.com/cosmos/cosmos-sdk/issues/5531 ) Added missing amount event to MsgMultiSend, emitted for each output.
128
+ * (x/gov) [ \# 5622] ( https://github.com/cosmos/cosmos-sdk/pull/5622 ) Track any events emitted from a proposal's handler upon successful execution.
129
+
118
130
## [ v0.38.0] - 2020-01-23
119
131
120
132
### State Machine Breaking
@@ -2953,7 +2965,8 @@ BUG FIXES:
2953
2965
2954
2966
<!-- Release links -->
2955
2967
2956
- [ Unreleased ] : https://github.com/cosmos/cosmos-sdk/compare/v0.38.0...HEAD
2968
+ [ Unreleased ] : https://github.com/cosmos/cosmos-sdk/compare/v0.38.1...HEAD
2969
+ [ v0.38.1 ] : https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.1
2957
2970
[ v0.38.0 ] : https://github.com/cosmos/cosmos-sdk/releases/tag/v0.38.0
2958
2971
[ v0.37.7 ] : https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.7
2959
2972
[ v0.37.6 ] : https://github.com/cosmos/cosmos-sdk/releases/tag/v0.37.6
0 commit comments