[DRE-commits] [ruby-bunny] 01/08: Merge tag 'upstream/2.6.1'
Antonio Terceiro
terceiro at moszumanska.debian.org
Sat Dec 10 15:55:17 UTC 2016
This is an automated email from the git hooks/post-receive script.
terceiro pushed a commit to branch master
in repository ruby-bunny.
commit 69f6ce0740740e2946fd767ecc6ccdab4f36ca53
Merge: db80059 3f96fea
Author: Antonio Terceiro <terceiro at debian.org>
Date: Sat Dec 10 10:40:03 2016 -0200
Merge tag 'upstream/2.6.1'
Upstream version 2.6.1
# gpg: Signature made sáb 10 dez 2016 10:40:00 BRST
# gpg: using RSA key B2DEE66036C40829FCD0F10CFC0DB1BBCD460BDE
# gpg: Good signature from "Antonio Terceiro <terceiro at softwarelivre.org>" [ultimate]
# gpg: aka "Antonio Terceiro <terceiro at dcc.ufba.br>" [ultimate]
# gpg: aka "Antonio Terceiro <terceiro at colivre.coop.br>" [ultimate]
# gpg: aka "Antonio Terceiro <terceiro at debian.org>" [ultimate]
# gpg: aka "Antonio Terceiro <antonio.terceiro at linaro.org>" [ultimate]
# gpg: aka "Antonio Terceiro <antonio.terceiro at linaro.org>" [ultimate]
.gitignore | 1 +
.rspec | 4 +-
.ruby-version | 1 -
.travis.yml | 20 +-
CONTRIBUTING.md | 80 +++
ChangeLog.md | 559 ++++++++++++++++++++-
Gemfile | 5 +-
LICENSE | 2 +-
README.md | 71 +--
Rakefile | 27 +
bin/ci/before_build | 42 ++
bin/ci/before_build.sh | 31 --
bin/ci/start_rabbitmq | 9 +
bunny.gemspec | 13 +-
checksums.yaml.gz | Bin 267 -> 0 bytes
docker/Dockerfile | 14 +
docker/docker-entrypoint.sh | 40 ++
.../automatic_recovery_with_client_named_queues.rb | 2 +-
examples/connection/channel_level_exception.rb | 8 -
examples/consumers/high_and_low_priority.rb | 50 ++
examples/guides/extensions/alternate_exchange.rb | 2 +
examples/guides/extensions/basic_nack.rb | 2 +-
examples/guides/extensions/dead_letter_exchange.rb | 2 +-
examples/guides/getting_started/hello_world.rb | 2 +
examples/guides/getting_started/weathr.rb | 2 +
examples/guides/queues/one_off_consumer.rb | 2 +
examples/guides/queues/redeliveries.rb | 6 +-
lib/bunny.rb | 8 +-
lib/bunny/channel.rb | 340 ++++++++-----
lib/bunny/compatibility.rb | 24 -
lib/bunny/concurrent/continuation_queue.rb | 43 +-
lib/bunny/consumer.rb | 27 +-
lib/bunny/consumer_work_pool.rb | 41 +-
lib/bunny/cruby/socket.rb | 53 +-
lib/bunny/cruby/ssl_socket.rb | 51 +-
lib/bunny/exceptions.rb | 23 +-
lib/bunny/exchange.rb | 54 +-
lib/bunny/get_response.rb | 83 +++
lib/bunny/heartbeat_sender.rb | 2 +-
lib/bunny/jruby/socket.rb | 3 +-
lib/bunny/queue.rb | 78 +--
lib/bunny/reader_loop.rb | 67 ++-
lib/bunny/session.rb | 505 +++++++++++++------
lib/bunny/system_timer.rb | 20 -
lib/bunny/timeout.rb | 13 +-
lib/bunny/transport.rb | 185 ++++---
lib/bunny/version.rb | 2 +-
metadata.yml | 305 -----------
spec/compatibility/queue_declare_spec.rb | 44 --
.../queue_declare_with_default_channel_spec.rb | 33 --
spec/config/enabled_plugins | 1 +
spec/config/rabbitmq.config | 18 +
.../higher_level_api/integration/basic_ack_spec.rb | 175 ++++++-
.../integration/basic_cancel_spec.rb | 74 ++-
.../integration/basic_consume_spec.rb | 49 +-
.../integration/basic_consume_with_objects_spec.rb | 4 +-
.../higher_level_api/integration/basic_get_spec.rb | 22 +-
.../integration/basic_nack_spec.rb | 27 +-
.../integration/basic_publish_spec.rb | 113 ++---
.../higher_level_api/integration/basic_qos_spec.rb | 34 +-
.../integration/basic_recover_spec.rb | 4 +-
.../integration/basic_reject_spec.rb | 96 +++-
.../integration/basic_return_spec.rb | 2 +-
.../integration/channel_close_spec.rb | 4 +-
.../integration/channel_flow_spec.rb | 21 -
.../integration/channel_open_spec.rb | 22 +-
.../integration/confirm_select_spec.rb | 19 -
.../integration/connection_recovery_spec.rb | 421 ++++++++++++++++
.../integration/connection_spec.rb | 333 ++++++++----
.../integration/connection_stop_spec.rb | 63 ++-
.../integration/consistent_hash_exchange_spec.rb | 43 +-
.../consumer_cancellation_notification_spec.rb | 6 +-
.../integration/dead_lettering_spec.rb | 35 +-
.../integration/exchange_bind_spec.rb | 2 +-
.../integration/exchange_declare_spec.rb | 47 +-
.../integration/exchange_delete_spec.rb | 22 +-
.../integration/exchange_unbind_spec.rb | 6 +-
.../higher_level_api/integration/heartbeat_spec.rb | 32 +-
.../integration/merry_go_round_spec.rb | 4 +-
.../integration/message_properties_access_spec.rb | 56 +--
.../integration/predeclared_exchanges_spec.rb | 2 +-
.../integration/publisher_confirms_spec.rb | 198 ++++++--
.../integration/publishing_edge_cases_spec.rb | 36 +-
.../integration/queue_bind_spec.rb | 26 +-
.../integration/queue_declare_spec.rb | 74 ++-
.../integration/queue_delete_spec.rb | 2 +-
.../integration/queue_purge_spec.rb | 4 +-
.../integration/queue_unbind_spec.rb | 6 +-
.../integration/read_only_consumer_spec.rb | 6 +-
.../sender_selected_distribution_spec.rb | 8 +-
.../integration/tls_connection_spec.rb | 63 ++-
.../integration/with_channel_spec.rb | 2 +-
spec/issues/issue100_spec.rb | 18 +-
spec/issues/issue141_spec.rb | 23 +-
spec/issues/issue202_spec.rb | 15 +
spec/issues/issue224_spec.rb | 40 ++
spec/issues/issue78_spec.rb | 36 +-
spec/issues/issue83_spec.rb | 11 +-
spec/issues/issue97_spec.rb | 51 +-
.../integration/basic_cancel_spec.rb | 42 +-
.../integration/basic_consume_spec.rb | 39 +-
spec/spec_helper.rb | 27 +-
spec/stress/channel_close_stress_spec.rb | 64 +++
spec/stress/channel_open_stress_spec.rb | 20 +-
..._stress_with_single_threaded_connection_spec.rb | 13 +-
spec/stress/concurrent_consumers_stress_spec.rb | 26 +-
spec/stress/concurrent_publishers_stress_spec.rb | 32 +-
spec/stress/connection_open_close_spec.rb | 24 +-
spec/stress/long_running_consumer_spec.rb | 13 +-
...or_confirms_with_connection_loss_stress_spec.rb | 131 +++++
spec/tls/ca_certificate.pem | 18 +
spec/tls/ca_key.pem | 27 +
spec/tls/cacert.pem | 18 -
spec/tls/client_cert.pem | 18 -
spec/tls/client_certificate.pem | 18 +
spec/tls/client_key.pem | 50 +-
spec/tls/server_cert.pem | 18 -
spec/tls/server_certificate.pem | 18 +
spec/tls/server_key.pem | 50 +-
spec/unit/bunny_spec.rb | 10 +-
spec/unit/concurrent/atomic_fixnum_spec.rb | 12 +-
spec/unit/concurrent/condition_spec.rb | 6 +-
.../concurrent/linked_continuation_queue_spec.rb | 4 +-
.../concurrent/synchronized_sorted_set_spec.rb | 32 +-
spec/unit/exchange_recovery_spec.rb | 39 ++
spec/unit/system_timer_spec.rb | 10 -
spec/unit/version_delivery_tag_spec.rb | 6 +-
127 files changed, 4263 insertions(+), 1899 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-bunny.git
More information about the Pkg-ruby-extras-commits
mailing list