diff options
author | taca <taca@pkgsrc.org> | 2015-02-04 15:47:45 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2015-02-04 15:47:45 +0000 |
commit | e17623aaa61f542a839cab117818b455a0085c51 (patch) | |
tree | 80c8adcf2d3abf99275868eadb47f184b34e6c72 /net/ruby-amqp | |
parent | c70510679883ef821549f6f6968b3d57e4896235 (diff) | |
download | pkgsrc-e17623aaa61f542a839cab117818b455a0085c51.tar.gz |
Update ruby-amqp to 1.5.0.
## Changes Between 1.4.x and 1.5.0
### Only Await basic.consume-ok If nowait is false
Contributed by Rian McGuire.
### Server-Named Queue Recovery Fix
Server-named queues are now correctly recovered again.
Contributed by Jack C Hong.
## Changes Between 1.3.x and 1.4.0
### connection.blocked Support
[connection.blocked](https://www.rabbitmq.com/connection-blocked.html) notifications
are now correctly supported by the library:
``` ruby
EventMachine.run do
connection = AMQP.connect(:host => '127.0.0.1')
connection.on_blocked do |conn, conn_blocked|
puts "Connection blocked, reason: #{conn_blocked.reason}"
end
connection.on_unblocked do |conn, _|
puts "Connection unblocked"
end
end
```
Diffstat (limited to 'net/ruby-amqp')
-rw-r--r-- | net/ruby-amqp/Makefile | 4 | ||||
-rw-r--r-- | net/ruby-amqp/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/net/ruby-amqp/Makefile b/net/ruby-amqp/Makefile index 392b1d68e17..47435fabd32 100644 --- a/net/ruby-amqp/Makefile +++ b/net/ruby-amqp/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2014/03/14 17:36:28 taca Exp $ +# $NetBSD: Makefile,v 1.17 2015/02/04 15:47:45 taca Exp $ -DISTNAME= amqp-1.3.0 +DISTNAME= amqp-1.5.0 CATEGORIES= net MAINTAINER= pkgsrc-users@NetBSD.org diff --git a/net/ruby-amqp/distinfo b/net/ruby-amqp/distinfo index 92606b348ef..739f179663e 100644 --- a/net/ruby-amqp/distinfo +++ b/net/ruby-amqp/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2014/03/14 17:36:28 taca Exp $ +$NetBSD: distinfo,v 1.13 2015/02/04 15:47:45 taca Exp $ -SHA1 (amqp-1.3.0.gem) = 07e0941fe3786949ae080b399a62face038f8768 -RMD160 (amqp-1.3.0.gem) = 45180ff142932556baa3faeb26e8a43b500d6914 -Size (amqp-1.3.0.gem) = 1176576 bytes +SHA1 (amqp-1.5.0.gem) = 900584c2f7bbbb85fbc4eb332e32faeb764431fa +RMD160 (amqp-1.5.0.gem) = a8fcc701c67669a2f625f5467c0c588b4e5bdd82 +Size (amqp-1.5.0.gem) = 1177088 bytes |