Files
tendermint/CHANGELOG_PENDING.md
yk 2be4b0fe05 rpc/lib: fix RPC client, which was previously resolving https protocol to http (#4131)
Fixes #4051 

Function `parseRemoteAddr` is forcing protocol HTTP and protocol HTTPs to tcp. This causes the bug in the issue #4051.

I find that the tcp is only needed where `net.Dial`. So I moved the switch to makeHTTPDialer.
2019-11-13 18:26:29 +04:00

2.2 KiB

v0.32.8

**

Special thanks to external contributors on this release: @erikgrinaker

Friendly reminder, we have a bug bounty program.

BREAKING CHANGES:

  • CLI/RPC/Config

  • Apps

  • Go API

    • [libs/pubsub] #4070 Query#(Matches|Conditions) returns an error.

FEATURES:

IMPROVEMENTS:

  • [mempool] #4083 Added TxInfo parameter to CheckTx(), and removed CheckTxWithInfo() (@erikgrinaker)
  • [mempool] #4057 Include peer ID when logging rejected txns (@erikgrinaker)
  • [tools] #4023 Improved tm-monitor formatting of start time and avg tx throughput (@erikgrinaker)
  • [libs/pubsub] #4070 No longer panic in Query#(Matches|Conditions) preferring to return an error instead.
  • [libs/pubsub] #4070 Strip out non-numeric characters when attempting to match numeric values.
  • [p2p] #3991 Log "has been established or dialed" as debug log instead of Error for connected peers (@whunmr)
  • [rpc] #4077 Added support for EXISTS clause to the Websocket query interface.
  • [privval] Add SignerDialerEndpointRetryWaitInterval option (@cosmostuba)
  • [crypto] Add RegisterKeyType to amino to allow external key types registration (@austinabell)

BUG FIXES:

  • [tools] #4023 Refresh tm-monitor health when validator count is updated (@erikgrinaker)
  • [state] #4104 txindex/kv: Fsync data to disk immediately after receiving it (@guagualvcha)
  • [state] #4095 txindex/kv: Return an error if there's one when the user searches for a tx (hash=X) (@hsyis)
  • [rpc/lib] #4051 Fix RPC client, which was previously resolving https protocol to http (@yenkhoon)