Skip to content

Commit

Permalink
Merge tag 'v0.35.1' into backport/0.35.1
Browse files Browse the repository at this point in the history
Release v0.35.1
  • Loading branch information
lklimek committed Mar 30, 2022
2 parents 75614bb + 7983f9c commit a138df2
Show file tree
Hide file tree
Showing 9 changed files with 314 additions and 185 deletions.
11 changes: 0 additions & 11 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,16 @@ Special thanks to external contributors on this release:

- CLI/RPC/Config

- [config] [\#7276](https://github.com/tendermint/tendermint/pull/7276) rpc: Add experimental config params to allow for subscription buffer size control (@thanethomson).

- Apps

- P2P Protocol

- [p2p] [\#7265](https://github.com/tendermint/tendermint/pull/7265) Peer manager reduces peer score for each failed dial attempts for peers that have not successfully dialed. (@tychoish)

- Go API

- Blockchain Protocol

### FEATURES

- [rpc] [\#7270](https://github.com/tendermint/tendermint/pull/7270) Add `header` and `header_by_hash` RPC Client queries. (@fedekunze) (@cmwaters)

### IMPROVEMENTS
- [internal/protoio] \#7325 Optimized `MarshalDelimited` by inlining the common case and using a `sync.Pool` in the worst case. (@odeke-em)

- [\#7338](https://github.com/tendermint/tendermint/pull/7338) pubsub: Performance improvements for the event query API (backport of #7319) (@creachadair)

### BUG FIXES

- [\#7310](https://github.com/tendermint/tendermint/issues/7310) pubsub: Report a non-nil error when shutting down (fixes #7306).
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,11 @@ NUM_SPLIT ?= 4
$(BUILDDIR):
mkdir -p $@

# the format statement filters out all packages that don't have tests.
# The format statement filters out all packages that don't have tests.
# Note we need to check for both in-package tests (.TestGoFiles) and
# out-of-package tests (.XTestGoFiles).
$(BUILDDIR)/packages.txt:$(GO_TEST_FILES) $(BUILDDIR)
go list -f "{{ if .TestGoFiles }}{{ .ImportPath }}{{ end }}" ./... | sort > $@
go list -f "{{ if (or .TestGoFiles .XTestGoFiles) }}{{ .ImportPath }}{{ end }}" ./... | sort > $@

split-test-packages:$(BUILDDIR)/packages.txt
split -d -n l/$(NUM_SPLIT) $< $<.
Expand Down
47 changes: 36 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,71 @@ go 1.16

require (
github.com/BurntSushi/toml v1.0.0
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Workiva/go-datastructures v1.0.53
github.com/adlio/schema v1.2.3
github.com/adlio/schema v1.3.0
github.com/btcsuite/btcd v0.22.0-beta
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/containerd/continuity v0.2.2 // indirect
github.com/dashevo/dashd-go v0.23.4
github.com/dashevo/dashd-go/btcec/v2 v2.0.6 // indirect
github.com/dashpay/bls-signatures/go-bindings v0.0.0-20201127091120-745324b80143
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
github.com/dgraph-io/ristretto v0.1.0 // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/didip/tollbooth/v6 v6.1.2 // indirect
github.com/didip/tollbooth_chi v0.0.0-20200828173446-a7173453ea21 // indirect
github.com/fortytw2/leaktest v1.3.0
github.com/go-chi/chi v4.1.2+incompatible // indirect
github.com/go-kit/kit v0.12.0
github.com/go-pkgz/jrpc v0.2.0
github.com/go-pkgz/rest v1.13.0 // indirect
github.com/gogo/protobuf v1.3.2
github.com/golang/glog v1.0.0 // indirect
github.com/golang/protobuf v1.5.2
github.com/golangci/golangci-lint v1.43.0
github.com/golang/snappy v0.0.4 // indirect
github.com/golangci/golangci-lint v1.44.0
github.com/google/btree v1.0.1 // indirect
github.com/google/orderedcode v0.0.1
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.5.0
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/klauspost/compress v1.15.1 // indirect
github.com/lib/pq v1.10.4
github.com/libp2p/go-buffer-pool v0.0.2
github.com/magiconair/properties v1.8.6 // indirect
github.com/minio/highwayhash v1.0.2
github.com/mroth/weightedrand v0.4.1
github.com/oasisprotocol/curve25519-voi v0.0.0-20210609091139-0a56a4bca00b
github.com/oasisprotocol/curve25519-voi v0.0.0-20220328075252-7dd334e3daae
github.com/opencontainers/runc v1.1.1 // indirect
github.com/ory/dockertest v3.3.5+incompatible
github.com/prometheus/client_golang v1.12.0
github.com/petermattis/goid v0.0.0-20220302125637-5f11c28912df // indirect
github.com/prometheus/client_golang v1.12.1
github.com/prometheus/common v0.33.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/rs/cors v1.8.2
github.com/rs/zerolog v1.26.1
github.com/sasha-s/go-deadlock v0.3.1
github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa
github.com/spf13/cobra v1.3.0
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cobra v1.4.0
github.com/spf13/viper v1.10.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/tm-db v0.6.4
github.com/vektra/mockery/v2 v2.9.4
golang.org/x/crypto v0.0.0-20220214200702-86341886e292
golang.org/x/net v0.0.0-20211208012354-db4efeb81f4b
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.1
github.com/tendermint/tm-db v0.6.7
github.com/vektra/mockery/v2 v2.10.0
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064
golang.org/x/net v0.0.0-20220325170049-de3da57026de
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
google.golang.org/grpc v1.43.0
golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f // indirect
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7 // indirect
google.golang.org/grpc v1.45.0
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
pgregory.net/rapid v0.4.7
)

Expand Down
Loading

0 comments on commit a138df2

Please sign in to comment.