Do RabbitMQ Input and Output plugins support TLSv1.1 or TLSv1.2?

I can't seem to find much information about it but I have been trying to connect my Logstash servers to RabbitMQ through either TLSv1.1 or TLSv1.2 because there are some security issues with TLSv1. How I currently have it set up is one Logstash server receives logs then sends them to RabbitMQ. Another Logstash server consumes from RabbitMQ, filters the logs, and then sends those off to an Elasticsearch cluster. I'm using the logstash-output-rabbitmq plugin for the first Logstash server and the logstash-input-rabbitmq for the second. Both servers connect to RabbitMQ just fine through TLSv1 but when I try TLSv1.1 or TLSv1.2 I get these errors:

Logstash server using output plugin:

{:timestamp=>"2016-02-16T08:16:49.268000-0700", :message=>"The error reported is: \n Received fatal alert: protocol_version"}
This message only appears once and Logstash doesn't appear to try and reestablish a connection.

Logstash server using input plugin:

{:timestamp=>"2016-02-16T08:27:46.573000-0700", :message=>"Received fatal alert: protocol_version", :class=>"Java::JavaxNetSsl::SSLException", :location=>"sun.security.ssl.Alerts.getSSLException(sun/security/ssl/Alerts.java:208)", :level=>:warn}
This server does try and connect again every second.

RabbitMQ Log:

=ERROR REPORT==== 16-Feb-2016::08:00:25 ===
SSL: hello: tls_handshake.erl:174:Fatal error: protocol version

Here are my configurations for each:

output {
rabbitmq {
exchange => "type"
exchange_type => "direct"
host => "x.x.x.x"
port =>
durable => true
persistent => true
ssl => true
verify_ssl => true
user => ""
password => ""
}
}

input {
rabbitmq {
queue => "type-queue"
exchange => "type"
host => "x.x.x.x"
durable => true
port =>
ssl => true
verify_ssl => true
prefetch_count => 2048
threads => 4
user => ""
password => ""
}
}

RabbitMQ Configuration:

[
{ssl, [{versions, ['tlsv1.2', 'tlsv1.1']}]},
{rabbit, [
{ssl_listeners, },
{ssl_options, [{cacertfile,"/path/to/cacert.pem"},
{certfile, "/path/to/cert.pem"},
{keyfile, "/path/to/key.pem"},
{versions, ['tlsv1.2', 'tlsv1.1']},
{verify, verify_peer},
{fail_if_no_peer_cert, false}]}
]}
].

Versions:

RabbitMQ 3.6.1
Erlang 18.2
Logstash 2.2.2
logstash-output-plugin 3.0.7
logstash-input-plugin 3.1.4
jdk1.8.0_73

Thanks in advance for any help.

EDIT: I've updated both RabbitMQ and Logstash to their latest versions. Still no luck. I also changed to Oracle JDK instead of openjdk. I get the same errors.

It appears that the latest update to the plugins has fixed this for me.