This is an automated email from the ASF dual-hosted git repository.
Jens-G pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
from 6822d1a65 THRIFT-3606: Fix TSaslClientTransport constructor `props`
parameter type. Client: java
add eda9f8d71 Let TNonblockingServer survive a request it cannot allocate
Client: cpp
add 0b9e7d808 Stop exceptions unwinding out of the libevent callbacks
Client: cpp
add 715316da5 Keep one client's failure from ending the server Client: cpp
add 6860fa756 Report the end of the stream when an HTTP line is cut short
Client: d
add 9139457d3 Follow the crypto/tls default minimum version in the Go TLS
sockets Client: go
add f51d97b68 Follow the modern minimum TLS version on the default c_glib
SSL socket Client: c_glib
add ec1066ab4 Follow Node's default minimum TLS version in the Node.js SSL
client and server Client: nodejs
No new revisions were added by this update.
Summary of changes:
lib/c_glib/README.md | 8 +
.../thrift/c_glib/transport/thrift_ssl_socket.c | 7 +-
lib/c_glib/test/testtransportsslsocket.c | 19 ++
lib/cpp/src/thrift/server/TConnectedClient.cpp | 16 ++
lib/cpp/src/thrift/server/TNonblockingServer.cpp | 37 +++-
lib/cpp/test/CMakeLists.txt | 11 ++
lib/cpp/test/Makefile.am | 11 ++
lib/cpp/test/TNonblockingServerTest.cpp | 184 ++++++++++++++++-
lib/cpp/test/TServerExceptionTest.cpp | 217 +++++++++++++++++++++
lib/d/src/thrift/transport/http.d | 78 +++++++-
lib/go/README.md | 15 ++
lib/go/thrift/ssl_server_socket.go | 5 +-
lib/go/thrift/ssl_socket.go | 5 +-
lib/go/thrift/ssl_socket_test.go | 66 +++++++
lib/nodejs/README.md | 10 +
lib/nodejs/lib/thrift/connection.js | 9 +-
lib/nodejs/lib/thrift/server.js | 11 +-
lib/nodejs/test/ssl_min_version.test.js | 103 ++++++++++
18 files changed, 778 insertions(+), 34 deletions(-)
create mode 100644 lib/cpp/test/TServerExceptionTest.cpp
create mode 100644 lib/go/thrift/ssl_socket_test.go
create mode 100644 lib/nodejs/test/ssl_min_version.test.js