Skip to content

Commit

Permalink
Merge pull request #2230 from yarpc/zhiyi.pan/release
Browse files Browse the repository at this point in the history
Release yarpc-go 1.70.4
  • Loading branch information
AllenLuUber authored Aug 31, 2023
2 parents d159a30 + 6592f75 commit 4d4c3a6
Show file tree
Hide file tree
Showing 8 changed files with 357 additions and 101 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

=======
## [1.70.4] - 2023-08-31
- logging: fix logged error in observability middleware when fields of transport.Request is in the tagsBlocklist
- `go.mod`: update minimum requirements to go1.21 instead of go1.14 and update `golang.org/x/net v0.7.0` to v0.14.0
- middleware stack usage: remove ~2KB of stack usage from the rpc handler function,
so that it decreases the chance of needing more stack. It can improve the
performance of the application.

## [1.70.3] - 2023-06-27
- tls-outbounds: spiffe ids field has been made optional field. Outbounds
will accept any server certificate issued by the internal CA with any spiffe id
Expand Down Expand Up @@ -1480,6 +1487,7 @@ This release requires regeneration of ThriftRW code.
## 0.1.0 - 2016-08-31
- Initial release.
[1.70.4]: https://github.com/yarpc/yarpc-go/compare/v1.70.3...v1.70.4
[1.70.3]: https://github.com/yarpc/yarpc-go/compare/v1.70.2...v1.70.3
[1.70.2]: https://github.com/yarpc/yarpc-go/compare/v1.70.1...v1.70.2
[1.70.1]: https://github.com/yarpc/yarpc-go/compare/v1.70.0...v1.70.1
Expand Down
58 changes: 35 additions & 23 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,42 +1,25 @@
module go.uber.org/yarpc

go 1.14
go 1.21

require (
github.com/apache/thrift v0.0.0-20161221203622-b2a4d4ae21c7 // indirect
github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b // indirect
github.com/cactus/go-statsd-client/statsd v0.0.0-20191106001114-12b4e2b38748 // indirect
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
github.com/fatih/structtag v1.2.0 // indirect
github.com/gogo/googleapis v1.3.2
github.com/gogo/protobuf v1.3.1
github.com/gogo/status v1.1.0
github.com/golang/mock v1.4.0
github.com/golang/protobuf v1.5.2
github.com/golang/snappy v0.0.1
github.com/kisielk/errcheck v1.2.0
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-shellwords v1.0.10
github.com/opentracing/opentracing-go v1.1.0
github.com/pkg/errors v0.9.1 // indirect
github.com/prashantv/protectmem v0.0.0-20171002184600-e20412882b3a // indirect
github.com/prometheus/client_golang v1.4.1 // indirect
github.com/prometheus/procfs v0.0.9 // indirect
github.com/samuel/go-thrift v0.0.0-20191111193933-5165175b40af // indirect
github.com/streadway/quantile v0.0.0-20150917103942-b0c588724d25 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.5.1
github.com/uber-common/bark v1.2.1 // indirect
github.com/uber-go/mapdecode v1.0.0
github.com/uber-go/tally v3.3.15+incompatible
github.com/uber/jaeger-client-go v2.22.1+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible // indirect
github.com/uber/ringpop-go v0.8.5
github.com/uber/tchannel-go v1.22.2
go.uber.org/atomic v1.5.1
github.com/uber/tchannel-go v1.33.0
go.uber.org/atomic v1.6.0
go.uber.org/fx v1.10.0
go.uber.org/goleak v1.0.0
go.uber.org/multierr v1.4.0
Expand All @@ -45,11 +28,40 @@ require (
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee
go.uber.org/zap v1.13.0
golang.org/x/lint v0.0.0-20200130185559-910be7a94367
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f
golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f
golang.org/x/net v0.14.0
golang.org/x/tools v0.6.0
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
google.golang.org/grpc v1.40.1
google.golang.org/protobuf v1.26.0
gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.4.0
honnef.co/go/tools v0.3.2
)

require (
github.com/BurntSushi/toml v0.4.1 // indirect
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cactus/go-statsd-client/statsd v0.0.0-20191106001114-12b4e2b38748 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/structtag v1.2.0 // indirect
github.com/jessevdk/go-flags v1.4.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.4.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.9.1 // indirect
github.com/prometheus/procfs v0.0.9 // indirect
github.com/samuel/go-thrift v0.0.0-20191111193933-5165175b40af // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/uber-common/bark v1.2.1 // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
go.uber.org/dig v1.8.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
)
Loading

0 comments on commit 4d4c3a6

Please sign in to comment.