public
Description:
Homepage:
Clone URL: git://github.com/assaf/reliable-msg.git
Click here to lend your support to: reliable-msg and make a donation at www.pledgie.com !
reliable-msg / CHANGELOG
100755 43 lines (33 sloc) 1.736 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Release 1.1.1 (Planned)
 
* Changed: enqueue is actually dequeue, and queue is now enqueue. Contributed
by John-Mason Shackelford
* Fixed: ACL uses localhost instead of 127.0.0.1 to work with OS/X IPv6
Contributed by Chuck Remes
* Fixed: merge of DRB options Contributed by Kevin Burge
* Fixed: made to work with UUID 2.0.
 
 
Release 1.1.0 (Nov 26, 2005)
 
* Added: Topic class for publishing messages on a topic.
* Added: Can set delivery option when creating a queue.
* Added: Queue.name() returns the queue's name.
* Added: Command line options to list or delete all messages
  in named queue.
* Added: Rails integration for easily accessing queues/topics
  from a Rails controller.
* Changed: Quque and Topic both extend the base class Client.
* Changed: Cannot start two queue managers in the same process.
* Changed: Each message has a created header indicating date/time
  of creation. Received header no longer exists.
* Changed: Header retry renamed to delivered, to prevent clash with
  reserved Ruby keyword.
* Changed: Selectors are now executed in the client process.
  Selectors can rely on client variables, methods and constants.
* Changed: Specify maximum delivery attempts with the header
  max_deliveries; get the redelivery attempt from the header
  redelivery; the later is only set on the first redelivery attempt.
* Fixed: Documentation errors in Queue.
* Removed: Cannot associate default selector with queue.
 
 
Release 1.0.1 (Nov 10, 2005)
 
* Added: Test cases test put/get in memory and by reloading.
* Fixed: Messages not retrieved in order after queue manager
  recovers when using MySQL message store.
* Fixed: Queue manager fails if stopped and then started again.