[DRE-commits] [ruby-amqp] 01/04: Merge tag 'upstream/1.5.1'

Sebastien Badia sbadia-guest at moszumanska.debian.org
Sat Mar 5 22:25:12 UTC 2016


This is an automated email from the git hooks/post-receive script.

sbadia-guest pushed a commit to branch master
in repository ruby-amqp.

commit b2f88de7e3219bdb79bf57f50e5f4986f9aebb68
Merge: fe2a204 980a4cb
Author: Sebastien Badia <seb at sebian.fr>
Date:   Sat Mar 5 19:17:19 2016 -0300

    Merge tag 'upstream/1.5.1'
    
    Upstream version 1.5.1
    
    # gpg: Signature made Sat 05 Mar 2016 07:17:19 PM BRT
    # gpg:                using RSA key 0x8716CE4614A452D8
    # gpg: Good signature from "Sebastien Badia <seb at sebian.fr>"
    # gpg:                 aka "Sebastien Badia <seb at ldn-fai.net>"
    # gpg:                 aka "Sebastien Badia <sebastien at badia.fr>"
    # gpg:                 aka "Sebastien Badia <seb at gitoyen.net>"

 .gitignore                                         |    2 +
 .ruby-version                                      |    1 +
 .travis.yml                                        |   40 +-
 CHANGELOG                                          |   97 --
 ChangeLog.md                                       |  163 ++++
 Gemfile                                            |   12 +-
 README.md                                          |  205 ++--
 amqp.gemspec                                       |   18 +-
 bin/ci/before_build.sh                             |   24 +-
 docs/08Migration.textile                           |    4 +
 docs/AMQP091ModelExplained.textile                 |    9 +-
 docs/Bindings.textile                              |    4 +
 docs/Clustering.textile                            |    4 +
 docs/ConnectingToTheBroker.textile                 |    6 +-
 docs/ConnectionEncryptionWithTLS.textile           |    4 +
 docs/DocumentationGuidesIndex.textile              |    4 +
 docs/Durability.textile                            |    4 +
 docs/ErrorHandling.textile                         |  146 +--
 docs/Exchanges.textile                             |    4 +
 docs/GettingStarted.textile                        |   16 +-
 docs/PatternsAndUseCases.textile                   |    5 +-
 docs/Queues.textile                                |    4 +
 docs/RabbitMQVersions.textile                      |    4 +
 docs/RunningTests.textile                          |    4 +
 docs/TestingWithEventedSpec.textile                |    4 +
 docs/Troubleshooting.textile                       |    4 +
 docs/VendorSpecificExtensions.textile              |    4 +
 .../default_thread_local_channel_instance.rb       |   34 -
 .../automatic_recovery_of_channel_and_queues.rb    |    2 +-
 ...utomatically_recovering_hello_world_consumer.rb |    4 +-
 ...orld_consumer_that_uses_a_server_named_queue.rb |    4 +-
 .../error_handling/connection_level_exception.rb   |    2 +-
 .../connection_level_exception_with_objects.rb     |    2 +-
 examples/error_handling/connection_loss_handler.rb |    7 +-
 examples/error_handling/hello_world_producer.rb    |    2 +-
 .../manual_connection_and_channel_recovery.rb      |    2 +-
 ...ning_a_channel_after_channel_level_exception.rb |   37 +-
 .../extensions/rabbitmq/connection_blocking.rb     |   48 +
 ...lisher_confirmations_with_transient_messages.rb |    2 +-
 .../rabbitmq/using_alternate_exchanges.rb          |    2 +-
 examples/guides/getting_started/01_hello_world.rb  |    2 +-
 .../getting_started/02_hello_world_dslified.rb     |    2 +-
 examples/hello_world.rb                            |    2 +-
 examples/hello_world_with_an_empty_string.rb       |    2 +-
 ...world_with_eventmachine_in_a_separate_thread.rb |    4 +-
 examples/hello_world_with_large_payload.rb         |   82 +-
 examples/issues/issue_121.rb                       |   23 +
 examples/legacy/ack.rb                             |   70 --
 examples/legacy/callbacks.rb                       |   45 -
 examples/legacy/clock.rb                           |   74 --
 examples/legacy/hashtable.rb                       |   60 --
 examples/legacy/logger.rb                          |   92 --
 examples/legacy/multiclock.rb                      |   56 --
 examples/legacy/pingpong.rb                        |   51 -
 examples/legacy/primes-simple.rb                   |   29 -
 examples/legacy/primes.rb                          |   74 --
 examples/legacy/stocks.rb                          |   59 --
 examples/patterns/request_reply/client.rb          |    3 +-
 examples/patterns/request_reply/server.rb          |    1 -
 examples/publishing/returned_messages.rb           |    2 +-
 examples/queues/accessing_message_metadata.rb      |    2 +-
 examples/queues/cancel_default_consumer.rb         |    2 +-
 lib/amq/protocol/get_response.rb                   |   55 ++
 lib/amqp.rb                                        |  241 ++++-
 lib/amqp/auth_mechanism_adapter.rb                 |   69 ++
 lib/amqp/auth_mechanism_adapter/external.rb        |   27 +
 lib/amqp/auth_mechanism_adapter/plain.rb           |   24 +
 lib/amqp/bit_set.rb                                |   81 +-
 lib/amqp/callbacks.rb                              |   67 ++
 lib/amqp/channel.rb                                |  746 +++++++++-----
 lib/amqp/channel_id_allocator.rb                   |   58 ++
 lib/amqp/client.rb                                 |  103 --
 lib/amqp/compatibility/ruby187_patchlevel_check.rb |    8 +-
 lib/amqp/connection.rb                             |  222 -----
 lib/amqp/consumer.rb                               |  231 ++++-
 lib/amqp/consumer_tag_generator.rb                 |   20 +
 lib/amqp/deferrable.rb                             |    5 +
 lib/amqp/deprecated/fork.rb                        |   17 -
 lib/amqp/deprecated/logger.rb                      |  100 --
 lib/amqp/deprecated/mq.rb                          |   22 -
 lib/amqp/deprecated/rpc.rb                         |  169 ----
 lib/amqp/entity.rb                                 |   71 ++
 lib/amqp/exceptions.rb                             |   21 +-
 lib/amqp/exchange.rb                               |  437 ++++++++-
 lib/amqp/ext/em.rb                                 |    3 -
 lib/amqp/ext/emfork.rb                             |   72 --
 lib/amqp/extensions/rabbitmq.rb                    |    2 +-
 lib/amqp/framing/string/frame.rb                   |   36 +
 lib/amqp/handlers_registry.rb                      |   28 +
 lib/amqp/int_allocator.rb                          |   95 +-
 lib/amqp/logger.rb                                 |   19 -
 lib/amqp/openable.rb                               |   58 ++
 lib/amqp/queue.rb                                  |  679 +++++++++++--
 lib/amqp/rpc.rb                                    |   20 -
 lib/amqp/session.rb                                | 1031 ++++++++++++++++++--
 lib/amqp/settings.rb                               |  166 ++++
 lib/amqp/version.rb                                |    2 +-
 lib/mq.rb                                          |   35 -
 lib/mq/logger.rb                                   |    4 -
 lib/mq/rpc.rb                                      |    4 -
 metadata.yml                                       |  224 ++---
 repl                                               |    3 +
 spec/integration/authentication_spec.rb            |    2 +-
 .../automatic_recovery_predicate_spec.rb           |    2 +-
 spec/integration/basic_get_spec.rb                 |  109 ++-
 .../basic_publish_with_message_framing_spec.rb     |   72 ++
 spec/integration/basic_return_spec.rb              |    6 +-
 ..._level_exception_with_multiple_channels_spec.rb |    9 -
 ...ncurrent_publishing_on_a_shared_channel_spec.rb |   90 ++
 spec/integration/connection_close_spec.rb          |   23 +
 spec/integration/exchange_declaration_spec.rb      |  198 ++--
 .../exchange_to_exchange_binding_spec.rb           |  123 +++
 .../rabbitmq/publisher_confirmations_spec.rb       |   33 +-
 spec/integration/fanout_exchange_routing_spec.rb   |    2 +-
 spec/integration/headers_exchange_routing_spec.rb  |    6 +-
 spec/integration/immediate_messages_spec.rb        |   59 --
 .../multiple_consumers_per_queue_spec.rb           |  161 +--
 spec/integration/queue_declaration_spec.rb         |    1 +
 ...eclaration_with_incompatible_attributes_spec.rb |   45 +-
 ...ncurrent_publishing_on_the_same_channel_spec.rb |    2 +-
 spec/integration/remove_individual_binding_spec.rb |   51 +
 spec/integration/reply_queue_communication_spec.rb |    3 +-
 spec/integration/store_and_forward_spec.rb         |   25 +-
 spec/integration/topic_subscription_spec.rb        |    9 +-
 spec/spec_helper.rb                                |   12 +-
 spec/unit/amqp/bit_set_spec.rb                     |  127 ---
 spec/unit/amqp/channel_id_allocation_spec.rb       |   52 +-
 spec/unit/amqp/client_spec.rb                      |    4 +-
 spec/unit/amqp/connection_spec.rb                  |   49 +-
 spec/unit/amqp/int_allocator_spec.rb               |  116 ---
 130 files changed, 5013 insertions(+), 3334 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-amqp.git



More information about the Pkg-ruby-extras-commits mailing list