message-driver 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/features/CHANGELOG.md +102 -0
- data/lib/message_driver/version.rb +1 -1
- metadata +2 -2
- data/features/CHANGELOG.md +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb14ebba5623881502473a9a4b06dc0b1d863169
|
4
|
+
data.tar.gz: ca2251f3c765cdb81ce9fe2b6114bdc2ca45331d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38f17b47d77f1fcdc2136d505a1a86220548ccf3363c354bea932615ddc42a2e9d8d9b15ac0d53c29fbef384cb5be4f5270d902f8e0a88c1855c0be8b0df1c15
|
7
|
+
data.tar.gz: 3ba7521ab3f5abf49212ab0ff2fe54d0f604e80f265f0c360d66b6575c52af66d3e71e12efedf86477784269d1ed71b2d2e3474994dd7e91694dad3faa47b822
|
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,102 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## 0.6.1 - 2016-01-28
|
4
|
+
|
5
|
+
* fix an issue that prevents gems built under ruby 2.3.0 to be installed
|
6
|
+
under ruby 2.3.0 by rebuilding the gem under ruby 2.2
|
7
|
+
|
8
|
+
## 0.6.0 - 2016-01-28
|
9
|
+
|
10
|
+
* official support for bunny 2.x
|
11
|
+
* support ruby 2.3
|
12
|
+
* drop support for bunny < 1.7
|
13
|
+
* improved API documentation (still a WIP)
|
14
|
+
* fix an issue with confirm_and_wait transactions erroring because there
|
15
|
+
was no open channel
|
16
|
+
|
17
|
+
## 0.5.3 - 2014-10-23
|
18
|
+
|
19
|
+
* In bunny adapter, avoid sending a tx_commit if we haven't done anything requiring
|
20
|
+
a commit inside the transaction block.
|
21
|
+
|
22
|
+
## 0.5.2 - 2014-10-14
|
23
|
+
|
24
|
+
* fix deprecation warning with bunny 1.5.0
|
25
|
+
|
26
|
+
## 0.5.1 - 2014-10-08
|
27
|
+
|
28
|
+
* put version constant under correct module
|
29
|
+
|
30
|
+
## 0.5.0 - 2014-09-17
|
31
|
+
|
32
|
+
* add support for checking consumer counts on a queue in bunny and in_memory adapters
|
33
|
+
* in_memory adapter now supports multiple subscribers per queue, and does a round-robin
|
34
|
+
through them when sending messages to consumers
|
35
|
+
* upgrade to rspec 3
|
36
|
+
* Middleware can now be used to automatically pre/post-process messages as they are published to
|
37
|
+
or consumed from a destination
|
38
|
+
|
39
|
+
## 0.4.0 - 2014-07-03
|
40
|
+
|
41
|
+
* require bunny 1.2.2 or later
|
42
|
+
* add support for publish confirmations
|
43
|
+
|
44
|
+
## 0.3.0 - 2014-02-26
|
45
|
+
|
46
|
+
* Support for handling multiple broker connections
|
47
|
+
* require bunny 1.1.3 or later
|
48
|
+
* make bunny connections as lazily initialized as possible
|
49
|
+
* bunny transactions start lazily
|
50
|
+
|
51
|
+
## 0.2.2 - 2014-02-21
|
52
|
+
|
53
|
+
* Lots of work on reconnection handling for bunny. Still a work in
|
54
|
+
progress.
|
55
|
+
|
56
|
+
## 0.2.1 - 2013-11-13
|
57
|
+
|
58
|
+
* Correct an issue in handling Bunny::ConnectionLevelErrors.
|
59
|
+
Bunny::Session will now get properly restarted.
|
60
|
+
|
61
|
+
## 0.2.0 - 2013-11-05
|
62
|
+
|
63
|
+
* drop support for bunny 0.9.x
|
64
|
+
* add support for bunny 1.0.x
|
65
|
+
* ability to create subscriptions from a block instead of having to
|
66
|
+
register a consumer
|
67
|
+
|
68
|
+
## 0.2.0.rc2 - 2013-10-30
|
69
|
+
|
70
|
+
* Features
|
71
|
+
* Prefetch size for bunny consumers
|
72
|
+
* Bugs
|
73
|
+
* better error handling for transaction bunny consumers
|
74
|
+
|
75
|
+
## 0.2.0.rc1 - 2013-09-23
|
76
|
+
|
77
|
+
* Features
|
78
|
+
* Message Consumers, all different flavors
|
79
|
+
* Bunny and InMemory adapters
|
80
|
+
* Client Acks
|
81
|
+
* Bunny adapter
|
82
|
+
* Bunny adapter
|
83
|
+
* much better connection and channel error handling, including
|
84
|
+
reconnecting when broker becomes unreachable
|
85
|
+
* Adapters
|
86
|
+
* begin work on Stomp 1.1/1.2 adapter
|
87
|
+
|
88
|
+
## 0.1.0 - 2013-04-05
|
89
|
+
|
90
|
+
Initial Release
|
91
|
+
|
92
|
+
* Features
|
93
|
+
* Publish a message
|
94
|
+
* Broker transactions for publishing
|
95
|
+
* Pop a message
|
96
|
+
* named and dynamic destinations
|
97
|
+
* message_count for destinations
|
98
|
+
* Adapters
|
99
|
+
* InMemory
|
100
|
+
* #reset_after_test method for clearing out queues
|
101
|
+
* Bunny (amqp 0.9)
|
102
|
+
* handle connection and channel errors transparently
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: message-driver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Campbell
|
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
version: '0'
|
207
207
|
requirements: []
|
208
208
|
rubyforge_project:
|
209
|
-
rubygems_version: 2.5.1
|
209
|
+
rubygems_version: 2.4.5.1
|
210
210
|
signing_key:
|
211
211
|
specification_version: 4
|
212
212
|
summary: Easy message queues for ruby
|
data/features/CHANGELOG.md
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
../CHANGELOG.md
|